Searched defs:PlatformHandle (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/mojo/embedder/
H A Dplatform_handle.h19 struct MOJO_SYSTEM_IMPL_EXPORT PlatformHandle { struct in namespace:mojo::embedder
20 PlatformHandle() : fd(-1) {} function in struct:mojo::embedder::PlatformHandle
21 explicit PlatformHandle(int fd) : fd(fd) {} function in struct:mojo::embedder::PlatformHandle
30 struct MOJO_SYSTEM_IMPL_EXPORT PlatformHandle {
31 PlatformHandle() : handle(INVALID_HANDLE_VALUE) {}
32 explicit PlatformHandle(HANDLE handle) : handle(handle) {}
H A Dscoped_platform_handle.h21 explicit ScopedPlatformHandle(PlatformHandle handle) : handle_(handle) {}
31 const PlatformHandle& get() const { return handle_; }
34 PlatformHandle temp = handle_;
39 PlatformHandle release() WARN_UNUSED_RESULT {
40 PlatformHandle rv = handle_;
41 handle_ = PlatformHandle();
45 void reset(PlatformHandle handle = PlatformHandle()) { argument
53 PlatformHandle handle_;

Completed in 303 milliseconds