OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:proc_self_fd
(Results
1 - 2
of
2
) sorted by null
/external/libchrome/sandbox/linux/services/
proc_util.cc
43
int
proc_self_fd
= HANDLE_EINTR(
local
45
PCHECK(0 <=
proc_self_fd
);
47
// Ownership of
proc_self_fd
is transferred here, it must not be closed
49
ScopedDIR dir(fdopendir(
proc_self_fd
));
62
if (fd_num == proc_fd || fd_num ==
proc_self_fd
) {
73
int
proc_self_fd
=
local
76
PCHECK(0 <=
proc_self_fd
);
78
// Ownership of
proc_self_fd
is transferred here, it must not be closed
80
ScopedDIR dir(fdopendir(
proc_self_fd
));
92
if (fd_num == proc_fd || fd_num ==
proc_self_fd
) {
[
all
...]
/bionic/linker/
linker.cpp
560
std::vector<char> buf(PATH_MAX),
proc_self_fd
(PATH_MAX);
561
__libc_format_buffer(&
proc_self_fd
[0],
proc_self_fd
.size(), "/proc/self/fd/%d", fd);
562
if (readlink(&
proc_self_fd
[0], &buf[0], buf.size()) == -1) {
563
PRINT("readlink(\"%s\") failed: %s [fd=%d]", &
proc_self_fd
[0], strerror(errno), fd);
[
all
...]
Completed in 71 milliseconds