Home
last modified time | relevance | path

Searched refs:linear_alloc (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Dcha.h129 void RemoveDependenciesForLinearAlloc(const LinearAlloc* linear_alloc)
Dcha.cc695 void ClassHierarchyAnalysis::RemoveDependenciesForLinearAlloc(const LinearAlloc* linear_alloc) { in RemoveDependenciesForLinearAlloc() argument
699 if (linear_alloc->ContainsUnsafe(it->first)) { in RemoveDependenciesForLinearAlloc()
Dstack.cc665 LinearAlloc* const linear_alloc = runtime->GetLinearAlloc(); in ValidateFrame() local
666 if (!linear_alloc->Contains(method)) { in ValidateFrame()
675 : linear_alloc; in ValidateFrame()
Druntime.cc2526 static ArtMethod* CreateRuntimeMethod(ClassLinker* class_linker, LinearAlloc* linear_alloc) in CreateRuntimeMethod() argument
2533 linear_alloc, in CreateRuntimeMethod()
2542 ArtMethod* Runtime::CreateImtConflictMethod(LinearAlloc* linear_alloc) { in CreateImtConflictMethod() argument
2544 ArtMethod* method = CreateRuntimeMethod(class_linker, linear_alloc); in CreateImtConflictMethod()
2553 method->SetImtConflictTable(class_linker->CreateImtConflictTable(/*count=*/0u, linear_alloc), in CreateImtConflictMethod()
Dclass_linker.cc784 LinearAlloc* linear_alloc = runtime->GetLinearAlloc(); in InitWithoutImage() local
787 runtime->SetImtConflictMethod(runtime->CreateImtConflictMethod(linear_alloc)); in InitWithoutImage()
788 runtime->SetImtUnimplementedMethod(runtime->CreateImtConflictMethod(linear_alloc)); in InitWithoutImage()
3952 LinearAlloc* const linear_alloc = GetOrCreateAllocatorForClassLoader(class_loader); in RegisterDexFile() local
3953 DCHECK(linear_alloc != nullptr); in RegisterDexFile()
6178 LinearAlloc* linear_alloc = GetAllocatorForClassLoader(klass->GetClassLoader()); in AddMethodToConflictTable() local
6182 ? runtime->CreateImtConflictMethod(linear_alloc) in AddMethodToConflictTable()
6187 void* data = linear_alloc->Alloc( in AddMethodToConflictTable()
6300 LinearAlloc* linear_alloc, in CreateImtConflictTable() argument
6302 void* data = linear_alloc->Alloc(Thread::Current(), in CreateImtConflictTable()
[all …]
Dclass_linker.h724 ImtConflictTable* CreateImtConflictTable(size_t count, LinearAlloc* linear_alloc);
728 LinearAlloc* linear_alloc,
Druntime.h477 ArtMethod* CreateImtConflictMethod(LinearAlloc* linear_alloc)
DAndroid.bp197 "linear_alloc.cc",
/art/runtime/arch/
Dstub_test.cc1774 LinearAlloc* linear_alloc = Runtime::Current()->GetLinearAlloc(); in TEST_F() local
1775 ArtMethod* conflict_method = Runtime::Current()->CreateImtConflictMethod(linear_alloc); in TEST_F()
1777 Runtime::Current()->GetClassLinker()->CreateImtConflictTable(/*count=*/0u, linear_alloc); in TEST_F()
1778 void* data = linear_alloc->Alloc( in TEST_F()