/external/toybox/toys/other/ |
D | lsattr.c | 141 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/ |
D | HandleLibCXXABI.cmake | 34 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/ |
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/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/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 | 724 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 …]
|
D | edit.c | 457 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()
|
D | funcs.c | 594 if (tp->u.fpath) in c_whence() 596 tp->u.fpath); in c_whence()
|
D | sh.h | 1118 const char *fpath; /* temporary path to undef function */ member
|
/external/vboot_reference/cgpt/ |
D | cgpt_nor.c | 188 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/ |
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/compiler-rt/test/BlocksRuntime/ |
D | testfilerunner.m | 197 char fpath[1024]; 205 sprintf(fpath, "DYLD_FRAMEWORK_PATH=%s", frameworkPath); 206 myenv[counter++] = fpath;
|