HomeSort by relevance Sort by last modified time
    Searched refs:handle2 (Results 1 - 24 of 24) sorted by null

  /external/compiler-rt/test/asan/TestCases/Posix/
coverage-module-unloaded.cc 33 void *handle2 = dlopen(argv[2], RTLD_LAZY); // %dynamiclib2 local
34 assert(handle2);
35 void (*bar2)() = (void (*)())dlsym(handle2, "bar");
42 dlclose(bar1 < bar2 ? handle1 : handle2);
44 dlclose(bar1 < bar2 ? handle2 : handle1);
  /external/curl/tests/libtest/
lib544.c 74 CURL *handle2; local
75 handle2 = curl_easy_duphandle(curl);
78 curl = handle2;
  /system/core/libutils/tests/
Singleton_test.cpp 42 void* handle2 = dlopen(lib.c_str(), RTLD_NOW); local
43 ASSERT_TRUE(handle2 != nullptr) << dlerror();
51 has_fn_t has2 = reinterpret_cast<has_fn_t>(dlsym(handle2, "singletonHasInstance"));
55 get_fn_t get2 = reinterpret_cast<get_fn_t>(dlsym(handle2, "singletonGetInstanceContents"));
57 set_fn_t set1 = reinterpret_cast<set_fn_t>(dlsym(handle2, "singletonSetInstanceContents"));
  /system/core/trusty/storage/tests/
main.cpp 506 file_handle_t handle2; local
521 rc = storage_open_file(session_, &handle2, fname, 0, 0);
1164 file_handle_t handle2; local
1377 file_handle_t handle2; local
2136 file_handle_t handle2; local
2214 file_handle_t handle2; local
2597 file_handle_t handle2; local
2644 file_handle_t handle2; local
2698 file_handle_t handle2; local
2769 file_handle_t handle2; local
2849 file_handle_t handle2; local
2928 file_handle_t handle2; local
2986 file_handle_t handle2; local
    [all...]
  /bionic/tests/
cfi_test.cpp 105 void* handle2 = dlopen("libcfi-test.so", RTLD_NOW | RTLD_LOCAL); local
106 ASSERT_TRUE(handle2 != nullptr) << dlerror();
107 EXPECT_EQ(handle2, handle);
116 dlclose(handle2);
dlext_test.cpp 206 void* handle2 = android_dlopen_ext(symlink_name.c_str(), RTLD_NOW, &extinfo); local
207 ASSERT_DL_NOTNULL(handle2);
208 ASSERT_TRUE(handle != handle2);
210 dlclose(handle2);
226 void* handle2 = android_dlopen_ext("libdlext_test.so", RTLD_NOW, &extinfo); local
228 ASSERT_DL_NOTNULL(handle2);
229 ASSERT_TRUE(handle == handle2);
231 dlclose(handle2);
752 void* handle2 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); local
753 ASSERT_TRUE(handle2 != nullptr) << dlerror()
1299 void* handle2 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); local
1427 void* handle2 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); local
    [all...]
dlfcn_test.cpp 218 void* handle2 = dlopen("libtest_simple.so", RTLD_NOW | RTLD_NOLOAD); local
220 ASSERT_TRUE(handle2 != nullptr);
221 ASSERT_TRUE(handle == handle2);
223 ASSERT_EQ(0, dlclose(handle2));
605 void* handle2 = dlopen("libtest_two_parents_parent2.so", RTLD_NOW | RTLD_LOCAL); local
606 ASSERT_TRUE(handle2 != nullptr) << dlerror();
609 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle2, "check_order_reloc_get_answer"));
619 fn = reinterpret_cast<fn_t>(dlsym(handle2, "check_order_reloc_get_answer"));
623 ASSERT_EQ(0, dlclose(handle2));
965 void* handle2 = dlopen(get_executable_path().c_str(), RTLD_NOW); local
1173 void* handle2 = dlopen(symlink_name.c_str(), RTLD_NOW); local
    [all...]
  /external/libchrome/base/synchronization/
