Home
last modified time | relevance | path

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

/external/toybox/toys/other/
Dlsattr.c141 char *fpath = NULL; in retell_dir() local
150 fpath = dirtree_path(root, NULL); in retell_dir()
153 print_file_attr(fpath); in retell_dir()
156 xprintf("\n%s:\n", fpath); in retell_dir()
157 free(fpath); in retell_dir()
161 free(fpath); in retell_dir()
259 char *fpath = NULL; in update_attr() local
273 fpath = dirtree_path(root, NULL); in update_attr()
274 if (-1 == (fd=open(fpath, O_RDONLY | O_NONBLOCK))) { in update_attr()
275 free(fpath); in update_attr()
[all …]
/external/libcxx/cmake/Modules/
DHandleLibCXXABI.cmake34 foreach(fpath ${LIBCXX_ABILIB_FILES})
37 if (EXISTS "${incpath}/${fpath}")
39 get_filename_component(dstdir ${fpath} PATH)
40 get_filename_component(ifile ${fpath} NAME)
41 file(COPY "${incpath}/${fpath}"
44 install(FILES "${CMAKE_BINARY_DIR}/include/${fpath}"
48 list(APPEND abilib_headers "${CMAKE_BINARY_DIR}/include/${fpath}")
52 message(WARNING "Failed to find ${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/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/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.c724 if (!tp->u.fpath) { in comexec()
731 if (include(tp->u.fpath, 0, NULL, false) < 0) { in comexec()
734 tp->u.fpath, cstrerror(errno)); in comexec()
741 "function not defined by", tp->u.fpath); in comexec()
1108 char *fpath; in findcom() local
1127 if ((fpath = str_val(global("FPATH"))) == null) { in findcom()
1128 tp->u.fpath = NULL; in findcom()
1131 tp->u.fpath = search_path(name, fpath, R_OK, in findcom()
1172 (fpath = str_val(global("FPATH"))) != null && in findcom()
1173 (npath.ro = search_path(name, fpath, R_OK, in findcom()
[all …]
Dedit.c457 char *pat, *fpath; in x_command_glob() local
474 if ((fpath = str_val(global("FPATH"))) != null) in x_command_glob()
475 glob_path(flags, pat, &w, fpath); in x_command_glob()
Dfuncs.c594 if (tp->u.fpath) in c_whence()
596 tp->u.fpath); in c_whence()
Dsh.h1118 const char *fpath; /* temporary path to undef function */ member
/external/vboot_reference/cgpt/
Dcgpt_nor.c188 static int remove_file_or_dir(const char *fpath, const struct stat *sb, in remove_file_or_dir() argument
190 return remove(fpath); in remove_file_or_dir()
/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/compiler-rt/test/BlocksRuntime/
Dtestfilerunner.m197 char fpath[1024];
205 sprintf(fpath, "DYLD_FRAMEWORK_PATH=%s", frameworkPath);
206 myenv[counter++] = fpath;