Home
last modified time | relevance | path

Searched refs:file_path (Results 1 – 5 of 5) sorted by relevance

/xnu-11215/tests/vm/
H A Dtest_vm_no_pager_helper.c179 fork_and_crash(void(f_ptr)(char*, char*), char* file_path, char* device_identifier) in fork_and_crash() argument
184 f_ptr(file_path, device_identifier); in fork_and_crash()
200 read_and_cause_unmount_crash(char* file_path, char* device_identifier) in read_and_cause_unmount_crash() argument
204 if ((test_file_fd = open(file_path, O_RDWR)) == -1) { in read_and_cause_unmount_crash()
205 printf("couldn't open file '%s'\n", file_path); in read_and_cause_unmount_crash()
211 printf("couldn't mmap file '%s', errno %d\n", file_path, errno); in read_and_cause_unmount_crash()
213 PRINTF("mmap'd file: '%s'\n", file_path); in read_and_cause_unmount_crash()
225 read_and_cause_ungraft_crash(char* file_path, __unused char* unused) in read_and_cause_ungraft_crash() argument
230 if ((test_file_fd = open(file_path, O_RDWR)) == -1) { in read_and_cause_ungraft_crash()
231 printf("couldn't open %s\n", file_path); in read_and_cause_ungraft_crash()
[all …]
/xnu-11215/tests/nvram_tests/
H A Drun_tests.py80 file_path = parsed_args.f variable
88 if not os.path.exists(file_path) or os.path.basename(os.getcwd()) != 'xnu':
89 print("Invalid file path:", file_path)
93 for file in os.listdir(file_path):
/xnu-11215/tests/
H A Dbig_map_test.c54 char file_path[] = "/tmp/bigfile.XXXXXX"; variable
55 T_QUIET; T_ASSERT_POSIX_SUCCESS(fd = mkstemp(file_path), NULL);
/xnu-11215/libkern/os/
H A Dlog.h476 os_log_coprocessor_register(const char *uuid, const char *file_path, bool copy);
491 os_log_coprocessor_register_with_type(const char *uuid, const char *file_path, os_log_coproc_reg_t …
H A Dlog.c1062 os_log_coprocessor_register_with_type(const char *uuid, const char *file_path, os_log_coproc_reg_t … in os_log_coprocessor_register_with_type() argument
1064 size_t path_size = strlen(file_path) + 1; in os_log_coprocessor_register_with_type()
1091 memcpy(buf.uuid_info.ftui_path, file_path, path_size); in os_log_coprocessor_register_with_type()