lock_unittest.cc 199 PlatformThreadHandle handle2; local
203 ASSERT_TRUE(PlatformThread::Create(0, &thread2, &handle2));
209 PlatformThread::Join(handle2);
  /external/sfntly/cpp/src/test/
lock_test.cc 214 PlatformThreadHandle handle2 = kNullThreadHandle; local
218 EXPECT_TRUE(PlatformThread::Create(&thread2, &handle2));
224 PlatformThread::Join(handle2);
  /external/perfetto/src/protozero/
message_unittest.cc 303 MessageHandle<FakeRootMessage> handle2(ignored_msg);
304 handle2 = MessageHandle<FakeRootMessage>(msg2);
305 handle2->AppendBytes(1 /* field_id */, kTestBytes, 2 /* size */);
311 handle_swp = std::move(handle2);
378 MessageHandle<FakeRootMessage> handle2{};
380 handle2 = std::move(handle1);
  /external/libmojo/mojo/android/system/
core_impl.cc 79 MojoHandle handle2; local
80 MojoResult result = MojoCreateMessagePipe(options, &handle1, &handle2);
81 return Java_CoreImpl_newNativeCreationResult(env, result, handle1, handle2);
99 MojoHandle handle2; local
100 MojoResult result = MojoCreateDataPipe(options, &handle1, &handle2);
101 return Java_CoreImpl_newNativeCreationResult(env, result, handle1, handle2);
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
CallServiceNotifier.java 141 PhoneAccountHandle handle2 = new PhoneAccountHandle( local
143 mPhoneAccountMap.put(SIM_SUBSCRIPTION_ID, handle2);
145 handle2,
  /cts/tests/tests/telecom/src/android/telecom/cts/
PhoneAccountOperationsTest.java 276 PhoneAccountHandle handle2 = local
278 assertEquals(TEST_PHONE_ACCOUNT_HANDLE, handle2);
  /external/libjpeg-turbo/
tjunittest.c 416 tjhandle handle2=tjInitCompress(); local
417 if(!handle2) _throwtj();
424 _tj(tjEncodeYUV3(handle2, srcBuf, w, 0, h, pf, yuvBuf, pad, subsamp,
426 tjDestroy(handle2);
478 tjhandle handle2=tjInitDecompress(); local
479 if(!handle2) _throwtj();
497 _tj(tjDecodeYUV(handle2, yuvBuf, pad, subsamp, dstBuf, scaledWidth, 0,
499 tjDestroy(handle2);
  /external/libmojo/mojo/public/cpp/bindings/tests/
union_unittest.cc     [all...]
  /external/libmojo/mojo/android/javatests/src/org/chromium/mojo/system/impl/
CoreImplTest.java 244 SharedBufferHandle handle2 = handle.duplicate(null); local
246 addHandleToClose(handle2);
248 assertEquals(core, handle2.getCore());
  /frameworks/av/services/audiopolicy/service/
AudioPolicyService.cpp 1216 audio_patch_handle_t handle2; local
    [all...]
  /art/runtime/
thread.cc     [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
CallsManager.java     [all...]
  /system/tools/hidl/test/hidl_test/
hidl_test_client.cpp 435 auto handle2 = native_handle_create(0, 1); local
437 handle2->data[0] = 6;
443 .descUnsync = {std::vector<GrantorDescriptor>(), handle2, 6},
    [all...]
  /art/test/957-methodhandle-transforms/src/
Main.java 1254 MethodHandle handle2 = MethodHandles.lookup().findStatic( local
    [all...]
  /external/libchrome/base/trace_event/
trace_event_unittest.cc 1677 TraceEventHandle handle2 = local
1710 TraceEventHandle handle2 = local
    [all...]
  /external/webrtc/webrtc/video/
video_send_stream_tests.cc 1161 test::FakeNativeHandle* handle2 = new test::FakeNativeHandle(); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/invoke/
MethodHandleCombinersTest.java 1245 MethodHandle handle2 = MethodHandles.lookup().findStatic( local
    [all...]

Completed in 487 milliseconds