HomeSort by: relevance | last modified time | path
    Searched defs:file_path (Results 1 - 4 of 4) sorted by relevancy

  /src/tests/fs/vfs/
t_rwtoro.c 50 static char file_path[MAXPATHLEN]; variable in typeref:typename:char[]
96 snprintf(file_path, sizeof(file_path), "%s/file", prefix);
97 RL(file_fd = rump_sys_open(file_path, O_CREAT | O_RDWR, 0777));
99 RL(file_fd = rump_sys_open(file_path, O_RDONLY));
106 snprintf(file_path, sizeof(file_path), "%s/file", prefix);
107 RL(file_fd = rump_sys_open(file_path, O_CREAT | O_RDWR, 0777));
109 RL(file_fd = rump_sys_open(file_path, O_RDONLY));
110 RL(rump_sys_unlink(file_path));
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_coverage_libcdep_new.cc 48 static void WriteModuleCoverage(char* file_path, const char* module_name,
50 GetCoverageFilename(file_path, StripModuleName(module_name), "sancov");
51 fd_t fd = OpenFile(file_path);
55 Printf("SanitizerCoverage: %s: %zd PCs written\n", file_path, len);
61 char* file_path = static_cast<char*>(InternalAlloc(kMaxPathLength)); local in function:__sancov::__anon1f75a2d00110::SanitizerDumpCoverage
84 WriteModuleCoverage(file_path, module_name, &pcs[module_start_idx],
97 WriteModuleCoverage(file_path, module_name, &pcs[module_start_idx],
101 InternalFree(file_path);
  /src/sbin/dmctl/
dmctl.c 458 char *file_path; local in function:dmctl_table_reload
463 file_path = NULL;
471 file_path = argv[0];
473 while ((params = parse_stdin(file_path)) != NULL) {
552 parse_stdin(char *file_path)
560 if (file_path) {
561 if ((fp = fopen(file_path, "r")) == NULL)
  /src/usr.sbin/makemandb/
makemandb.c 89 char *file_path; member in struct:roff_mandb_rec
822 rec->file_path = estrdup(file);
823 // file_path is freed by insert_into_db itself.
914 warnx("%s: Missing section number", rec->file_path);
1669 rc = sqlite3_bind_text(stmt, idx, rec->file_path, -1, NULL);
1702 warnx("Trying to update index for %s", rec->file_path);
1707 rec->file_path);
1740 sqlite3_bind_text(stmt, idx, rec->file_path, -1, NULL);
1754 warnx("Failed at %s\n%s", rec->file_path, sqlite3_errmsg(db));
1899 free(rec->file_path);
    [all...]

Completed in 14 milliseconds