Home | History | Annotate | Download | only in proxy

Lines Matching refs:handle

23 // SerializedHandle is a unified structure for holding a handle (e.g., a shared
24 // memory handle, socket descriptor, etc). This is useful for passing handles in
41 // Create an invalid handle of the given type.
44 // Create a shared memory handle.
45 SerializedHandle(const base::SharedMemoryHandle& handle, uint32 size);
47 // Create a socket, channel or file handle.
71 void set_shmem(const base::SharedMemoryHandle& handle, uint32 size) {
73 shm_handle_ = handle;
119 // Closes the handle and sets it to invalid.
122 // Write/Read a Header, which contains all the data except the handle. This
123 // allows us to write the handle in a platform-specific way, as is necessary
129 // The kind of handle we're holding.