HomeSort by relevance Sort by last modified time
    Searched defs:handle1 (Results 1 - 15 of 15) sorted by null

  /external/compiler-rt/test/asan/TestCases/Posix/
coverage-direct-activation.cc 51 void *handle1 = dlopen(argv[1], RTLD_LAZY); // %dynamiclib local
52 assert(handle1);
53 void (*bar1)() = (void (*)())dlsym(handle1, "bar");
coverage-direct.cc 75 void *handle1 = dlopen(argv[1], RTLD_LAZY); local
76 assert(handle1);
77 void (*bar1)() = (void (*)())dlsym(handle1, "bar");
coverage-module-unloaded.cc 28 void *handle1 = dlopen(argv[1], RTLD_LAZY); // %dynamiclib1 local
29 assert(handle1);
30 void (*bar1)() = (void (*)())dlsym(handle1, "bar");
42 dlclose(bar1 < bar2 ? handle1 : handle2);
44 dlclose(bar1 < bar2 ? handle2 : handle1);
  /external/v8/test/mjsunit/
debug-toggle-mirror-cache.js 30 var handle1 = debug.MakeMirror(123).handle(); variable
31 assertEquals("number", debug.LookupMirror(handle1).type());
  /external/compiler-rt/test/asan/TestCases/Android/
coverage-android.cc 126 void *handle1 = local
128 assert(handle1);
133 void (*bar1)() = (void (*)())dlsym(handle1, "bar");
  /external/libchrome/base/synchronization/
lock_unittest.cc 198 PlatformThreadHandle handle1; local
202 ASSERT_TRUE(PlatformThread::Create(0, &thread1, &handle1));
208 PlatformThread::Join(handle1);
  /external/sfntly/cpp/src/test/
lock_test.cc 213 PlatformThreadHandle handle1 = kNullThreadHandle; local
217 EXPECT_TRUE(PlatformThread::Create(&thread1, &handle1));
223 PlatformThread::Join(handle1);
  /frameworks/base/tests/CoreTests/android/core/
RequestAPITest.java 236 RequestHandle handle1 = mRequestQueue.queueRequest( local
239 handle1.waitUntilComplete();
403 RequestHandle handle1 = mRequestQueue.queueRequest( local
407 handle1.waitUntilComplete();
  /bionic/tests/
dlfcn_test.cpp 687 void* handle1 = dlopen("libtest_nodelete_2.so", RTLD_NOW | RTLD_NODELETE); local
688 ASSERT_TRUE(handle1 != nullptr) << dlerror();
689 ASSERT_EQ(handle, handle1);
691 dlclose(handle1);
824 void* handle1 = dlopen(nullptr, RTLD_NOW); local
825 ASSERT_TRUE(handle1 != nullptr) << dlerror();
831 ASSERT_EQ(handle1, handle2);
833 GTEST_LOG_(INFO) << "Skipping ASSERT_EQ(handle1, handle2) for glibc: "
991 void* handle1 = dlopen("libdlext_test.so", RTLD_NOW); local
    [all...]
dlext_test.cpp 670 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); local
671 ASSERT_TRUE(handle1 != nullptr) << dlerror();
677 ASSERT_TRUE(handle1 != handle2);
689 fn_t ns_get_local_string1 = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_local_string"));
700 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_private_extern_string"));
712 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_public_extern_string"));
722 fn_t ns_get_dlopened_string1 = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_dlopened_string"));
732 dlclose(handle1);
795 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); local
796 ASSERT_TRUE(handle1 != nullptr) << dlerror()
897 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); local
1084 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); local
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btAxisSweep3.h 872 Handle* handle1 = getHandle(pNext->m_handle); local
879 && testOverlap2D(handle0,handle1,axis1,axis2)
885 m_pairCache->removeOverlappingPair(handle0,handle1,dispatcher);
887 m_userPairCallback->removeOverlappingPair(handle0,handle1,dispatcher);
930 Handle* handle1 = getHandle(pPrev->m_handle); local
936 && testOverlap2D(handle0,handle1,axis1,axis2)
943 m_pairCache->removeOverlappingPair(handle0,handle1,dispatcher);
945 m_userPairCallback->removeOverlappingPair(handle0,handle1,dispatcher);
997 Handle* handle1 = getHandle(pNext->m_handle); local
998 m_pairCache->addOverlappingPair(handle0,handle1);
    [all...]
  /external/libchrome/base/trace_event/
trace_event_unittest.cc 1461 TraceEventHandle handle1 = local
1490 TraceEventHandle handle1 = local
    [all...]
  /external/webrtc/webrtc/video/
video_send_stream_tests.cc 1160 test::FakeNativeHandle* handle1 = new test::FakeNativeHandle(); local
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsProvider2Test.java 6159 String handle1 = "test@gmail.com"; local
    [all...]
  /external/v8/test/cctest/
test-api.cc 13539 CopyableObject handle1; local
13611 v8::Persistent<v8::Object> handle1, handle2; local
13650 v8::Persistent<v8::Object> handle1, handle2; local
13686 v8::Persistent<v8::Object> handle1, handle2, handle3; local
    [all...]

Completed in 7594 milliseconds