OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:file_to_open
(Results
1 - 2
of
2
) sorted by null
/external/libchrome/sandbox/linux/syscall_broker/
broker_file_permission_unittest.cc
87
const char*
file_to_open
= NULL;
local
94
ASSERT_TRUE(perm.CheckOpen(path, O_RDONLY, &
file_to_open
, NULL));
95
ASSERT_FALSE(perm.CheckOpen(path, O_WRONLY, &
file_to_open
, NULL));
96
ASSERT_FALSE(perm.CheckOpen(path, O_RDWR, &
file_to_open
, NULL));
101
ASSERT_FALSE(perm.CheckOpen(path, O_RDONLY, &
file_to_open
, NULL));
102
ASSERT_TRUE(perm.CheckOpen(path, O_WRONLY, &
file_to_open
, NULL));
103
ASSERT_FALSE(perm.CheckOpen(path, O_RDWR, &
file_to_open
, NULL));
108
ASSERT_TRUE(perm.CheckOpen(path, O_RDONLY, &
file_to_open
, NULL));
109
ASSERT_TRUE(perm.CheckOpen(path, O_WRONLY, &
file_to_open
, NULL));
110
ASSERT_TRUE(perm.CheckOpen(path, O_RDWR, &
file_to_open
, NULL))
[
all
...]
broker_host.cc
69
const char*
file_to_open
= NULL;
local
72
requested_filename.c_str(), flags, &
file_to_open
, &unlink_after_open);
75
CHECK(
file_to_open
);
76
int opened_fd = sys_open(
file_to_open
, flags);
82
unlink(
file_to_open
);
Completed in 3305 milliseconds