Home | History | Annotate | Download | only in ipc

Lines Matching refs:handle

21 // handle is provided for convenience.
22 // NOTE: A ChannelHandle with a pipe handle Will NOT be marshalled over IPC.
30 // in both Windows and Posix. When passing a handle to a channel over IPC,
45 explicit ChannelHandle(HANDLE h) : pipe(h) {}
55 // A simple container to automatically initialize pipe handle
57 PipeHandle() : handle(NULL) {}
58 PipeHandle(HANDLE h) : handle(h) {}
59 HANDLE handle;