Home
last modified time | relevance | path

Searched refs:current_path (Results 1 – 24 of 24) sorted by relevance

/third_party/elfutils/src/
Delfclassify.c46 static const char *current_path; variable
60 if (current_path == NULL) in issue()
63 error (0, e, "%s '%s'", msg, current_path); in issue()
73 error (0, 0, "%s: %s: '%s'", msg, elf_errmsg (-1), current_path); in elf_issue()
84 fprintf (stderr, "debug: processing file: %s\n", current_path); in open_file()
86 file_fd = open (current_path, O_RDONLY | (flag_only_regular_files in open_file()
235 fprintf (stderr, "info: %s: ELF kind: %s (0x%x)\n", current_path, in run_classify()
391 fprintf (stderr, "info: %s: ELF type: %s (0x%x)\n", current_path, in run_classify()
394 fprintf (stderr, "info: %s: PT_LOAD found\n", current_path); in run_classify()
396 fprintf (stderr, "info: %s: has sections\n", current_path); in run_classify()
[all …]
/third_party/node/test/testpy/
D__init__.py107 def ListTests(self, current_path, path, arch, mode): argument
108 all_tests = [current_path + [t] for t in self.Ls(os.path.join(self.root))]
126 def ListTests(self, current_path, path, arch, mode): argument
128 current_path, path, arch, mode)
149 def ListTests(self, current_path, path, arch, mode): argument
150 all_tests = [current_path + t for t in self.Ls(os.path.join(self.root))]
164 def ListTests(self, current_path, path, arch, mode): argument
166 current_path, path, arch, mode)
/third_party/gn/src/gn/
Dcommand_path.cc185 PathVector current_path = work_queue.front(); in BreadthFirstSearch() local
188 const Target* current_target = current_path.back().first; in BreadthFirstSearch()
193 PrintPath(current_path, DepType::NONE); in BreadthFirstSearch()
198 InsertTargetsIntoFoundPaths(current_path, DepType::NONE, stats); in BreadthFirstSearch()
210 PrintPath(current_path, found_current_target->second); in BreadthFirstSearch()
214 InsertTargetsIntoFoundPaths(current_path, found_current_target->second, in BreadthFirstSearch()
228 work_queue.push_back(current_path); in BreadthFirstSearch()
235 work_queue.push_back(current_path); in BreadthFirstSearch()
243 work_queue.push_back(current_path); in BreadthFirstSearch()
/third_party/jerryscript/jerry-core/api/
Dgenerate-bytecode.c388 EXECRES visit_directory(dir_node **end, char* current_path, EXECRES (*call_back)(char*, char*)) { in visit_directory() argument
394 if ((dir = (DIR*)opendir(current_path)) == NULL) { in visit_directory()
402 if ((input_file_path = splice_path(current_path, filename)) == NULL) { in visit_directory()
438 char* current_path = NULL; in visit_pending_directories() local
441 current_path = curr->dir_name; in visit_pending_directories()
442 EXECRES visit_res = visit_directory(end, current_path, call_back); in visit_pending_directories()
522 char* current_path = NULL; in walk_del_bytecode() local
558 current_path = curr->dir_name; in walk_del_bytecode()
559 if ((dir = (DIR*)opendir(current_path)) == NULL) { in walk_del_bytecode()
570 if ((input_file_path = splice_path(current_path, filename)) == NULL) { in walk_del_bytecode()
/third_party/gn/src/base/
Dvalues.cc684 std::string_view current_path(path); in Set() local
686 for (size_t delimiter_position = current_path.find('.'); in Set()
688 delimiter_position = current_path.find('.')) { in Set()
690 std::string_view key = current_path.substr(0, delimiter_position); in Set()
699 current_path = current_path.substr(delimiter_position + 1); in Set()
703 ->SetWithoutPathExpansion(current_path, std::move(in_value)); in Set()
751 std::string_view current_path(path); in Get() local
753 for (size_t delimiter_position = current_path.find('.'); in Get()
755 delimiter_position = current_path.find('.')) { in Get()
758 current_path.substr(0, delimiter_position), &child_dictionary)) { in Get()
[all …]
/third_party/gn/src/base/files/
Dfile_util_posix.cc625 FilePath current_path = base; in VerifyPathControlledByUser() local
626 if (!VerifySpecificPathControlledByUser(current_path, owner_uid, group_gids)) in VerifyPathControlledByUser()
630 current_path = current_path.Append(*ip); in VerifyPathControlledByUser()
631 if (!VerifySpecificPathControlledByUser(current_path, owner_uid, in VerifyPathControlledByUser()
/third_party/node/test/message/
Dtestcfg.py121 def ListTests(self, current_path, path, arch, mode): argument
122 all_tests = [current_path + [t] for t in self.Ls(self.root)]
/third_party/node/test/pseudo-tty/
Dtestcfg.py139 def ListTests(self, current_path, path, arch, mode): argument
140 all_tests = [current_path + [t] for t in self.Ls(self.root)]
/third_party/protobuf/src/google/protobuf/util/
Dfield_mask_util.cc319 std::string current_path = in MergeToFieldMask() local
321 MergeToFieldMask(current_path, it->second, out); in MergeToFieldMask()
444 std::string current_path = in MergeLeafNodesToTree() local
446 MergeLeafNodesToTree(current_path, it->second, out); in MergeLeafNodesToTree()
/third_party/node/tools/
Dtest.py865 def AddTestsToList(self, result, current_path, path, context, arch, mode): argument
866 tests = self.GetConfiguration(context).ListTests(current_path, path,
890 def ListTests(self, current_path, path, context, arch, mode): argument
896 full_path = current_path + [test_name]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DPath.inc79 CurPathLen = 0; // No contribution from current_path needed.
92 if (std::error_code EC = llvm::sys::fs::current_path(CurPath))
181 std::error_code current_path(SmallVectorImpl<char> &result) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DFileSystem.h358 std::error_code current_path(SmallVectorImpl<char> &result);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/
DPath.inc81 CurPathLen = 0; // No contribution from current_path needed.
94 if (std::error_code EC = llvm::sys::fs::current_path(CurPath))
192 std::error_code current_path(SmallVectorImpl<char> &result) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DFileSystem.h380 std::error_code current_path(SmallVectorImpl<char> &result);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DVirtualFileSystem.cpp246 if (llvm::sys::fs::current_path(PWD)) in RealFileSystem()
312 if (std::error_code EC = llvm::sys::fs::current_path(Dir)) in getCurrentWorkingDirectory()
DCommandLine.cpp1157 llvm::sys::fs::current_path(CurrDir); in ExpandResponseFiles()
1227 llvm::sys::fs::current_path(AbsPath); in readConfigFile()
DPath.cpp931 if (std::error_code ec = current_path(current_dir)) in make_absolute()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DPath.cpp826 else if (std::error_code ec = current_path(current_dir)) in make_absolute()
DCommandLine.cpp933 llvm::sys::fs::current_path(curr_dir); in ExpandResponseFile()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp557 if (sys::fs::current_path(CurPath)) return FName; in mangleName()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DPath.inc225 std::error_code current_path(SmallVectorImpl<char> &result) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
DPath.inc320 std::error_code current_path(SmallVectorImpl<char> &result) {
/third_party/libabigail/tests/data/test-read-dwarf/
Dtest9-pr18818-clang.so.abi4213 …<function-decl name='current_path' mangled-name='_ZN5boost10filesystem12current_pathEv' filepath='…
4302 …<function-decl name='current_path' mangled-name='_ZN5boost10filesystem6detail12current_pathEPNS_6s…
4306 …<function-decl name='current_path' mangled-name='_ZN5boost10filesystem6detail12current_pathERKNS0_…
Dtest10-pr18818-gcc.so.abi5944 …<function-decl name='current_path' mangled-name='_ZN5boost10filesystem12current_pathEv' filepath='…
6047 …<function-decl name='current_path' mangled-name='_ZN5boost10filesystem6detail12current_pathEPNS_6s…
6051 …<function-decl name='current_path' mangled-name='_ZN5boost10filesystem6detail12current_pathERKNS0_…