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

  /external/libmojo/mojo/edk/system/
platform_handle_dispatcher_unittest.cc 43 EXPECT_EQ(Dispatcher::Type::PLATFORM_HANDLE, dispatcher->GetType());
102 Dispatcher::Deserialize(Dispatcher::Type::PLATFORM_HANDLE, nullptr,
107 EXPECT_TRUE(dispatcher->GetType() == Dispatcher::Type::PLATFORM_HANDLE);
platform_handle_dispatcher.cc 15 ScopedPlatformHandle platform_handle) {
16 return new PlatformHandleDispatcher(std::move(platform_handle));
24 return Type::PLATFORM_HANDLE;
95 ScopedPlatformHandle platform_handle)
96 : platform_handle_(std::move(platform_handle)) {}
dispatcher.cc 177 case Type::PLATFORM_HANDLE:
dispatcher.h 18 #include "mojo/edk/embedder/platform_handle.h"
62 PLATFORM_HANDLE = -1,
core.cc 61 const MojoPlatformHandle* platform_handle,
63 if (platform_handle->struct_size != sizeof(MojoPlatformHandle))
66 if (platform_handle->type == MOJO_PLATFORM_HANDLE_TYPE_INVALID) {
72 switch (platform_handle->type) {
75 handle.handle = static_cast<int>(platform_handle->value);
82 handle.port = static_cast<mach_port_t>(platform_handle->value);
88 handle.handle = reinterpret_cast<HANDLE>(platform_handle->value);
102 MojoPlatformHandle* platform_handle) {
103 if (platform_handle->struct_size != sizeof(MojoPlatformHandle))
107 platform_handle->type = MOJO_PLATFORM_HANDLE_TYPE_INVALID
    [all...]

Completed in 153 milliseconds