HomeSort by relevance Sort by last modified time
    Searched refs:fpath (Results 1 - 23 of 23) sorted by null

  /bionic/tests/
ftw_test.cpp 24 void sanity_check_ftw(const char* fpath, const struct stat* sb, int tflag) {
25 ASSERT_TRUE(fpath != NULL);
32 const char* fpath, const struct stat* sb, int tflag, struct FTW* ftwbuf) {
33 sanity_check_ftw(fpath, sb, tflag);
40 int check_ftw(const char* fpath, const struct stat* sb, int tflag) {
41 sanity_check_ftw(fpath, sb, tflag);
45 int check_ftw64(const char* fpath, const struct stat64* sb, int tflag) {
46 sanity_check_ftw(fpath, reinterpret_cast<const struct stat*>(sb), tflag);
51 const char* fpath, const struct stat* sb, int tflag, struct FTW* ftwbuf) {
52 sanity_check_nftw(fpath, sb, tflag, ftwbuf)
    [all...]
  /external/chromium_org/tools/win/split_link/
install_split_link.py 15 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/
llvm-mc-shell.py 12 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:
run-until-faulted.py 12 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:
disasm.py 13 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/
wciia.py 72 def find_owners(fpath):
82 if fpath == path:
89 if len(fpath) < len(path):
90 rpos = path.find(fpath)
llvm-compilers-check 116 def is_executable(fpath):
117 return os.path.exists(fpath) and os.access(fpath, os.X_OK)
  /external/chromium_org/tools/android/ps_ext/
ps_ext.c 114 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/
files.py 93 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/
filecap.c 44 static int check_file(const char *fpath,
52 int fd = open(fpath, O_RDONLY|O_CLOEXEC);
64 printf("%s ", fpath);
  /external/lldb/test/benchmarks/disassembly/
TestDisassembly.py 9 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)
  /packages/apps/Browser/src/com/android/browser/homepages/
HomeProvider.java 116 String fpath = url.substring(7); local
117 File f = new File(fpath);
  /external/mksh/src/
exec.c 707 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
1090 /* prevent FPATH search below */
1104 if ((fpath = str_val(global("FPATH"))) == null) {
1105 tp->u.fpath = NULL;
1108 tp->u.fpath = search_path(name, fpath, R_OK
    [all...]
funcs.c 578 if (tp->u.fpath)
580 tp->u.fpath);
    [all...]
edit.c 456 char *pat, *fpath; local
473 if ((fpath = str_val(global("FPATH"))) != null)
474 glob_path(flags, pat, &w, fpath);
    [all...]
sh.h 1099 const char *fpath; /* temporary path to undef function */ member in union:tbl::__anon31786
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_zipfile.py 393 for fpath, fdata in SMALL_TEST_DATA:
394 zipfp.writestr(fpath, fdata)
397 for fpath, fdata in SMALL_TEST_DATA:
398 writtenfile = zipfp.extract(fpath)
401 correctfile = os.path.join(os.getcwd(), fpath)
415 for fpath, fdata in SMALL_TEST_DATA:
416 zipfp.writestr(fpath, fdata)
420 for fpath, fdata in SMALL_TEST_DATA:
421 outfile = os.path.join(os.getcwd(), fpath)
565 for fpath, fdata in SMALL_TEST_DATA
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_zipfile.py 393 for fpath, fdata in SMALL_TEST_DATA:
394 zipfp.writestr(fpath, fdata)
397 for fpath, fdata in SMALL_TEST_DATA:
398 writtenfile = zipfp.extract(fpath)
401 correctfile = os.path.join(os.getcwd(), fpath)
415 for fpath, fdata in SMALL_TEST_DATA:
416 zipfp.writestr(fpath, fdata)
420 for fpath, fdata in SMALL_TEST_DATA:
421 outfile = os.path.join(os.getcwd(), fpath)
565 for fpath, fdata in SMALL_TEST_DATA
    [all...]
  /external/lldb/test/
lldbutil.py 15 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:
dotest.py 54 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:
    [all...]
lldbtest.py 184 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:
    [all...]
  /external/chromium_org/
PRESUBMIT.py     [all...]
  /external/chromium_org/skia/ext/
image_operations_unittest.cc 202 const base::FilePath fpath(path);
204 base::WriteFile(fpath, reinterpret_cast<const char*>(&png[0]),

Completed in 817 milliseconds