OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:proc_fd_
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/content/common/
sandbox_linux.cc
68
:
proc_fd_
(-1),
102
// Open
proc_fd_
only in Debug mode so that forgetting to close it doesn't
104
proc_fd_
= open("/proc", O_DIRECTORY | O_RDONLY);
105
CHECK_GE(
proc_fd_
, 0);
182
if (
proc_fd_
>= 0) {
185
fstat_ret = fstatat(
proc_fd_
, "self/task/", &task_stat, 0);
199
// setuid sandbox is already engaged but no
proc_fd_
is available).
277
if (
proc_fd_
>= 0) {
278
int ret = HANDLE_EINTR(close(
proc_fd_
));
280
proc_fd_
= -1
[
all
...]
sandbox_linux.h
84
// in the sandbox is closed. For now, this consists of closing
proc_fd_
.
90
int
proc_fd_
;
member in class:content::LinuxSandbox
sandbox_seccomp_bpf_linux.cc
[
all
...]
/external/chromium_org/sandbox/linux/seccomp-bpf/
sandbox_bpf.cc
216
proc_fd_
(-1),
423
proc_fd_
= proc_fd;
434
if (
proc_fd_
< 0) {
435
proc_fd_
= open("/proc", O_RDONLY|O_DIRECTORY);
437
if (
proc_fd_
< 0) {
441
if (!IsSingleThreaded(
proc_fd_
)) {
448
if (
proc_fd_
>= 0) {
449
if (HANDLE_EINTR(close(
proc_fd_
))) {
452
proc_fd_
= -1;
[
all
...]
sandbox_bpf.h
208
int proc_fd() { return
proc_fd_
; }
262
int
proc_fd_
;
member in class:playground2::Sandbox
Completed in 89 milliseconds