Searched refs:fpath (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/tools/win/split_link/
H A Dinstall_split_link.py15 def IsExe(fpath):
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/
H A Dllvm-mc-shell.py12 def is_exe(fpath):
13 """Check whether fpath is an executable."""
14 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
18 fpath, fname = os.path.split(program)
19 if fpath:
H A Drun-until-faulted.py12 def is_exe(fpath):
13 """Check whether fpath is an executable."""
14 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
18 fpath, fname = os.path.split(program)
19 if fpath:
H A Ddisasm.py13 def is_exe(fpath):
14 """Check whether fpath is an executable."""
15 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
19 fpath, fname = os.path.split(program)
20 if fpath:
/external/llvm/utils/
H A Dwciia.py72 def find_owners(fpath):
82 if fpath == path:
89 if len(fpath) < len(path):
90 rpos = path.find(fpath)
H A Dllvm-compilers-check116 def is_executable(fpath):
117 return os.path.exists(fpath) and os.access(fpath, os.X_OK)
/external/chromium_org/tools/android/ps_ext/
H A Dps_ext.c114 char fpath[32]; local
118 sprintf(fpath, "/proc/%d/cmdline", pid);
119 f = fopen(fpath, "r");
136 sprintf(fpath, "/proc/%d/stat", pid);
137 f = fopen(fpath, "r");
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dfiles.py93 def match(self, fpath):
94 """Does `fpath` indicate a file in one of our trees?"""
96 if fpath.startswith(d):
97 if fpath == d:
100 if fpath[len(d)] == os.sep:
114 def match(self, fpath):
115 """Does `fpath` match one of our filename patterns?"""
117 if fnmatch.fnmatch(fpath, pat):
/external/libcap-ng/libcap-ng-0.7/utils/
H A Dfilecap.c44 static int check_file(const char *fpath, argument
52 int fd = open(fpath, O_RDONLY|O_CLOEXEC);
64 printf("%s ", fpath);
/external/lldb/test/benchmarks/disassembly/
H A DTestDisassembly.py9 def is_exe(fpath):
10 """Returns true if fpath is an executable."""
11 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
/external/mksh/src/
H A Dexec.c707 if (!tp->u.fpath) {
714 if (include(tp->u.fpath, 0, NULL, false) < 0) {
717 tp->u.fpath, cstrerror(errno));
724 "function not defined by", tp->u.fpath);
1085 char *fpath; local
1104 if ((fpath = str_val(global("FPATH"))) == null) {
1105 tp->u.fpath = NULL;
1108 tp->u.fpath = search_path(name, fpath, R_OK,
1149 (fpath
[all...]
H A Dfuncs.c578 if (tp->u.fpath)
580 tp->u.fpath);
H A Dedit.c456 char *pat, *fpath; local
473 if ((fpath = str_val(global("FPATH"))) != null)
474 glob_path(flags, pat, &w, fpath);
H A Dsh.h1099 const char *fpath; /* temporary path to undef function */ member in union:tbl::__anon27187
/external/lldb/test/
H A Dlldbutil.py15 def is_exe(fpath):
16 """Returns True if fpath is an executable."""
17 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
21 fpath, fname = os.path.split(program)
22 if fpath:
H A Ddotest.py54 def is_exe(fpath):
55 """Returns true if fpath is an executable."""
56 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
60 fpath, fname = os.path.split(program)
61 if fpath:
H A Dlldbtest.py184 def is_exe(fpath):
185 """Returns true if fpath is an executable."""
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/
H A Dimage_operations_unittest.cc202 const base::FilePath fpath(path);
204 base::WriteFile(fpath, reinterpret_cast<const char*>(&png[0]),
/external/chromium_org/
H A 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)))

Completed in 435 milliseconds