Home
last modified time | relevance | path

Searched defs:path (Results 1 – 25 of 907) sorted by relevance

12345678910>>...37

/openbsd/gnu/llvm/lldb/source/Target/
H A DPathMappingList.cpp34 std::string NormalizePath(llvm::StringRef path) { in NormalizePath()
61 void PathMappingList::Append(llvm::StringRef path, llvm::StringRef replacement, in Append()
80 bool PathMappingList::AppendUnique(llvm::StringRef path, in AppendUnique()
166 bool PathMappingList::RemapPath(ConstString path, in RemapPath()
176 static void AppendPathComponents(FileSpec &path, llvm::StringRef components, in AppendPathComponents()
197 llvm::StringRef path = mapping_path; in RemapPath() local
225 std::string path = file.GetPath(); in ReverseRemapPath() local
266 bool PathMappingList::Remove(ConstString path, bool notify) { in Remove()
292 PathMappingList::FindIteratorForPath(ConstString path) { in FindIteratorForPath()
304 bool PathMappingList::GetPathsAtIndex(uint32_t idx, ConstString &path, in GetPathsAtIndex()
[all …]
/openbsd/gnu/llvm/lldb/source/API/
H A DSBReproducer.cpp65 const char *SBReproducer::Capture(const char *path) { in Capture()
70 const char *SBReproducer::PassiveReplay(const char *path) { in PassiveReplay()
75 const char *SBReproducer::Replay(const char *path) { in Replay()
80 const char *SBReproducer::Replay(const char *path, bool skip_version_check) { in Replay()
85 const char *SBReproducer::Replay(const char *path, in Replay()
91 const char *SBReproducer::Finalize(const char *path) { in Finalize()
111 void SBReproducer::SetWorkingDirectory(const char *path) { in SetWorkingDirectory()
/openbsd/lib/libc/stdlib/
H A Dmkstemp.c26 mkstemp_cb(const char *path, int flags) in mkstemp_cb()
33 mkostemps(char *path, int slen, int flags) in mkostemps()
43 mkostemp(char *path, int flags) in mkostemp()
54 mkstemp(char *path) in mkstemp()
61 mkstemps(char *path, int slen) in mkstemps()
H A Dmktemp.c23 mktemp_cb(const char *path, int flags) in mktemp_cb()
34 _mktemp(char *path) in _mktemp()
45 mktemp(char *path) in mktemp()
H A Dmkdtemp.c22 mkdtemp_cb(const char *path, int flags) in mkdtemp_cb()
28 mkdtemp(char *path) in mkdtemp()
36 mkdtemps(char *path, int slen) in mkdtemps()
/openbsd/lib/libcurses/tinfo/
H A Daccess.c96 _nc_is_abs_path(const char *path) in _nc_is_abs_path()
111 _nc_pathlast(const char *path) in _nc_pathlast()
126 _nc_basename(char *path) in _nc_basename()
132 _nc_access(const char *path, int mode) in _nc_access()
164 _nc_is_dir_path(const char *path) in _nc_is_dir_path()
177 _nc_is_file_path(const char *path) in _nc_is_file_path()
256 _nc_safe_fopen(const char *path, const char *mode) in _nc_safe_fopen()
272 _nc_safe_open3(const char *path, int flags, mode_t mode) in _nc_safe_open3()
/openbsd/gnu/llvm/lldb/source/Utility/
H A DTraceGDBRemotePackets.cpp18 Path path) { in fromJSON()
34 bool fromJSON(const json::Value &value, TraceStartRequest &packet, Path path) { in fromJSON()
56 bool fromJSON(const json::Value &value, TraceStopRequest &packet, Path path) { in fromJSON()
69 Path path) { in fromJSON()
78 bool fromJSON(const json::Value &value, TraceBinaryData &packet, Path path) { in fromJSON()
87 bool fromJSON(const json::Value &value, TraceThreadState &packet, Path path) { in fromJSON()
99 Path path) { in fromJSON()
120 json::Path path) { in fromJSON()
145 Path path) { in fromJSON()
H A DFileSpec.cpp58 void Denormalize(llvm::SmallVectorImpl<char> &path, FileSpec::Style style) { in Denormalize()
70 FileSpec::FileSpec(llvm::StringRef path, Style style) : m_style(style) { in FileSpec()
74 FileSpec::FileSpec(llvm::StringRef path, const llvm::Triple &triple) in FileSpec()
89 inline char safeCharAtIndex(const llvm::StringRef &path, size_t i) { in safeCharAtIndex()
112 bool needsNormalization(const llvm::StringRef &path) { in needsNormalization()
209 void FileSpec::SetFile(llvm::StringRef path, const llvm::Triple &triple) { in SetFile()
325 std::string path{GetPath(true)}; in Dump() local
366 size_t FileSpec::GetPath(char *path, size_t path_max_len, in GetPath()
386 void FileSpec::GetPath(llvm::SmallVectorImpl<char> &path, in GetPath()
504 llvm::SmallString<64> path; in IsAbsolute() local
H A DTraceIntelPTGDBRemotePackets.cpp32 bool fromJSON(const json::Value &value, JSONUINT64 &uint64, Path path) { in fromJSON()
46 Path path) { in fromJSON()
98 json::Path path) { in fromJSON()
110 json::Path path) { in fromJSON()
/openbsd/gnu/llvm/llvm/lib/Support/
H A DPath.cpp224 namespace path { namespace
226 const_iterator begin(StringRef path, Style style) { in begin()
235 const_iterator end(StringRef path) { in end()
348 StringRef root_path(StringRef path, Style style) { in root_path()
373 StringRef root_name(StringRef path, Style style) { in root_name()
579 StringRef stem(StringRef path, Style style) { in stem()
590 StringRef extension(StringRef path, Style style) { in extension()
657 bool has_stem(const Twine &path, Style style) { in has_stem()
671 bool is_absolute(const Twine &path, Style style) { in is_absolute()
699 bool is_relative(const Twine &path, Style style) { in is_relative()
[all …]
/openbsd/gnu/llvm/lldb/source/Host/common/
H A DFileSystem.cpp139 uint32_t FileSystem::GetPermissions(const Twine &path, in GetPermissions()
184 void FileSystem::EnumerateDirectory(Twine path, bool find_directories, in EnumerateDirectory()
219 SmallString<128> path; in MakeAbsolute() local
231 std::error_code FileSystem::GetRealPath(const Twine &path, in GetRealPath()
236 void FileSystem::Resolve(SmallVectorImpl<char> &path) { in Resolve()
263 SmallString<128> path; in Resolve() local
278 static std::unique_ptr<T> GetMemoryBuffer(const llvm::Twine &path, in GetMemoryBuffer()
309 FileSystem::CreateDataBuffer(const llvm::Twine &path, uint64_t size, in CreateDataBuffer()
350 llvm::StringRef path = *error_or_path; in ResolveExecutableLocation() local
458 auto path = file_spec.GetPath(); in Open() local
[all …]
/openbsd/usr.bin/rsync/
H A Dmktemp.c75 mktemp_internalat(int pfd, char *path, int slen, enum tmpmode mode, in mktemp_internalat()
212 mkstempat(int fd, char *path) in mkstempat()
224 mkstemplinkat(char *link, int fd, char *path) in mkstemplinkat()
239 mkstempfifoat(int fd, char *path) in mkstempfifoat()
254 mkstempnodat(int fd, char *path, mode_t mode, dev_t dev) in mkstempnodat()
270 mkstempsock(const char *root, char *path) in mkstempsock()
286 mktemplate(char **ret, const char *path, int recursive) in mktemplate()
/openbsd/gnu/llvm/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTJSONStructs.cpp44 bool fromJSON(const json::Value &value, JSONModule &module, Path path) { in fromJSON()
59 bool fromJSON(const json::Value &value, JSONThread &thread, Path path) { in fromJSON()
73 bool fromJSON(const json::Value &value, JSONProcess &process, Path path) { in fromJSON()
87 bool fromJSON(const json::Value &value, JSONCpu &cpu, Path path) { in fromJSON()
106 bool fromJSON(const json::Value &value, pt_cpu &cpu_info, Path path) { in fromJSON()
128 bool fromJSON(const json::Value &value, JSONKernel &kernel, Path path) { in fromJSON()
147 JSONTraceBundleDescription &bundle_description, Path path) { in fromJSON()
/openbsd/gnu/llvm/lld/COFF/
H A DDriver.cpp464 SmallString<128> path = dir; in doFindFile() local
489 StringRef path = doFindFile(filename); in findFile() local
537 StringRef path = doFindLib(filename); in findLib() local
635 std::string path; in addWinSysRootLibSearchPaths() local
649 StringRef path; in addLibSearchPaths() local
797 for (StringRef path : searchPaths) { in createResponseFile() local
802 for (StringRef path : filePaths) in createResponseFile() local
944 std::string path = getImplibPath(); in createImportLibrary() local
984 void LinkerDriver::parseModuleDefs(StringRef path) { in parseModuleDefs()
1077 StringRef path = arg.substr(1); in parseOrderFile() local
[all …]
/openbsd/gnu/llvm/compiler-rt/include/sanitizer/
H A Dnetbsd_syscall_hooks.h61 #define __sanitizer_syscall_pre_open(path, flags, mode) \ argument
64 #define __sanitizer_syscall_post_open(res, path, flags, mode) \ argument
80 #define __sanitizer_syscall_pre_compat_43_ocreat(path, mode) \ argument
83 #define __sanitizer_syscall_post_compat_43_ocreat(res, path, mode) \ argument
86 #define __sanitizer_syscall_pre_link(path, link) \ argument
88 #define __sanitizer_syscall_post_link(res, path, link) \ argument
90 #define __sanitizer_syscall_pre_unlink(path) \ argument
92 #define __sanitizer_syscall_post_unlink(res, path) \ argument
95 #define __sanitizer_syscall_pre_chdir(path) \ argument
97 #define __sanitizer_syscall_post_chdir(res, path) \ argument
[all …]
/openbsd/gnu/llvm/lld/MachO/
H A DDriverUtils.cpp151 for (StringRef path : args::getLines(*buffer)) in createResponseFile() local
182 static void searchedDylib(const Twine &path, bool found) { in searchedDylib()
212 CachedHashStringRef path(mbref.getBufferIdentifier()); in loadDylib() local
277 StringRef macho::rerootPath(StringRef path) { in rerootPath()
288 uint32_t macho::getModTime(StringRef path) { in getModTime()
308 macho::DependencyTracker::DependencyTracker(StringRef path) in DependencyTracker()
330 auto addDep = [&os](DepOpCode opcode, const StringRef &path) { in write()
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/scripts/
H A Dsancov.py50 def ReadMagicAndReturnBitness(f, path): argument
64 def ReadOneFile(path): argument
110 def UnpackOneFile(path): argument
137 def UnpackOneRawFile(path, map_path): argument
/openbsd/bin/ksh/
H A Dpath.c113 simplify_path(char *path) in simplify_path()
180 set_current_wd(char *path) in set_current_wd()
198 get_phys_path(const char *path) in get_phys_path()
218 do_phys_path(XString *xsp, char *xp, const char *path) in do_phys_path()
/openbsd/gnu/llvm/llvm/utils/lit/lit/
H A Ddiscovery.py19 def dirContainsTestSuite(path, lit_config): argument
34 def search1(path): argument
70 def search(path): argument
127 def getTests(path, litConfig, testSuiteCache, argument
/openbsd/usr.sbin/smtpd/
H A Dqueue_fs.c108 queue_fs_message_commit(uint32_t msgid, const char *path) in queue_fs_message_commit()
165 char path[PATH_MAX]; in queue_fs_message_fd_r() local
183 char path[PATH_MAX]; in queue_fs_message_delete() local
202 char path[PATH_MAX]; in queue_fs_envelope_create() local
310 char path[PATH_MAX]; in queue_fs_message_walk() local
476 const char *path = do_atomic ? PATH_EVPTMP : dest; in fsqueue_envelope_dump() local
550 char path[PATH_MAX]; in fsqueue_qwalk_new() local
633 char path[PATH_MAX]; in queue_fs_init() local
/openbsd/gnu/usr.sbin/mkhybrid/src/
H A Dfiles.c58 char *path; member
79 FDECL2(add_one_file, char *, addpath, char *, path ) in FDECL2() argument
229 FDECL3(look_up_addition,char **, newpath, char *,path, struct dirent **,de) in FDECL3() argument
278 FDECL2(nuke_duplicates, char *, path, struct dirent **,de) in FDECL2() argument
323 FDECL3(readdir_add_files, char **, pathp, char *,path, DIR *, dir){ in FDECL3() argument
359 FDECL3(readdir_add_files, char **, pathp, char *,path, DIR *, dir){ in FDECL3() argument
/openbsd/sys/net/
H A Dpf_ruleset.c114 pf_find_anchor(const char *path) in pf_find_anchor()
128 pf_find_ruleset(const char *path) in pf_find_ruleset()
144 pf_get_leaf_ruleset(char *path, char **path_remainder) in pf_get_leaf_ruleset()
244 pf_find_or_create_ruleset(const char *path) in pf_find_or_create_ruleset()
325 char *p, *path; in pf_anchor_setup() local
/openbsd/gnu/usr.bin/perl/amigaos4/
H A Damigaos.h28 #define execve(path, argv, env) myexecve(TRUE, path, argv, env) argument
30 #define execv(path, argv) myexecv(TRUE, path, argv) argument
31 #define execl(path, ...) myexecl(TRUE, path, __VA_ARGS__) argument
/openbsd/gnu/llvm/libcxx/src/filesystem/
H A Dposix_compat.h211 int stat_file(const wchar_t *path, StatT *buf, DWORD flags) { in stat_file()
219 int stat(const wchar_t *path, StatT *buf) { return stat_file(path, buf, 0); } in stat()
221 int lstat(const wchar_t *path, StatT *buf) { in lstat()
230 int mkdir(const wchar_t *path, int permissions) { in mkdir()
266 int remove(const wchar_t *path) { in remove()
292 int truncate(const wchar_t *path, off_t length) { in truncate()
311 int chdir(const wchar_t *path) { return _wchdir(path); } in chdir()
348 wchar_t *realpath(const wchar_t *path, wchar_t *resolved_name) { in realpath()
403 int fchmodat(int fd, const wchar_t *path, int perms, int flag) { in fchmodat()
438 SSizeT readlink(const wchar_t *path, wchar_t *ret_buf, size_t bufsize) { in readlink()
/openbsd/usr.bin/make/
H A Ddirexpand.c92 PathMatchFilesi(const char *word, const char *eword, Lst path, Lst expansions) in PathMatchFilesi()
112 DirExpandWildi(const char *word, const char *eword, Lst path, Lst expansions) in DirExpandWildi()
182 DirExpandCurlyi(const char *word, const char *eword, Lst path, Lst expansions) in DirExpandCurlyi()
274 Dir_Expandi(const char *word, const char *eword, Lst path, Lst expansions) in Dir_Expandi()

12345678910>>...37