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

  /src/tests/fs/vfs/
t_rwtoro.c 50 static char file_path[MAXPATHLEN]; variable
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
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
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/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_coverage_libcdep_new.cpp 49 static void WriteModuleCoverage(char* file_path, const char* module_name,
51 GetCoverageFilename(file_path, StripModuleName(module_name), "sancov");
52 fd_t fd = OpenFile(file_path);
56 Printf("SanitizerCoverage: %s: %zd PCs written\n", file_path, len);
62 char* file_path = static_cast<char*>(InternalAlloc(kMaxPathLength)); local
85 WriteModuleCoverage(file_path, module_name, &pcs[module_start_idx],
97 WriteModuleCoverage(file_path, module_name, &pcs[module_start_idx],
101 InternalFree(file_path);
169 const char* file_path = common_flags()->cov_8bit_counters_out; local
170 if (file_path && internal_strlen(file_path))
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_coverage_libcdep_new.cpp 47 static void WriteModuleCoverage(char* file_path, const char* module_name,
49 GetCoverageFilename(file_path, StripModuleName(module_name), "sancov");
50 fd_t fd = OpenFile(file_path);
54 Printf("SanitizerCoverage: %s: %zd PCs written\n", file_path, len);
60 char* file_path = static_cast<char*>(InternalAlloc(kMaxPathLength)); local
83 WriteModuleCoverage(file_path, module_name, &pcs[module_start_idx],
96 WriteModuleCoverage(file_path, module_name, &pcs[module_start_idx],
100 InternalFree(file_path);
168 const char* file_path = common_flags()->cov_8bit_counters_out; local
169 if (file_path && internal_strlen(file_path))
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/
ct_test.c 94 char *file_path = test_mk_file_path(dir, file); local
96 if (file_path != NULL) {
97 BIO *cert_io = BIO_new_file(file_path, "r");
104 OPENSSL_free(file_path);
112 char *file_path = test_mk_file_path(dir, file); local
114 if (file_path != NULL) {
115 BIO *file_io = BIO_new_file(file_path, "r");
122 OPENSSL_free(file_path);
  /src/crypto/external/bsd/openssl/dist/test/
ct_test.c 94 char *file_path = test_mk_file_path(dir, file); local
96 if (file_path != NULL) {
97 BIO *cert_io = BIO_new_file(file_path, "r");
104 OPENSSL_free(file_path);
112 char *file_path = test_mk_file_path(dir, file); local
114 if (file_path != NULL) {
115 BIO *file_io = BIO_new_file(file_path, "r");
122 OPENSSL_free(file_path);
  /src/crypto/external/bsd/openssl.old/dist/test/
ct_test.c 93 char *file_path = test_mk_file_path(dir, file); local
95 if (file_path != NULL) {
96 BIO *cert_io = BIO_new_file(file_path, "r");
103 OPENSSL_free(file_path);
111 char *file_path = test_mk_file_path(dir, file); local
113 if (file_path != NULL) {
114 BIO *file_io = BIO_new_file(file_path, "r");
121 OPENSSL_free(file_path);
  /src/external/gpl3/gcc/dist/gcc/c-family/
c-ppoutput.cc 537 const char *file_path = LOCATION_FILE (src_loc); local
538 size_t to_file_len = strlen (file_path);
545 (const unsigned char *) file_path,
550 print.src_file = file_path;
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-ppoutput.cc 499 const char *file_path = LOCATION_FILE (src_loc); local
500 size_t to_file_len = strlen (file_path);
507 (const unsigned char *) file_path,
512 print.src_file = file_path;
  /src/external/gpl3/gdb/dist/gdb/
solib-darwin.c 41 CORE_ADDR file_path; member in struct:gdb_dyld_image_info
269 gdb::unique_xmalloc_ptr<char> file_path member in class:gdb
271 if (file_path == nullptr)
279 newobj.so_name = file_path.get ();
  /src/external/gpl3/gdb.old/dist/gdb/
solib-darwin.c 41 CORE_ADDR file_path; member in struct:gdb_dyld_image_info
269 gdb::unique_xmalloc_ptr<char> file_path member in class:gdb
271 if (file_path == nullptr)
279 newobj->so_name = file_path.get ();
  /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...]
  /src/external/mit/libuv/dist/test/
test-fs.c 2700 char file_path[MAX_PATH]; local
2734 if (snprintf(file_path,
2735 sizeof(file_path),
2741 ASSERT_OK(uv_fs_lstat(loop, &stat_req, file_path, NULL));

Completed in 39 milliseconds