Home
last modified time | relevance | path

Searched refs:fpath (Results 1 – 21 of 21) sorted by relevance

/external/chromium_org/tools/win/split_link/
Dinstall_split_link.py15 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/
Dllvm-mc-shell.py12 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:
Drun-until-faulted.py12 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:
Ddisasm.py13 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/
Dps_ext.c114 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/
Dfiles.py93 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/
Dwciia.py72 def find_owners(fpath): argument
82 if fpath == path:
89 if len(fpath) < len(path):
90 rpos = path.find(fpath)
Dllvm-compilers-check116 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/
Dfilecap.c44 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/
DCMakeLists.txt103 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/
DTestDisassembly.py9 def is_exe(fpath): argument
11 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
/external/mksh/src/
Dexec.c707 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 …]
Dedit.c456 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()
Dfuncs.c578 if (tp->u.fpath) in c_whence()
580 tp->u.fpath); in c_whence()
Dsh.h1099 const char *fpath; /* temporary path to undef function */ member
/external/lldb/test/
Dlldbutil.py15 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:
Ddotest.py54 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:
Dlldbtest.py184 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/
Dimage_operations_unittest.cc202 const base::FilePath fpath(path); in SaveBitmapToPNG() local
204 base::WriteFile(fpath, reinterpret_cast<const char*>(&png[0]), in SaveBitmapToPNG()
/external/chromium_org/
DPRESUBMIT.py1223 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/
Dtestfilerunner.m197 char fpath[1024];
205 sprintf(fpath, "DYLD_FRAMEWORK_PATH=%s", frameworkPath);
206 myenv[counter++] = fpath;