HomeSort by relevance Sort by last modified time
    Searched refs:handle1 (Results 1 - 19 of 19) 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);
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/
coverage-android.cc 126 void *handle1 = local
128 assert(handle1);
133 void (*bar1)() = (void (*)())dlsym(handle1, "bar");
  /bionic/tests/
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...]
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...]
  /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);
  /external/v8/test/mjsunit/
debug-toggle-mirror-cache.js 30 var handle1 = debug.MakeMirror(123).handle(); variable
31 assertEquals("number", debug.LookupMirror(handle1).type());
  /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();
  /packages/services/Telecomm/src/com/android/server/telecom/
CallsManager.java 719 private boolean areHandlesEqual(Uri handle1, Uri handle2) {
720 if (handle1 == null || handle2 == null) {
721 return handle1 == handle2;
724 if (!TextUtils.equals(handle1.getScheme(), handle2.getScheme())) {
728 final String number1 = PhoneNumberUtils.normalizeNumber(handle1.getSchemeSpecificPart());
    [all...]
  /hardware/ti/omap4-aah/domx/domx/omx_proxy_common/src/
omx_proxy_common.c 136 OMX_PTR *handle1, OMX_PTR *handle2,
143 if ((fd < 0) || (handle1 == NULL) ||
161 *handle1 = ion_data.handle;
180 *handle1 = pvr_data.handles[0];
    [all...]
  /external/libchrome/base/trace_event/
trace_event_unittest.cc 1461 TraceEventHandle handle1 = local
1490 TraceEventHandle handle1 = local
    [all...]
  /hardware/ti/omap4-aah/domx/omx_proxy_component/omx_h264_enc/src/
omx_proxy_h264enc.c 158 OMX_PTR *handle1, OMX_PTR *handle2,
    [all...]
  /hardware/ti/omap4-aah/domx/omx_proxy_component/omx_mpeg4_enc/src/
omx_proxy_mpeg4enc.c 157 OMX_PTR *handle1, OMX_PTR *handle2,
    [all...]
  /external/webrtc/webrtc/video/
video_send_stream_tests.cc 1160 test::FakeNativeHandle* handle1 = new test::FakeNativeHandle(); 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...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsProvider2Test.java 6159 String handle1 = "test@gmail.com"; local
    [all...]

Completed in 837 milliseconds