Searched refs:file_path (Results 1 - 25 of 38) sorted by relevance

12

/freebsd-11-stable/tools/tools/nanobsd/Files/root/
H A Dsave_cfg49 file_path=`echo "$filename" | sed 's/\/[^/]*$//'`
50 if [ $file_path != $filename ]
52 if [ ! -d /etc/$file_path ]
56 echo "Error: Path /etc/$file_path is not directory."
74 if [ $file_path != $filename ]
76 mkdir -vp /cfg/$file_path
82 if [ $file_path != $filename ]
84 mkdir -vp /cfg/.ignore/$file_path
/freebsd-11-stable/contrib/netbsd-tests/fs/vfs/
H A Dt_rwtoro.c50 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...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjCPlusPlus/
H A DObjCPlusPlusLanguage.cpp18 bool ObjCPlusPlusLanguage::IsSourceFile(llvm::StringRef file_path) const {
21 if (file_path.endswith_lower(suffix))
H A DObjCPlusPlusLanguage.h30 bool IsSourceFile(llvm::StringRef file_path) const override;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_suppressions.cpp34 static bool GetPathAssumingFileIsRelativeToExec(const char *file_path, argument
43 internal_strncat(new_file_path, file_path,
50 static const char *FindFile(const char *file_path, argument
55 if (!FileExists(file_path) && !IsAbsolutePath(file_path) &&
56 GetPathAssumingFileIsRelativeToExec(file_path, new_file_path,
60 return file_path;
63 static const char *FindFile(const char *file_path, char *, uptr) { argument
64 return file_path;
H A Dsanitizer_coverage_libcdep_new.cpp47 static void WriteModuleCoverage(char* file_path, const char* module_name, argument
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);
/freebsd-11-stable/tools/regression/security/open_to_operation/
H A Dopen_to_operation.c1071 char dir_path[PATH_MAX], file_path[PATH_MAX]; local
1090 strlcpy(file_path, "/tmp/open-file.XXXXXXXXXXX", sizeof(file_path));
1091 fd = mkstemp(file_path);
1098 if (chmod(file_path, PERM_FILE) < 0) {
1099 warn("chmod %s", file_path);
1100 (void)unlink(file_path);
1107 check_dup("check_dup_file", file_path, file_modes, file_modes_count);
1110 check_dup2("check_dup2_file", file_path, file_modes,
1117 check_fchflags("check_fchflags_file", file_path, file_mode
[all...]
/freebsd-11-stable/contrib/serf/buckets/
H A Dfile_buckets.c50 const char *file_path; local
59 apr_file_name_get(&file_path, file);
60 apr_stat(&finfo, file_path, APR_FINFO_SIZE,
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBLineEntry.cpp179 char file_path[PATH_MAX * 2]; local
180 m_opaque_up->file.GetPath(file_path, sizeof(file_path));
181 strm.Printf("%s:%u", file_path, GetLine());
H A DSBDeclaration.cpp166 char file_path[PATH_MAX * 2]; local
167 m_opaque_up->GetFile().GetPath(file_path, sizeof(file_path));
168 strm.Printf("%s:%u", file_path, GetLine());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFileMacOSX.cpp566 char file_path[PATH_MAX]; local
567 file_path[0] = '\0';
573 file_spec_ptr->GetPath(file_path, sizeof(file_path));
579 else if (file_path[0] != '\0')
581 g_dsym_for_uuid_exe_path, file_path);
592 else if (file_path[0] != '\0')
594 g_dsym_for_uuid_exe_path, file_path);
653 else if (file_path[0] != '\0')
655 g_dsym_for_uuid_exe_path, file_path);
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DLanguage.cpp79 Language *Language::FindPlugin(llvm::StringRef file_path) { argument
81 ForEach([&result, file_path](Language *language) {
82 if (language->IsSourceFile(file_path)) {
92 llvm::StringRef file_path) {
97 result = FindPlugin(file_path);
91 FindPlugin(LanguageType language, llvm::StringRef file_path) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.cpp490 static bool isLoadBiasIncorrect(Target &target, const std::string &file_path) { argument
496 (file_path == "/system/bin/linker" ||
497 file_path == "/system/bin/linker64");
501 std::string const &file_path) {
504 if (isLoadBiasIncorrect(m_process->GetTarget(), file_path)) {
548 std::string file_path = ReadStringFromMemory(entry.path_addr);
549 entry.file_spec.SetFile(file_path, FileSpec::Style::native);
551 UpdateBaseAddrIfNecessary(entry, file_path);
500 UpdateBaseAddrIfNecessary(SOEntry &entry, std::string const &file_path) argument
H A DDYLDRendezvous.h244 void UpdateBaseAddrIfNecessary(SOEntry &entry, std::string const &file_path);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.h91 bool IsSourceFile(llvm::StringRef file_path) const override;
H A DCPlusPlusLanguage.cpp1121 bool CPlusPlusLanguage::IsSourceFile(llvm::StringRef file_path) const {
1125 if (file_path.endswith_lower(suffix))
1131 return file_path.contains("/usr/include/c++/");
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguage.h154 static Language *FindPlugin(llvm::StringRef file_path);
157 llvm::StringRef file_path);
166 virtual bool IsSourceFile(llvm::StringRef file_path) const = 0;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Drev_file.c64 const char *file_path; member in struct:set_read_only_baton_t
80 err = svn_io_set_file_read_only(ro_baton->file_path, TRUE, ro_baton->pool);
111 baton->file_path = apr_pstrdup(result_pool, path);
H A Dfs.c488 const char *file_path;
499 file_path = svn_fs_fs__path_current(fs, subpool);
503 SVN_ERR(svn_io_remove_file2(file_path, TRUE, subpool));
504 SVN_ERR(svn_io_file_create_empty(file_path, subpool));
482 const char *file_path; local
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.h122 bool IsSourceFile(llvm::StringRef file_path) const override;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dfs.c442 const char *file_path;
453 file_path = svn_fs_x__path_current(fs, subpool);
457 SVN_ERR(svn_io_remove_file2(file_path, TRUE, subpool));
458 SVN_ERR(svn_io_file_create_empty(file_path, subpool));
436 const char *file_path; local
H A Drev_file.c125 const char *file_path; member in struct:set_read_only_baton_t
141 err = svn_io_set_file_read_only(ro_baton->file_path, TRUE, ro_baton->pool);
172 baton->file_path = apr_pstrdup(result_pool, path);
H A Drevprops.c897 const char *file_path; local
906 file_path = get_revprop_pack_filepath(result, &result->entry,
910 file_path,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DModuleList.h414 const char *file_path, uint32_t line, bool check_inlines,
/freebsd-11-stable/contrib/serf/
H A Dserf_bucket_types.h612 * Load a CA certificate file from a path @a file_path. If the file was loaded
618 const char *file_path,

Completed in 191 milliseconds

12