Home
last modified time | relevance | path

Searched refs:MakeExecutable (Results 1 – 6 of 6) sorted by relevance

/art/compiler/
Dcommon_compiler_test.h47 void MakeExecutable(mirror::ArtMethod* method) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
49 static void MakeExecutable(const void* code_start, size_t code_length);
51 void MakeExecutable(mirror::ClassLoader* class_loader, const char* class_name)
Dcommon_compiler_test.cc163 void CommonCompilerTest::MakeExecutable(mirror::ArtMethod* method) { in MakeExecutable() function in art::CommonCompilerTest
209 MakeExecutable(code_ptr, code->size()); in MakeExecutable()
250 void CommonCompilerTest::MakeExecutable(const void* code_start, size_t code_length) { in MakeExecutable() function in art::CommonCompilerTest
272 void CommonCompilerTest::MakeExecutable(mirror::ClassLoader* class_loader, const char* class_name) { in MakeExecutable() function in art::CommonCompilerTest
280 MakeExecutable(klass->GetDirectMethod(i)); in MakeExecutable()
283 MakeExecutable(klass->GetVirtualMethod(i)); in MakeExecutable()
374 MakeExecutable(method); in CompileMethod()
/art/compiler/driver/
Dcompiler_driver_test.cc90 MakeExecutable(c->GetDirectMethod(i)); in MakeDexFileExecutable()
93 MakeExecutable(c->GetVirtualMethod(i)); in MakeDexFileExecutable()
/art/runtime/
Dreflection_test.cc97 MakeExecutable(ScopedObjectAccessUnchecked(self).Decode<mirror::ClassLoader*>(jclass_loader), in ReflectionTestMakeExecutable()
100 MakeExecutable(nullptr, "java.lang.Class"); in ReflectionTestMakeExecutable()
101 MakeExecutable(nullptr, "java.lang.Object"); in ReflectionTestMakeExecutable()
102 MakeExecutable(ScopedObjectAccessUnchecked(self).Decode<mirror::ClassLoader*>(jclass_loader), in ReflectionTestMakeExecutable()
Djni_internal_test.cc1580 MakeExecutable(nullptr, "java.lang.Class"); in TEST_F()
1581 MakeExecutable(nullptr, "java.lang.Object"); in TEST_F()
1582 MakeExecutable(nullptr, "java.nio.DirectByteBuffer"); in TEST_F()
1583 MakeExecutable(nullptr, "java.nio.MemoryBlock"); in TEST_F()
1584 MakeExecutable(nullptr, "java.nio.MemoryBlock$UnmanagedBlock"); in TEST_F()
1585 MakeExecutable(nullptr, "java.nio.MappedByteBuffer"); in TEST_F()
1586 MakeExecutable(nullptr, "java.nio.ByteBuffer"); in TEST_F()
1587 MakeExecutable(nullptr, "java.nio.Buffer"); in TEST_F()
/art/compiler/optimizing/
Dcodegen_test.cc56 CommonCompilerTest::MakeExecutable(allocator.GetMemory(), allocator.GetSize()); in Run()