HomeSort by relevance Sort by last modified time
    Searched refs:file_to_access (Results 1 - 5 of 5) sorted by null

  /external/libchrome/sandbox/linux/syscall_broker/
broker_policy.cc 44 // If |file_to_access| is not NULL, we will return the matching pointer from
45 // the whitelist. For paranoia a caller should then use |file_to_access|. See
49 // Async signal safe if and only if |file_to_access| is NULL.
53 const char** file_to_access) const {
54 if (file_to_access && *file_to_access) {
58 RAW_LOG(FATAL, "*file_to_access should be NULL");
63 file_to_access)) {
broker_policy.h 44 // whitelist. For paranoia a caller should then use |file_to_access|. See
48 // Async signal safe if and only if |file_to_access| is NULL.
51 const char** file_to_access) const;
broker_file_permission.cc 82 const char** file_to_access) const {
117 if (allowed && file_to_access) {
119 *file_to_access = path_.c_str();
121 *file_to_access = requested_filename;
broker_host.cc 99 const char* file_to_access = NULL; local
101 requested_filename.c_str(), mode, &file_to_access);
104 CHECK(file_to_access);
105 int access_ret = access(file_to_access, mode);
broker_file_permission.h 77 // Async signal safe if |file_to_access| is NULL
80 const char** file_to_access) const;

Completed in 49 milliseconds