Searched refs:new_pipe (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/sandbox/win/src/
H A Dnamed_pipe_policy.cc30 HANDLE new_pipe;
32 target_process, &new_pipe,
38 return new_pipe;
/external/chromium_org/remoting/host/linux/
H A Daudio_pipe_reader.cc110 base::File new_pipe; local
111 new_pipe.Initialize(
115 // If both |pipe_| and |new_pipe| are valid then compare inodes for the two
117 if (new_pipe.IsValid() && pipe_.IsValid()) {
121 fstat(new_pipe.GetPlatformFile(), &new_stat) == 0 &&
130 pipe_ = new_pipe.Pass();
/external/chromium_org/media/cast/test/utility/
H A Dudp_proxy_main.cc83 media::cast::test::PacketPipe* new_pipe = local
85 new_pipe->AppendToPipe(pipe->Pass());
86 new_pipe->AppendToPipe(
89 pipe->reset(new_pipe);
/external/chromium_org/ipc/
H A Dipc_channel_posix.cc644 int new_pipe = 0; local
645 if (!ServerAcceptConnection(server_listen_pipe_, &new_pipe) ||
646 new_pipe < 0) {
654 if (HANDLE_EINTR(shutdown(new_pipe, SHUT_RDWR)) < 0)
656 if (IGNORE_EINTR(close(new_pipe)) < 0)
661 pipe_ = new_pipe;

Completed in 131 milliseconds