HomeSort by relevance Sort by last modified time
    Searched refs:handle1 (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/compiler-rt/test/asan/TestCases/Linux/
coverage-direct.cc 35 void *handle1 = local
37 assert(handle1);
38 void (*bar1)() = (void (*)())dlsym(handle1, "bar");
coverage-module-unloaded.cc 28 void *handle1 = local
30 assert(handle1);
31 void (*bar1)() = (void (*)())dlsym(handle1, "bar");
44 dlclose(bar1 < bar2 ? handle1 : handle2);
46 dlclose(bar1 < bar2 ? handle2 : handle1);
  /external/compiler-rt/test/asan/TestCases/Android/
coverage-android.cc 56 void *handle1 = local
58 assert(handle1);
59 void (*bar1)() = (void (*)())dlsym(handle1, "bar");
  /external/chromium_org/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));
72 MojoWait(handle1, MOJO_HANDLE_SIGNAL_READABLE,
77 MojoReadMessage(handle1, buffer, &num_bytes, NULL, NULL,
83 EXPECT_EQ(MOJO_RESULT_OK, MojoClose(handle1));
  /external/chromium_org/mojo/public/cpp/application/
connect.h 19 url, Interface::Name_, pipe.handle1.Pass(), std::string());
  /external/chromium_org/chrome/browser/ui/webui/
mojo_web_ui_controller.cc 28 render_view_host->SetWebUIHandle(pipe.handle1.Pass());
  /external/chromium_org/mojo/public/cpp/environment/tests/
async_waiter_unittest.cc 72 EXPECT_TRUE(test::WriteTextMessage(test_pipe.handle1.get(), std::string()));
88 EXPECT_TRUE(test::WriteTextMessage(test_pipe1.handle1.get(), std::string()));
89 EXPECT_TRUE(test::WriteTextMessage(test_pipe2.handle1.get(), std::string()));
109 EXPECT_TRUE(test::WriteTextMessage(test_pipe.handle1.get(), std::string()));
  /external/chromium_org/mojo/common/
handle_watcher_unittest.cc 134 EXPECT_TRUE(mojo::test::WriteTextMessage(test_pipe.handle1.get(),
175 EXPECT_TRUE(mojo::test::WriteTextMessage(test_pipe3.handle1.get(),
185 EXPECT_TRUE(mojo::test::WriteTextMessage(test_pipe1.handle1.get(),
187 EXPECT_TRUE(mojo::test::WriteTextMessage(test_pipe3.handle1.get(),
196 EXPECT_TRUE(mojo::test::WriteTextMessage(test_pipe1.handle1.get(),
198 EXPECT_TRUE(mojo::test::WriteTextMessage(test_pipe2.handle1.get(),
228 EXPECT_TRUE(mojo::test::WriteTextMessage(test_pipe1.handle1.get(),
237 EXPECT_TRUE(mojo::test::WriteTextMessage(test_pipe2.handle1.get(),
251 EXPECT_TRUE(mojo::test::WriteTextMessage(test_pipe1.handle1.get(),
307 callback_helper.StartWithCallback(watcher, test_pipe.handle1.get()
    [all...]
  /external/chromium_org/mojo/public/cpp/bindings/
interface_request.h 71 return MakeRequest<Interface>(pipe.handle1.Pass());
  /hardware/samsung_slsi/exynos5/include/
gralloc_priv.h 102 ion_user_handle_t handle1; member in struct:private_handle_t
115 vstride(vstride), gamut(0), chroma(0), base(0), handle(0), handle1(0),
128 handle(0), handle1(0), handle2(0)
140 handle(0), handle1(0), handle2(0)
  /external/chromium_org/mojo/shell/
shell_test_base_unittest.cc 54 mp.handle1.Pass());
84 mp.handle1.Pass());
  /external/chromium_org/base/synchronization/
lock_unittest.cc 199 PlatformThreadHandle handle1; local
203 ASSERT_TRUE(PlatformThread::Create(0, &thread1, &handle1));
209 PlatformThread::Join(handle1);
  /external/chromium_org/third_party/sfntly/cpp/src/test/
lock_test.cc 213 PlatformThreadHandle handle1 = kNullThreadHandle; local
217 EXPECT_TRUE(PlatformThread::Create(&thread1, &handle1));
223 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);
  /hardware/samsung_slsi/exynos5/gralloc/
mapper.cpp 102 ret = ion_import(getIonFd(module), hnd->fd1, &hnd->handle1);
104 ALOGE("error importing handle1 %d %x\n", hnd->fd1, hnd->format);
129 if (hnd->handle1)
130 ion_free(getIonFd(module), hnd->handle1);
  /external/chromium_org/mojo/examples/compositor_app/
compositor_app.cc 36 host_.reset(new CompositorHost(pipe.handle1.Pass()));
  /external/chromium_org/sync/syncable/
syncable_unittest.cc 437 int64 handle1 = 0; local
445 handle1 = e1.GetMetahandle();
450 EXPECT_TRUE(IsInDirtyMetahandles(handle1));
459 MutableEntry aguilera(&trans, GET_BY_HANDLE, handle1);
465 EXPECT_TRUE(IsInDirtyMetahandles(handle1));
477 MutableEntry aguilera(&trans, GET_BY_HANDLE, handle1);
482 EXPECT_FALSE(IsInDirtyMetahandles(handle1));
485 EXPECT_TRUE(IsInDirtyMetahandles(handle1));
506 Entry e1(&trans, GET_BY_HANDLE, handle1);
514 EXPECT_TRUE(IsInDirtyMetahandles(handle1));
519 int64 handle1 = 0; local
    [all...]
  /external/chromium_org/mojo/android/system/
core_impl.cc 79 MojoHandle handle1; local
82 MojoResult result = MojoCreateMessagePipe(NULL, &handle1, &handle2);
83 return Java_CoreImpl_newNativeCreationResult(env, result, handle1, handle2)
99 MojoHandle handle1; local
101 MojoResult result = MojoCreateDataPipe(options, &handle1, &handle2);
102 return Java_CoreImpl_newNativeCreationResult(env, result, handle1, handle2)
  /external/chromium_org/mojo/public/cpp/system/
core.h 277 MessagePipeHandle handle1; local
280 handle1.mutable_value());
284 message_pipe1->reset(handle1);
320 ScopedMessagePipeHandle handle1; member in class:mojo::MessagePipe
325 CreateMessagePipe(NULL, &handle0, &handle1);
331 CreateMessagePipe(&options, &handle0, &handle1);
  /external/chromium_org/net/socket/
client_socket_pool_base_unittest.cc 2892 ClientSocketHandle handle1; local
2950 ClientSocketHandle handle1; local
3010 ClientSocketHandle handle1; local
3073 ClientSocketHandle handle1; local
3111 ClientSocketHandle handle1; local
3184 ClientSocketHandle handle1; local
3220 ClientSocketHandle handle1; local
3268 ClientSocketHandle handle1; local
3368 ClientSocketHandle handle1; local
3395 ClientSocketHandle handle1; local
3472 ClientSocketHandle handle1; local
3551 ClientSocketHandle handle1; local
3614 ClientSocketHandle handle1; local
3893 ClientSocketHandle handle1; local
3930 ClientSocketHandle handle1; local
3995 ClientSocketHandle handle1; local
    [all...]
  /external/chromium_org/mojo/public/cpp/utility/tests/
run_loop_unittest.cc 99 EXPECT_TRUE(test::WriteTextMessage(test_pipe.handle1.get(), std::string()));
135 EXPECT_TRUE(test::WriteTextMessage(test_pipe.handle1.get(), std::string()));
  /external/chromium_org/mojo/public/cpp/bindings/lib/
interface_impl_internal.h 51 Bind(pipe.handle1.Pass(), waiter);
  /external/chromium_org/mojo/public/cpp/bindings/tests/
handle_passing_unittest.cc 192 EXPECT_TRUE(WriteTextMessage(pipe0.handle1.get(), kText1));
195 EXPECT_TRUE(WriteTextMessage(pipe1.handle1.get(), kText2));
273 MojoHandle handle1_value = extra_pipe.handle1.get().value();
278 pipes[1] = extra_pipe.handle1.Pass();
  /external/chromium_org/mojo/service_manager/
service_manager.h 74 pipe.handle1.Pass(),
  /external/chromium_org/v8/test/mjsunit/
debug-toggle-mirror-cache.js 30 var handle1 = debug.MakeMirror(123).handle(); variable
31 assertEquals("number", debug.LookupMirror(handle1).type());

Completed in 649 milliseconds

1 2 3