Searched refs:handle1 (Results 1 – 9 of 9) sorted by relevance
/external/compiler-rt/test/asan/TestCases/Posix/ |
D | coverage-module-unloaded.cc | 29 void *handle1 = dlopen(argv[1], RTLD_LAZY); // %dynamiclib1 in main() local 30 assert(handle1); in main() 31 void (*bar1)() = (void (*)())dlsym(handle1, "bar"); in main() 43 dlclose(bar1 < bar2 ? handle1 : handle2); in main() 45 dlclose(bar1 < bar2 ? handle2 : handle1); in main()
|
D | coverage-direct-activation.cc | 51 void *handle1 = dlopen(argv[1], RTLD_LAZY); // %dynamiclib in main() local 52 assert(handle1); in main() 53 void (*bar1)() = (void (*)())dlsym(handle1, "bar"); in main()
|
D | coverage-direct.cc | 75 void *handle1 = dlopen(argv[1], RTLD_LAZY); in main() local 76 assert(handle1); in main() 77 void (*bar1)() = (void (*)())dlsym(handle1, "bar"); in main()
|
D | coverage-direct-large.cc | 56 void *handle1 = dlopen(argv[1], RTLD_LAZY); // %dynamiclib 57 assert(handle1); 58 void (*so_entry)() = (void (*)())dlsym(handle1, "so_entry");
|
/external/compiler-rt/test/asan/TestCases/Android/ |
D | coverage-android.cc | 126 void *handle1 = in main() local 128 assert(handle1); in main() 133 void (*bar1)() = (void (*)())dlsym(handle1, "bar"); in main()
|
/external/v8/test/mjsunit/ |
D | debug-toggle-mirror-cache.js | 30 var handle1 = debug.MakeMirror(123).handle(); variable 31 assertEquals("number", debug.LookupMirror(handle1).type());
|
/external/sfntly/cpp/src/test/ |
D | lock_test.cc | 213 PlatformThreadHandle handle1 = kNullThreadHandle; in MutexFourThreads() local 217 EXPECT_TRUE(PlatformThread::Create(&thread1, &handle1)); in MutexFourThreads() 223 PlatformThread::Join(handle1); in MutexFourThreads()
|
/external/llvm/test/Transforms/LICM/ |
D | scalar_promote.ll | 79 %handle1 = alloca i8* 81 store i8* %x, i8** %handle1 108 %offsetx1 = load i8*, i8** %handle1
|
/external/v8/test/cctest/ |
D | test-api.cc | 13728 CopyableObject handle1; in TEST() local 13731 handle1.Reset(isolate, v8::Object::New(isolate)); in TEST() 13735 handle2 = handle1; in TEST() 13736 CHECK(handle1 == handle2); in TEST() 13739 CHECK(handle1 == handle3); in TEST() 13793 v8::Persistent<v8::Object> handle1, handle2; in THREADED_TEST() local 13797 handle1.Reset(isolate, v8::Object::New(isolate)); in THREADED_TEST() 13804 handle1.SetWeak(&handle1, NewPersistentHandleCallback); in THREADED_TEST() 13824 v8::Persistent<v8::Object> handle1, handle2; in THREADED_TEST() local 13827 handle1.Reset(isolate, v8::Object::New(isolate)); in THREADED_TEST() [all …]
|