/external/libmojo/mojo/public/cpp/system/ |
D | message_pipe.h | 50 MessagePipeHandle handle1; in CreateMessagePipe() local 52 options, handle0.mutable_value(), handle1.mutable_value()); in CreateMessagePipe() 56 message_pipe1->reset(handle1); in CreateMessagePipe() 136 ScopedMessagePipeHandle handle1; variable 140 MojoResult result = CreateMessagePipe(nullptr, &handle0, &handle1); in MessagePipe() 143 DCHECK(handle1.is_valid()); in MessagePipe() 147 MojoResult result = CreateMessagePipe(&options, &handle0, &handle1); in MessagePipe() 150 DCHECK(handle1.is_valid()); in MessagePipe()
|
/external/compiler-rt/test/asan/TestCases/Posix/ |
D | coverage-module-unloaded.cc | 28 void *handle1 = dlopen(argv[1], RTLD_LAZY); // %dynamiclib1 in main() local 29 assert(handle1); in main() 30 void (*bar1)() = (void (*)())dlsym(handle1, "bar"); in main() 42 dlclose(bar1 < bar2 ? handle1 : handle2); in main() 44 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/libmojo/mojo/public/c/system/tests/ |
D | core_unittest_pure_c.c | 44 MojoHandle handle0, handle1; in MinimalCTest() local 60 handle1 = MOJO_HANDLE_INVALID; in MinimalCTest() 61 EXPECT_EQ(MOJO_RESULT_OK, MojoCreateMessagePipe(NULL, &handle0, &handle1)); in MinimalCTest() 82 EXPECT_EQ(MOJO_RESULT_OK, MojoWait(handle1, MOJO_HANDLE_SIGNAL_READABLE, in MinimalCTest() 92 EXPECT_EQ(MOJO_RESULT_OK, MojoReadMessage(handle1, buffer, &num_bytes, NULL, in MinimalCTest() 98 EXPECT_EQ(MOJO_RESULT_OK, MojoClose(handle1)); in MinimalCTest()
|
/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/libmojo/mojo/public/cpp/bindings/ |
D | associated_interface_ptr.h | 223 ScopedInterfaceEndpointHandle handle1; in MakeRequest() local 225 &handle1); in MakeRequest() 231 request.Bind(std::move(handle1)); in MakeRequest() 256 new internal::MultiplexRouter(std::move(pipe.handle1), in GetIsolatedProxy()
|
D | scoped_interface_endpoint_handle.h | 34 ScopedInterfaceEndpointHandle* handle1);
|
/external/libmojo/mojo/android/system/ |
D | core_impl.cc | 78 MojoHandle handle1; in CreateMessagePipe() local 80 MojoResult result = MojoCreateMessagePipe(options, &handle1, &handle2); in CreateMessagePipe() 81 return Java_CoreImpl_newNativeCreationResult(env, result, handle1, handle2); in CreateMessagePipe() 98 MojoHandle handle1; in CreateDataPipe() local 100 MojoResult result = MojoCreateDataPipe(options, &handle1, &handle2); in CreateDataPipe() 101 return Java_CoreImpl_newNativeCreationResult(env, result, handle1, handle2); in CreateDataPipe()
|
/external/libmojo/mojo/edk/js/tests/ |
D | js_to_cpp_tests.js | 64 arg.message_handle = messagePipe1.handle1; 73 specialArg.message_handle = messagePipe2.handle1; 118 arg.message_handle = messagePipe.handle1; 158 arg.message_handle = messagePipe.handle1;
|
/external/perfetto/src/protozero/ |
D | message_unittest.cc | 296 MessageHandle<FakeRootMessage> handle1(msg1); in TEST_F() local 297 handle1->AppendBytes(1 /* field_id */, kTestBytes, 1 /* size */); in TEST_F() 377 MessageHandle<FakeRootMessage> handle1(msg); in TEST_F() local 379 handle1->AppendBytes(1 /* field_id */, kTestBytes, 1 /* size */); in TEST_F() 380 handle2 = std::move(handle1); in TEST_F()
|
/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/libchrome/base/synchronization/ |
D | lock_unittest.cc | 198 PlatformThreadHandle handle1; in TEST() local 202 ASSERT_TRUE(PlatformThread::Create(0, &thread1, &handle1)); in TEST() 208 PlatformThread::Join(handle1); in TEST()
|
/external/libmojo/mojo/public/cpp/bindings/tests/ |
D | handle_passing_unittest.cc | 206 EXPECT_TRUE(WriteTextMessage(pipe0.handle1.get(), kText1)); in TEST_F() 209 EXPECT_TRUE(WriteTextMessage(pipe1.handle1.get(), kText2)); in TEST_F() 304 MojoHandle handle1_value = extra_pipe.handle1.get().value(); in TEST_F() 309 pipes[1] = std::move(extra_pipe.handle1); in TEST_F()
|
D | serialization_warning_unittest.cc | 35 nested_array[j] = ScopedHandle::From(std::move(pipe.handle1)); in CreateTestNestedHandleArray() 102 test_struct->hdl = ScopedHandle::From(std::move(pipe.handle1)); in TEST_F()
|
/external/libmojo/mojo/public/cpp/system/tests/ |
D | core_unittest.cc | 286 handles[0] = mp.handle1.release().value(); in TEST() 288 EXPECT_FALSE(mp.handle1.get().is_valid()); in TEST() 324 mp.handle1.reset(MessagePipeHandle(handles[0])); in TEST() 329 Wait(mp.handle1.get(), MOJO_HANDLE_SIGNAL_READABLE, in TEST() 340 ReadMessageRaw(mp.handle1.get(), in TEST()
|
/external/swiftshader/third_party/LLVM/test/Transforms/LICM/ |
D | scalar_promote.ll | 77 %handle1 = alloca i8* 79 store i8* %x, i8** %handle1 106 %offsetx1 = load i8** %handle1
|
/external/libmojo/mojo/edk/js/ |
D | core.cc | 102 MojoHandle handle1 = MOJO_HANDLE_INVALID; in CreateMessagePipe() local 108 result = MojoCreateMessagePipe(NULL, &handle0, &handle1); in CreateMessagePipe() 121 result = MojoCreateMessagePipe(&options, &handle0, &handle1); in CreateMessagePipe() 130 dictionary.Set("handle1", mojo::Handle(handle1)); in CreateMessagePipe()
|
/external/llvm/test/Transforms/LICM/ |
D | scalar_promote.ll | 80 %handle1 = alloca i8* 82 store i8* %x, i8** %handle1 109 %offsetx1 = load i8*, i8** %handle1
|
/external/libmojo/mojo/edk/embedder/ |
D | entrypoints.cc | 143 MojoResult MojoFuseMessagePipesImpl(MojoHandle handle0, MojoHandle handle1) { in MojoFuseMessagePipesImpl() argument 144 return g_core->FuseMessagePipes(handle0, handle1); in MojoFuseMessagePipesImpl()
|
/external/libmojo/mojo/public/cpp/bindings/lib/ |
D | scoped_interface_endpoint_handle.cc | 287 ScopedInterfaceEndpointHandle* handle1) { in CreatePairPendingAssociation() argument 294 *handle1 = std::move(result1); in CreatePairPendingAssociation()
|
/external/libmojo/mojo/public/c/system/ |
D | thunks.cc | 201 MojoResult MojoFuseMessagePipes(MojoHandle handle0, MojoHandle handle1) { in MojoFuseMessagePipes() argument 203 return g_thunks.FuseMessagePipes(handle0, handle1); in MojoFuseMessagePipes()
|
D | message_pipe.h | 257 MojoFuseMessagePipes(MojoHandle handle0, MojoHandle handle1);
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | sparse_tensors_map_ops_test.py | 83 handle1 = add_sparse_to_tensors_map(sp_input1, shared_name="a") 85 handles_concat = array_ops.stack([handle0, handle1])
|