/external/chromium_org/tools/win/split_link/ |
D | install_split_link.py | 15 def IsExe(fpath): argument 16 return os.path.isfile(fpath) and os.access(fpath, os.X_OK) 20 fpath, _ = os.path.split(program) 21 if fpath:
|
/external/lldb/utils/test/ |
D | llvm-mc-shell.py | 12 def is_exe(fpath): argument 14 return os.path.isfile(fpath) and os.access(fpath, os.X_OK) 18 fpath, fname = os.path.split(program) 19 if fpath:
|
D | run-until-faulted.py | 12 def is_exe(fpath): argument 14 return os.path.isfile(fpath) and os.access(fpath, os.X_OK) 18 fpath, fname = os.path.split(program) 19 if fpath:
|
D | disasm.py | 13 def is_exe(fpath): argument 15 return os.path.isfile(fpath) and os.access(fpath, os.X_OK) 19 fpath, fname = os.path.split(program) 20 if fpath:
|
/external/chromium_org/tools/android/ps_ext/ |
D | ps_ext.c | 114 char fpath[32]; in dump_proc_stats() local 118 sprintf(fpath, "/proc/%d/cmdline", pid); in dump_proc_stats() 119 f = fopen(fpath, "r"); in dump_proc_stats() 136 sprintf(fpath, "/proc/%d/stat", pid); in dump_proc_stats() 137 f = fopen(fpath, "r"); in dump_proc_stats()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
D | files.py | 93 def match(self, fpath): argument 96 if fpath.startswith(d): 97 if fpath == d: 100 if fpath[len(d)] == os.sep: 114 def match(self, fpath): argument 117 if fnmatch.fnmatch(fpath, pat):
|
/external/llvm/utils/ |
D | wciia.py | 72 def find_owners(fpath): argument 82 if fpath == path: 89 if len(fpath) < len(path): 90 rpos = path.find(fpath)
|
D | llvm-compilers-check | 116 def is_executable(fpath): argument 117 return os.path.exists(fpath) and os.access(fpath, os.X_OK)
|
/external/libcap-ng/libcap-ng-0.7/utils/ |
D | filecap.c | 44 static int check_file(const char *fpath, in check_file() argument 52 int fd = open(fpath, O_RDONLY|O_CLOEXEC); in check_file() 64 printf("%s ", fpath); in check_file()
|
/external/libcxx/ |
D | CMakeLists.txt | 103 foreach(fpath ${LIBCXX_ABILIB_FILES}) 106 if (EXISTS "${incpath}/${fpath}") 108 get_filename_component(dstdir ${fpath} PATH) 109 get_filename_component(ifile ${fpath} NAME) 113 "${incpath}/${fpath}" 115 MAIN_DEPENDENCY "${incpath}/${fpath}" 123 message(FATAL_ERROR "Failed to find ${fpath}")
|
/external/lldb/test/benchmarks/disassembly/ |
D | TestDisassembly.py | 9 def is_exe(fpath): argument 11 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
|
/external/mksh/src/ |
D | exec.c | 707 if (!tp->u.fpath) { in comexec() 714 if (include(tp->u.fpath, 0, NULL, false) < 0) { in comexec() 717 tp->u.fpath, cstrerror(errno)); in comexec() 724 "function not defined by", tp->u.fpath); in comexec() 1085 char *fpath; in findcom() local 1104 if ((fpath = str_val(global("FPATH"))) == null) { in findcom() 1105 tp->u.fpath = NULL; in findcom() 1108 tp->u.fpath = search_path(name, fpath, R_OK, in findcom() 1149 (fpath = str_val(global("FPATH"))) != null && in findcom() 1150 (npath.ro = search_path(name, fpath, R_OK, in findcom() [all …]
|
D | edit.c | 456 char *pat, *fpath; in x_command_glob() local 473 if ((fpath = str_val(global("FPATH"))) != null) in x_command_glob() 474 glob_path(flags, pat, &w, fpath); in x_command_glob()
|
D | funcs.c | 578 if (tp->u.fpath) in c_whence() 580 tp->u.fpath); in c_whence()
|
D | sh.h | 1099 const char *fpath; /* temporary path to undef function */ member
|
/external/lldb/test/ |
D | lldbutil.py | 15 def is_exe(fpath): argument 17 return os.path.isfile(fpath) and os.access(fpath, os.X_OK) 21 fpath, fname = os.path.split(program) 22 if fpath:
|
D | dotest.py | 54 def is_exe(fpath): argument 56 return os.path.isfile(fpath) and os.access(fpath, os.X_OK) 60 fpath, fname = os.path.split(program) 61 if fpath:
|
D | lldbtest.py | 184 def is_exe(fpath): argument 186 return os.path.isfile(fpath) and os.access(fpath, os.X_OK) 190 fpath, fname = os.path.split(program) 191 if fpath:
|
/external/chromium_org/skia/ext/ |
D | image_operations_unittest.cc | 202 const base::FilePath fpath(path); in SaveBitmapToPNG() local 204 base::WriteFile(fpath, reinterpret_cast<const char*>(&png[0]), in SaveBitmapToPNG()
|
/external/chromium_org/ |
D | PRESUBMIT.py | 1223 for fpath in input_api.AffectedFiles(file_filter=file_filter): 1224 for line_num, line in fpath.ChangedContents(): 1229 (fpath.LocalPath(), line_num, deprecated_value, value)))
|
/external/compiler-rt/test/BlocksRuntime/ |
D | testfilerunner.m | 197 char fpath[1024]; 205 sprintf(fpath, "DYLD_FRAMEWORK_PATH=%s", frameworkPath); 206 myenv[counter++] = fpath;
|