HomeSort by relevance Sort by last modified time
    Searched defs:handle1 (Results 1 - 18 of 18) 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/compiler-rt/test/asan/TestCases/Android/
coverage-android.cc 126 void *handle1 = local
128 assert(handle1);
133 void (*bar1)() = (void (*)())dlsym(handle1, "bar");
  /external/libmojo/mojo/public/c/system/tests/
core_unittest_pure_c.c 44 MojoHandle handle0, handle1; local
60 handle1 = MOJO_HANDLE_INVALID;
61 EXPECT_EQ(MOJO_RESULT_OK, MojoCreateMessagePipe(NULL, &handle0, &handle1));
82 EXPECT_EQ(MOJO_RESULT_OK, MojoWait(handle1, MOJO_HANDLE_SIGNAL_READABLE,
92 EXPECT_EQ(MOJO_RESULT_OK, MojoReadMessage(handle1, buffer, &num_bytes, NULL,
98 EXPECT_EQ(MOJO_RESULT_OK, MojoClose(handle1));
  /system/core/libutils/tests/
Singleton_test.cpp 36 void* handle1 = dlopen(lib.c_str(), RTLD_NOW); local
37 ASSERT_TRUE(handle1 != nullptr) << dlerror();
49 has_fn_t has1 = reinterpret_cast<has_fn_t>(dlsym(handle1, "singletonHasInstance"));
53 get_fn_t get1 = reinterpret_cast<get_fn_t>(dlsym(handle1, "singletonGetInstanceContents"));
  /external/libchrome/base/synchronization/
lock_unittest.cc 198 PlatformThreadHandle handle1; local
202 ASSERT_TRUE(PlatformThread::Create(0, &thread1, &handle1));
208 PlatformThread::Join(handle1);
  /external/libmojo/mojo/public/cpp/system/
message_pipe.h 50 MessagePipeHandle handle1; local
52 options, handle0.mutable_value(), handle1.mutable_value());
56 message_pipe1->reset(handle1);
136 ScopedMessagePipeHandle handle1; member in class:mojo::MessagePipe
140 MojoResult result = CreateMessagePipe(nullptr, &handle0, &handle1);
143 DCHECK(handle1.is_valid());
147 MojoResult result = CreateMessagePipe(&options, &handle0, &handle1);
150 DCHECK(handle1.is_valid());
  /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/libmojo/mojo/edk/js/
core.cc 102 MojoHandle handle1 = MOJO_HANDLE_INVALID; local
108 result = MojoCreateMessagePipe(NULL, &handle0, &handle1);
121 result = MojoCreateMessagePipe(&options, &handle0, &handle1);
130 dictionary.Set("handle1", mojo::Handle(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();
  /external/libmojo/mojo/android/system/
core_impl.cc 114 MojoHandle handle1; local
116 MojoResult result = MojoCreateMessagePipe(options, &handle1, &handle2);
117 return Java_CoreImpl_newNativeCreationResult(env, result, handle1, handle2);
134 MojoHandle handle1; local
136 MojoResult result = MojoCreateDataPipe(options, &handle1, &handle2);
137 return Java_CoreImpl_newNativeCreationResult(env, result, handle1, handle2);
  /system/core/trusty/storage/tests/
main.cpp 506 file_handle_t handle1; local
512 rc = storage_open_file(session_, &handle1, fname, STORAGE_FILE_OPEN_CREATE,
515 storage_close_file(handle1);
518 rc = storage_open_file(session_, &handle1, fname, 0, 0);
525 storage_close_file(handle1);
1126 file_handle_t handle1; local
1164 file_handle_t handle1; local
1377 file_handle_t handle1; local
2136 file_handle_t handle1; local
2214 file_handle_t handle1; local
2530 file_handle_t handle1; local
2597 file_handle_t handle1; local
2644 file_handle_t handle1; local
2698 file_handle_t handle1; local
2769 file_handle_t handle1; local
2849 file_handle_t handle1; local
2928 file_handle_t handle1; local
2986 file_handle_t handle1; local
    [all...]
  /bionic/tests/
dlfcn_test.cpp 768 void* handle1 = dlopen("libtest_nodelete_2.so", RTLD_NOW | RTLD_NODELETE); local
769 ASSERT_TRUE(handle1 != nullptr) << dlerror();
770 ASSERT_EQ(handle, handle1);
772 dlclose(handle1);
926 void* handle1 = dlopen(nullptr, RTLD_NOW); local
927 ASSERT_TRUE(handle1 != nullptr) << dlerror();
933 ASSERT_EQ(handle1, handle2);
935 GTEST_LOG_(INFO) << "Skipping ASSERT_EQ(handle1, handle2) for glibc:
1129 void* handle1 = dlopen("libdlext_test.so", RTLD_NOW); local
    [all...]
dlext_test.cpp 748 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); local
749 ASSERT_TRUE(handle1 != nullptr) << dlerror();
755 ASSERT_TRUE(handle1 != handle2);
759 fn_t ns_get_local_string1 = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_local_string"));
770 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_private_extern_string"));
782 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_public_extern_string"));
792 fn_t ns_get_dlopened_string1 = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_dlopened_string"));
806 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_internal_extern_string"));
812 dlclose(handle1);
1213 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); local
1341 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); local
1592 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); local
    [all...]
  /external/libchrome/base/trace_event/
trace_event_unittest.cc 1565 TraceEventHandle handle1 = local
1596 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 6251 String handle1 = "test@gmail.com"; local
    [all...]

Completed in 1150 milliseconds