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

1 2

  /external/chromium_org/mojo/embedder/
platform_handle_utils_posix.cc 14 ScopedPlatformHandle DuplicatePlatformHandle(PlatformHandle platform_handle) {
15 DCHECK(platform_handle.is_valid());
18 return ScopedPlatformHandle(PlatformHandle(dup(platform_handle.fd)));
platform_handle_utils_win.cc 14 ScopedPlatformHandle DuplicatePlatformHandle(PlatformHandle platform_handle) {
15 DCHECK(platform_handle.is_valid());
19 platform_handle.handle,
simple_platform_support.cc 19 ScopedPlatformHandle platform_handle) {
21 num_bytes, platform_handle.Pass());
embedder.h 32 // Both creation functions have a |platform_handle| argument, which should be an
64 // Creates a channel; must only be called from the I/O thread. |platform_handle|
70 CreateChannelOnIOThread(ScopedPlatformHandle platform_handle,
75 // |platform_handle| should be a handle to a connected OS "pipe".
84 CreateChannel(ScopedPlatformHandle platform_handle,
109 // pipes. Note: This takes ownership (and thus closes) |platform_handle| even on
113 CreatePlatformHandleWrapper(ScopedPlatformHandle platform_handle,
120 ScopedPlatformHandle* platform_handle);
embedder.cc 43 ScopedPlatformHandle platform_handle,
45 DCHECK(platform_handle.is_valid());
50 if (!channel->Init(system::RawChannel::Create(platform_handle.Pass()))) {
51 // This is very unusual (e.g., maybe |platform_handle| was invalid or we
83 ScopedPlatformHandle platform_handle,
89 MakeChannel(core, platform_handle.Pass(), channel_endpoint);
108 ScopedPlatformHandle platform_handle,
110 DCHECK(platform_handle.is_valid());
124 MakeChannel(core, platform_handle.Pass(), channel_endpoint);
130 ScopedPlatformHandle platform_handle,
    [all...]
platform_handle_utils.h 8 #include "mojo/embedder/platform_handle.h"
29 DuplicatePlatformHandle(PlatformHandle platform_handle);
platform_support.h 28 ScopedPlatformHandle platform_handle) = 0;
simple_platform_support.h 28 ScopedPlatformHandle platform_handle) OVERRIDE;
simple_platform_shared_buffer.cc 33 ScopedPlatformHandle platform_handle) {
37 if (!rv->InitFromPlatformHandle(platform_handle.Pass())) {
simple_platform_shared_buffer.h 27 ScopedPlatformHandle platform_handle);
50 // should verify that |platform_handle| is an appropriate handle for the
52 bool InitFromPlatformHandle(ScopedPlatformHandle platform_handle);
simple_platform_shared_buffer_posix.cc 24 #include "mojo/embedder/platform_handle.h"
87 ScopedPlatformHandle platform_handle) {
97 if (fstat(platform_handle.get().fd, &sb) != 0) {
114 handle_ = platform_handle.Pass();
simple_platform_shared_buffer_win.cc 13 #include "mojo/embedder/platform_handle.h"
51 ScopedPlatformHandle platform_handle) {
embedder_unittest.cc 30 // |TaskRunner|) attached to the given |platform_handle|. After construction,
36 ScopedPlatformHandle platform_handle)
42 CreateChannel(platform_handle.Pass(),
  /external/chromium_org/mojo/system/
message_pipe_test_utils.cc 44 void ChannelThread::Start(embedder::ScopedPlatformHandle platform_handle,
51 base::Passed(&platform_handle),
72 embedder::ScopedPlatformHandle platform_handle,
75 CHECK(platform_handle.is_valid());
79 CHECK(channel_->Init(RawChannel::Create(platform_handle.Pass())));
platform_handle_dispatcher.cc 25 embedder::ScopedPlatformHandle platform_handle)
26 : platform_handle_(platform_handle.Pass()) {
54 embedder::PlatformHandle platform_handle; local
66 std::swap(platform_handle, (*platform_handles)[platform_handle_index]);
70 embedder::ScopedPlatformHandle(platform_handle)));
message_pipe_test_utils.h 32 void Start(embedder::ScopedPlatformHandle platform_handle,
37 void InitChannelOnIOThread(embedder::ScopedPlatformHandle platform_handle,
platform_handle_dispatcher.h 22 embedder::ScopedPlatformHandle platform_handle);
shared_buffer_dispatcher.cc 119 embedder::PlatformHandle platform_handle; local
122 std::swap(platform_handle, (*platform_handles)[platform_handle_index]);
124 // Wrapping |platform_handle| in a |ScopedPlatformHandle| means that it'll be
128 num_bytes, embedder::ScopedPlatformHandle(platform_handle)));
257 embedder::ScopedPlatformHandle platform_handle(
260 if (!platform_handle.is_valid()) {
267 platform_handles->push_back(platform_handle.release());
  /external/chromium_org/base/threading/
platform_thread_win.cc 59 PlatformThreadHandle::Handle platform_handle; local
63 &platform_handle,
71 scoped_platform_handle.Set(platform_handle);
platform_thread.h 100 Handle platform_handle() const { function in class:base::PlatformThreadHandle
platform_thread_posix.cc 77 PlatformThread::CurrentHandle().platform_handle(),
83 PlatformThread::CurrentHandle().platform_handle(),
138 CHECK_EQ(handle, thread_handle->platform_handle());
  /external/chromium_org/ipc/mojo/
ipc_channel_mojo.cc 228 mojo::embedder::ScopedPlatformHandle platform_handle; local
230 handle_buffer[i], &platform_handle);
238 base::ScopedFD(platform_handle.release().fd));
  /external/chromium_org/mojo/
mojo_system_impl.target.darwin-arm64.mk 31 mojo/embedder/platform_handle.cc \
mojo_system_impl.target.darwin-mips.mk 31 mojo/embedder/platform_handle.cc \
mojo_system_impl.target.darwin-mips64.mk 31 mojo/embedder/platform_handle.cc \

Completed in 1279 milliseconds

1 2