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

  /external/chromium_org/ipc/
ipc_channel_posix.cc 190 client_pipe_(-1),
312 if (!SocketPair(&local_pipe, &client_pipe_))
314 PipeMap::GetInstance()->Insert(pipe_name_, client_pipe_);
549 return client_pipe_;
554 int fd = client_pipe_;
555 if (client_pipe_ != -1) {
557 client_pipe_ = -1;
564 if (client_pipe_ != -1) {
566 if (IGNORE_EINTR(close(client_pipe_)) < 0)
568 client_pipe_ = -1
    [all...]
ipc_channel_posix.h 161 int client_pipe_; member in class:IPC::ChannelPosix
162 mutable base::Lock client_pipe_lock_; // Lock that protects |client_pipe_|.

Completed in 67 milliseconds