OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shutdown_pipe_
(Results
1 - 4
of
4
) sorted by null
/external/chromium/base/files/
file_path_watcher_linux.cc
78
int
shutdown_pipe_
[2];
member in class:base::files::__anon1365::InotifyReader
224
shutdown_pipe_
[0] = -1;
225
shutdown_pipe_
[1] = -1;
226
if (inotify_fd_ >= 0 && pipe(
shutdown_pipe_
) == 0 && thread_.Start()) {
228
FROM_HERE, new InotifyReaderTask(this, inotify_fd_,
shutdown_pipe_
[0]));
237
ssize_t ret = HANDLE_EINTR(write(
shutdown_pipe_
[1], "", 1));
244
if (
shutdown_pipe_
[0] >= 0)
245
close(
shutdown_pipe_
[0]);
246
if (
shutdown_pipe_
[1] >= 0)
247
close(
shutdown_pipe_
[1])
[
all
...]
/external/chromium_org/chromeos/process_proxy/
process_proxy.cc
74
if (pipe(
shutdown_pipe_
))
92
shutdown_pipe_
[PIPE_END_READ],
97
shutdown_pipe_
[PIPE_END_READ] = -1;
135
return file_util::WriteFileDescriptor(
shutdown_pipe_
[PIPE_END_WRITE],
237
CloseFdPair(
shutdown_pipe_
);
255
ClearFdPair(
shutdown_pipe_
);
process_proxy.h
92
int
shutdown_pipe_
[2];
member in class:chromeos::ProcessProxy
/external/chromium_org/base/files/
file_path_watcher_linux.cc
79
int
shutdown_pipe_
[2];
member in class:base::__anon3460::InotifyReader
223
shutdown_pipe_
[0] = -1;
224
shutdown_pipe_
[1] = -1;
225
if (inotify_fd_ >= 0 && pipe(
shutdown_pipe_
) == 0 && thread_.Start()) {
228
shutdown_pipe_
[0]));
237
ssize_t ret = HANDLE_EINTR(write(
shutdown_pipe_
[1], "", 1));
244
if (
shutdown_pipe_
[0] >= 0)
245
close(
shutdown_pipe_
[0]);
246
if (
shutdown_pipe_
[1] >= 0)
247
close(
shutdown_pipe_
[1])
[
all
...]
Completed in 58 milliseconds