/system/netd/libbpf/ |
D | BpfUtils.cpp | 159 int mapPin(const base::unique_fd& map_fd, const char* pathname) { in mapPin() argument 162 attr.pathname = ptr_to_u64((void*)pathname); in mapPin() 168 int mapRetrieve(const char* pathname, uint32_t flag) { in mapRetrieve() argument 171 attr.pathname = ptr_to_u64((void*)pathname); in mapRetrieve()
|
/system/core/init/ |
D | util.h | 49 bool mkdir_recursive(const std::string& pathname, mode_t mode); 55 bool is_dir(const char* pathname);
|
D | compare-bootcharts.py | 78 def parse_proc_file(pathname, process_map, jiffy_record=None): argument 80 with tarfile.open(pathname + '/bootchart.tgz', 'r:*') as tf:
|
D | util.cpp | 288 bool is_dir(const char* pathname) { in is_dir() argument 290 if (stat(pathname, &info) == -1) { in is_dir()
|
D | README.md | 153 service <name> <pathname> [ <argument> ]*
|
/system/extras/ioshark/ |
D | compile_ioshark_subr.c | 66 void *files_db_lookup(char *pathname) in files_db_lookup() argument 71 hash = jenkins_one_at_a_time_hash(pathname, strlen(pathname)); in files_db_lookup() 75 if (strcmp(db_node->filename, pathname) == 0) in files_db_lookup()
|
D | compile_ioshark.c | 176 get_pathname(char *buf, char *pathname, enum file_op file_op) in get_pathname() argument 216 strcpy(pathname, s); in get_pathname()
|
/system/netd/libbpf/include/bpf/ |
D | BpfUtils.h | 142 int mapPin(const base::unique_fd& map_fd, const char* pathname); 143 int mapRetrieve(const char* pathname, uint32_t flags);
|
/system/netd/libnetdutils/ |
D | Syscalls.cpp | 44 StatusOr<UniqueFd> open(const std::string& pathname, int flags, mode_t mode) const override { in open() argument 45 UniqueFd fd(::open(pathname.c_str(), flags, mode)); in open() 47 return statusFromErrno(errno, "open(\"" + pathname + "\"...) failed"); in open()
|
/system/core/adb/ |
D | sysdeps.h | 398 static __inline__ int adb_open_mode( const char* pathname, int options, int mode ) in adb_open_mode() argument 400 return TEMP_FAILURE_RETRY( open( pathname, options, mode ) ); in adb_open_mode() 411 static __inline__ int adb_open( const char* pathname, int options ) in adb_open() argument 413 int fd = TEMP_FAILURE_RETRY( open( pathname, options ) ); in adb_open()
|
/system/netd/libnetdutils/include/netdutils/ |
D | MockSyscalls.h | 37 StatusOr<UniqueFd>(const std::string& pathname, int flags, mode_t mode));
|
D | Syscalls.h | 43 virtual StatusOr<UniqueFd> open(const std::string& pathname, int flags,
|
/system/extras/app-launcher/ |
D | README | 53 (b) (Optional) Add code to get the /system block device pathname. This is
|
/system/iot/attestation/at-factory-tool/ |
D | atft.py | 1165 def ProcessProductAttributesFile(self, pathname): argument 1172 with open(pathname, 'r') as attribute_file: 1182 self._SendAlertEvent(self.ALERT_CANNOT_OPEN_FILE + pathname) 1502 pathname = file_dialog.GetPath() 1503 callback(pathname)
|
/system/extras/ioblame/ |
D | README | 87 the pathname of the file and the amount of data written out. 221 Allowing ioblame to track <pathname, amount of data written>
|
/system/core/logcat/ |
D | logcat.cpp | 159 static int openLogFile(const char* pathname) { in openLogFile() argument 160 return open(pathname, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR); in openLogFile()
|