Home
last modified time | relevance | path

Searched refs:storage (Results 26 – 43 of 43) sorted by relevance

12

/art/runtime/mirror/
Dclass.cc1149 const char* Class::GetDescriptor(std::string* storage) { in GetDescriptor() argument
1164 *storage = DotToDescriptor(name->ToModifiedUtf8().c_str()); in GetDescriptor()
1177 *storage = descriptor; in GetDescriptor()
1179 storage->insert(0u, dim, '['); in GetDescriptor()
1180 return storage->c_str(); in GetDescriptor()
1381 std::string storage; in ProxyDescriptorEquals() local
1382 const char* descriptor = GetDescriptor(&storage); in ProxyDescriptorEquals()
1383 DCHECK(descriptor == storage.c_str()); in ProxyDescriptorEquals()
1384 return storage == match; in ProxyDescriptorEquals()
Dclass.h1201 const char* GetDescriptor(std::string* storage) REQUIRES_SHARED(Locks::mutator_lock_);
/art/openjdkjvmti/
Dti_class_definition.cc181 std::string storage; in GetDexDataForRetransformation() local
182 DequickenDexFile(dex_file, klass->GetDescriptor(&storage), dex_data); in GetDexDataForRetransformation()
Dti_class.cc709 std::string storage; in GetClassSignature() local
710 const char* descriptor = klass->GetDescriptor(&storage); in GetClassSignature()
Dti_redefine.cc1100 std::string storage; in CheckClass() local
1103 current_class->GetDescriptor(&storage), in CheckClass()
/art/compiler/optimizing/
Dregister_allocator_graph_color.cc236 ScopedArenaDeque<ScopedArenaVector<InterferenceNode*>>* storage) { in AddInterference() argument
243 ScopedArenaVector<InterferenceNode*>::allocator_type adapter(storage->get_allocator()); in AddInterference()
244 storage->emplace_back(adapter); in AddInterference()
245 adjacent_nodes_ = &storage->back(); in AddInterference()
294 ScopedArenaDeque<ScopedArenaVector<CoalesceOpportunity*>>* storage) { in AddCoalesceOpportunity() argument
296 ScopedArenaVector<CoalesceOpportunity*>::allocator_type adapter(storage->get_allocator()); in AddCoalesceOpportunity()
297 storage->emplace_back(adapter); in AddCoalesceOpportunity()
298 coalesce_opportunities_ = &storage->back(); in AddCoalesceOpportunity()
Dinliner.cc2059 void* storage = graph_->GetAllocator()->Alloc<OptimizingCompilerStats>(kArenaAllocMisc); in TryBuildAndInlineHelper() local
2060 inline_stats_ = new (storage) OptimizingCompilerStats; in TryBuildAndInlineHelper()
/art/tools/luci/config/
Dluci-milo.cfg1 logo_url: "https://storage.googleapis.com/chrome-infra-public/logo/art-logo.png"
/art/dex2oat/linker/
Dimage_writer.cc97 /*out*/ std::vector<uint8_t>* storage) { in MaybeCompressData() argument
102 storage->resize(LZ4_compressBound(source.size())); in MaybeCompressData()
105 reinterpret_cast<char*>(storage->data()), in MaybeCompressData()
107 storage->size()); in MaybeCompressData()
108 storage->resize(data_size); in MaybeCompressData()
113 storage->resize(LZ4_compressBound(source.size())); in MaybeCompressData()
116 reinterpret_cast<char*>(storage->data()), in MaybeCompressData()
118 storage->size(), in MaybeCompressData()
120 storage->resize(data_size); in MaybeCompressData()
134 VLOG(compiler) << "Compressed from " << source.size() << " to " << storage->size() << " in " in MaybeCompressData()
[all …]
Doat_writer.cc2887 std::unique_ptr<uint32_t[]> storage(new uint32_t[mappings_size / sizeof(uint32_t)]); in WriteIndexBssMapping() local
2888 IndexBssMapping* mappings = new(storage.get()) IndexBssMapping(number_of_entries); in WriteIndexBssMapping()
2910 if (!out->WriteFully(storage.get(), mappings_size)) { in WriteIndexBssMapping()
/art/runtime/gc/
Dallocation_record.h182 const char* GetClassDescriptor(std::string* storage) const
Dheap.cc1280 Atomic<AllocationListener*>* storage, AllocationListener* new_value) { in GetAndOverwriteAllocationListener() argument
1281 return storage->exchange(new_value); in GetAndOverwriteAllocationListener()
/art/compiler/debug/
Delf_debug_info_writer.h481 void* storage = allocator->Alloc(Thread::Current(), sizeof(LengthPrefixedArray<ArtMethod>)); in WriteLinkageName() local
482 methods_ptr = new (storage) LengthPrefixedArray<ArtMethod>(0); in WriteLinkageName()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc1131 std::string storage; in DumpB74410240ClassData() local
1132 const char* descriptor = klass->GetDescriptor(&storage); in DumpB74410240ClassData()
1824 void* storage = GetGenericJniHandleScope(managed_sp, num_handle_scope_references_); in ComputeLayout() local
1825 DCHECK_ALIGNED(storage, sizeof(uintptr_t)); in ComputeLayout()
1827 HandleScope::Create(storage, self->GetTopHandleScope(), num_handle_scope_references_); in ComputeLayout()
1828 DCHECK_EQ(*handle_scope, storage); in ComputeLayout()
/art/dex2oat/
Dverifier_deps_test.cc280 auto& storage = expected_is_assignable ? dex_dep.second->assignable_types_ in HasAssignable() local
282 for (auto& entry : storage) { in HasAssignable()
/art/runtime/
Dmethod_handles.cc56 std::string storage; in GetUnboxedPrimitiveType() local
57 const char* descriptor = klass->GetDescriptor(&storage); in GetUnboxedPrimitiveType()
Dclass_linker.cc5062 std::string storage; in CreateProxyClass() local
5063 const char* descriptor = temp_klass->GetDescriptor(&storage); in CreateProxyClass()
/art/build/apex/
DAndroid.bp253 // storage-constrained devices in userdebug and eng builds.

12