| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/android/ |
| H A D | cloexec-open.cpp | 17 extern "C" int openat(int dirfd, const char *pathname, int flags, ...); 100 int open(const char *pathname, int flags, ...); 101 int open64(const char *pathname, int flags, ...); 102 int openat(int dirfd, const char *pathname, int flags, ...); 162 int open(const char *pathname, int flags, ...); 163 int open64(const char *pathname, int flags, ...); 164 int openat(int dirfd, const char *pathname, int flags, ...);
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | std-c-library-functions-POSIX.c | 126 int access(const char *pathname, int amode); 127 int faccessat(int dirfd, const char *pathname, int mode, int flags); 139 int creat(const char *pathname, mode_t mode); 156 int mkdir(const char *pathname, mode_t mode); 157 int mkdirat(int dirfd, const char *pathname, mode_t mode); 159 int mknod(const char *pathname, mode_t mode, dev_t dev); 160 int mknodat(int dirfd, const char *pathname, mode_t mode, dev_t dev); 162 int fchmodat(int dirfd, const char *pathname, mode_t mode, int flags); 166 int fchownat(int dirfd, const char *pathname, uid_t owner, gid_t group, int flags); 170 int rmdir(const char *pathname); [all …]
|
| /llvm-project-15.0.7/clang/test/Analysis/scan-build/ |
| H A D | cxx-name.test | 6 consumed by ccc-analyzer) to an appropriate pathname for the clang++ executable, 7 derived from the pathname of the clang executable:
|
| /llvm-project-15.0.7/lldb/scripts/ |
| H A D | use_lldb_suite.py | 20 fp, pathname, desc = imp.find_module("use_lldb_suite_root", [lldb_root]) variable 22 imp.load_module("use_lldb_suite_root", fp, pathname, desc)
|
| /llvm-project-15.0.7/lldb/test/API/ |
| H A D | use_lldb_suite.py | 22 fp, pathname, desc = imp.find_module("use_lldb_suite_root", [lldb_root]) variable 24 imp.load_module("use_lldb_suite_root", fp, pathname, desc)
|
| /llvm-project-15.0.7/lldb/source/Host/freebsd/ |
| H A D | Host.cpp | 72 char pathname[MAXPATHLEN]; in GetFreeBSDProcessArgs() local 73 size_t pathname_len = sizeof(pathname); in GetFreeBSDProcessArgs() 75 if (::sysctl(mib, 4, pathname, &pathname_len, NULL, 0) == 0) in GetFreeBSDProcessArgs() 76 process_info.GetExecutableFile().SetFile(pathname, FileSpec::Style::native); in GetFreeBSDProcessArgs()
|
| /llvm-project-15.0.7/llvm/utils/unittest/googletest/include/gtest/internal/ |
| H A D | gtest-filepath.h | 71 explicit FilePath(const std::string& pathname) : pathname_(pathname) { in FilePath() argument
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | FileSpec.cpp | 167 void FileSpec::SetFile(llvm::StringRef pathname) { SetFile(pathname, m_style); } in SetFile() argument 172 void FileSpec::SetFile(llvm::StringRef pathname, Style style) { in SetFile() argument 178 if (pathname.empty()) in SetFile() 181 llvm::SmallString<128> resolved(pathname); in SetFile()
|
| /llvm-project-15.0.7/bolt/runtime/ |
| H A D | common.h | 321 uint64_t __open(const char *pathname, uint64_t flags, uint64_t mode) { in __open() argument 326 : "D"(pathname), "S"(flags), "d"(mode) in __open() 350 uint64_t __readlink(const char *pathname, char *buf, size_t bufsize) { in __readlink() argument 355 : "D"(pathname), "S"(buf), "d"(bufsize) in __readlink()
|
| /llvm-project-15.0.7/compiler-rt/include/sanitizer/ |
| H A D | linux_syscall_hooks.h | 694 __sanitizer_syscall_pre_impl_unlink((long)(pathname)) 696 __sanitizer_syscall_post_impl_unlink(res, (long)(pathname)) 1032 __sanitizer_syscall_pre_impl_rmdir((long)(pathname)) 1034 __sanitizer_syscall_post_impl_rmdir(res, (long)(pathname)) 2404 void __sanitizer_syscall_pre_impl_unlink(long pathname); 2463 void __sanitizer_syscall_pre_impl_creat(long pathname, long mode); 2587 void __sanitizer_syscall_pre_impl_mkdir(long pathname, long mode); 2593 void __sanitizer_syscall_pre_impl_rmdir(long pathname); 2594 void __sanitizer_syscall_post_impl_rmdir(long res, long pathname); 3038 long pathname); [all …]
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_common_nolibc.cpp | 28 bool CreateDir(const char *pathname) { return false; } in CreateDir() argument
|
| H A D | sanitizer_linux_libcdep.cpp | 929 const char *pathname = "/proc/self/exe"; in ReExec() local 943 pathname = path; in ReExec() 945 pathname = getexecname(); in ReExec() 946 CHECK_NE(pathname, NULL); in ReExec() 950 pathname = reinterpret_cast<const char *>(getauxval(AT_EXECFN)); in ReExec() 953 uptr rv = internal_execve(pathname, GetArgv(), GetEnviron()); in ReExec()
|
| H A D | sanitizer_common_syscalls.inc | 1293 if (pathname) 1294 PRE_READ(pathname, 1496 if (pathname) 1497 PRE_READ(pathname, 1806 if (pathname) 1807 PRE_READ(pathname, 1826 if (pathname) 1827 PRE_READ(pathname, 2717 if (pathname) 2718 PRE_READ(pathname, [all …]
|
| H A D | sanitizer_file.h | 85 bool CreateDir(const char *pathname);
|
| H A D | sanitizer_posix_libcdep.cpp | 154 bool CreateDir(const char *pathname) { return mkdir(pathname, 0755) == 0; } in CreateDir() argument
|
| H A D | sanitizer_win.cpp | 594 bool CreateDir(const char *pathname) { in CreateDir() argument 595 return CreateDirectoryA(pathname, nullptr) != 0; in CreateDir()
|
| /llvm-project-15.0.7/clang/test/Sema/ |
| H A D | enable_if.c | 10 int open(const char *pathname, int flags) __attribute__((enable_if(!(flags & O_CREAT), "must specif… 11 int open(const char *pathname, int flags, mode_t mode) __attribute__((overloadable)); // expected-…
|
| /llvm-project-15.0.7/lld/test/ELF/linkerscript/ |
| H A D | input-relative.s | 2 ## For a relative pathname in INPUT() or GROUP(), the parent directory of 14 ## A relative pathname is relative to the parent directory of the current linker script.
|
| /llvm-project-15.0.7/compiler-rt/lib/msan/ |
| H A D | msan_interceptors.cpp | 710 INTERCEPTOR(int, fstatat, int fd, char *pathname, void *buf, int flags) { in INTERCEPTOR() argument 712 int res = REAL(fstatat)(fd, pathname, buf, flags); in INTERCEPTOR() 722 INTERCEPTOR(int, fstatat64, int fd, char *pathname, void *buf, int flags) { in INTERCEPTOR() argument 724 int res = REAL(fstatat64)(fd, pathname, buf, flags); in INTERCEPTOR() 735 INTERCEPTOR(int, __fxstatat, int magic, int fd, char *pathname, void *buf, in INTERCEPTOR() argument 738 int res = REAL(__fxstatat)(magic, fd, pathname, buf, flags); in INTERCEPTOR() 748 INTERCEPTOR(int, __fxstatat64, int magic, int fd, char *pathname, void *buf, in INTERCEPTOR() argument 751 int res = REAL(__fxstatat64)(magic, fd, pathname, buf, flags); in INTERCEPTOR()
|
| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | CompileUnit.cpp | 21 const char *pathname, const lldb::user_id_t cu_sym_id, in CompileUnit() argument 24 : CompileUnit(module_sp, user_data, FileSpec(pathname), cu_sym_id, language, in CompileUnit()
|
| /llvm-project-15.0.7/lldb/include/lldb/Symbol/ |
| H A D | CompileUnit.h | 78 const char *pathname, lldb::user_id_t uid,
|
| /llvm-project-15.0.7/lldb/examples/customization/import-python/ |
| H A D | README | 13 module given its full pathname.
|
| /llvm-project-15.0.7/clang/test/Analysis/Inputs/ |
| H A D | system-header-simulator.h | 47 FILE *freopen(const char *pathname, const char *mode, FILE *stream);
|
| /llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPython.cpp | 2629 const char *pathname, const LoadScriptOptions &options, in LoadScriptingModule() argument 2639 if (!pathname || !pathname[0]) { in LoadScriptingModule() 2689 std::string module_name(pathname); in LoadScriptingModule() 2698 FileSpec module_file(pathname); in LoadScriptingModule() 2709 if (strchr(pathname, '\\') || strchr(pathname, '/')) { in LoadScriptingModule() 2710 error.SetErrorStringWithFormatv("invalid pathname '{0}'", pathname); in LoadScriptingModule() 2717 error.SetErrorStringWithFormatv("invalid directory name '{0}'", pathname); in LoadScriptingModule()
|
| /llvm-project-15.0.7/lldb/tools/lldb-vscode/ |
| H A D | README.md | 90 …Each element in the array must be a two element array containing a source and destination pathname.
|