/third_party/toybox/toys/other/ |
D | lsattr.c | 144 char *fpath = NULL; in retell_dir() local 153 fpath = dirtree_path(root, NULL); in retell_dir() 156 print_file_attr(fpath); in retell_dir() 159 xprintf("\n%s:\n", fpath); in retell_dir() 160 free(fpath); in retell_dir() 164 free(fpath); in retell_dir() 255 char *fpath = NULL; in update_attr() local 269 fpath = dirtree_path(root, NULL); in update_attr() 270 if (-1 == (fd=open(fpath, O_RDONLY | O_NONBLOCK))) { in update_attr() 271 free(fpath); in update_attr() [all …]
|
/third_party/mesa3d/src/freedreno/perfcntrs/ |
D | freedreno_dt.c | 75 find_freqs_fn(const char *fpath, const struct stat *sb, int typeflag, in find_freqs_fn() argument 78 const char *fname = fpath + ftwbuf->base; in find_freqs_fn() 82 uint32_t *buf = (uint32_t *)os_read_file(fpath, &sz); in find_freqs_fn() 140 find_device_fn(const char *fpath, const struct stat *sb, int typeflag, in find_device_fn() argument 143 const char *fname = fpath + ftwbuf->base; in find_device_fn() 147 char *str = os_read_file(fpath, &sz); in find_device_fn() 149 int dlen = strlen(fpath) - strlen("/compatible"); in find_device_fn() 151 memcpy(dev.dtnode, fpath, dlen); in find_device_fn()
|
/third_party/flutter/skia/third_party/externals/harfbuzz/test/fuzzing/ |
D | run-shape-fuzzer-tests.py | 10 def is_exe(fpath): argument 11 return os.path.isfile(fpath) and os.access(fpath, os.X_OK) 13 fpath, _ = os.path.split(program) 14 if fpath:
|
D | run-subset-fuzzer-tests.py | 10 def is_exe(fpath): argument 11 return os.path.isfile(fpath) and os.access(fpath, os.X_OK) 13 fpath, _ = os.path.split(program) 14 if fpath:
|
/third_party/ltp/testcases/commands/file/ |
D | file01.sh | 30 local fpath 35 fpath="$TST_DATAROOT/$fname" 37 fpath="$fname" 40 EXPECT_PASS file "$fpath" \> file.out
|
/third_party/python/Lib/zoneinfo/ |
D | _tzpath.py | 129 def valid_key(fpath): argument 131 with open(fpath, "rb") as f: 150 fpath = os.path.join(root, file) 152 key = os.path.relpath(fpath, start=tz_root) 159 if valid_key(fpath):
|
/third_party/flutter/skia/third_party/externals/harfbuzz/test/subset/ |
D | run-tests.py | 20 def is_exe (fpath): argument 21 return os.path.isfile (fpath) and os.access (fpath, os.X_OK) 23 fpath, _ = os.path.split (program) 24 if fpath:
|
/third_party/jerryscript/tools/ |
D | check-license.py | 80 fpath = os.path.join(root, fname) 81 with io.open(fpath, 'r', errors='ignore') as curr_file: 83 print('%s: incorrect license' % fpath)
|
/third_party/openssl/crypto/ct/ |
D | ct_log.c | 170 const char *fpath = ossl_safe_getenv(CTLOG_FILE_EVP); in CTLOG_STORE_load_default_file() local 172 if (fpath == NULL) in CTLOG_STORE_load_default_file() 173 fpath = CTLOG_FILE; in CTLOG_STORE_load_default_file() 175 return CTLOG_STORE_load_file(store, fpath); in CTLOG_STORE_load_default_file()
|
/third_party/rust/crates/memchr/scripts/ |
D | make-byte-frequency-table | 42 for fpath in args.corpus: 43 corpus.append(open(fpath, 'rb').read())
|
/third_party/rust/crates/regex/scripts/ |
D | frequencies.py | 42 for fpath in args.corpus: 43 corpus.append(open(fpath, 'rb').read())
|
/third_party/mksh/ |
D | exec.c | 704 if (!tp->u.fpath) { in comexec() 713 if (include(tp->u.fpath, 0, NULL, false) < 0 || in comexec() 725 cp = tp->u.fpath; in comexec() 729 "function not defined by", tp->u.fpath); in comexec() 1176 char *fpath; in findcom() local 1195 if ((fpath = str_val(global(TFPATH))) == null) { in findcom() 1196 tp->u.fpath = NULL; in findcom() 1199 tp->u.fpath = search_path(name, fpath, R_OK, in findcom() 1240 (fpath = str_val(global(TFPATH))) != null && in findcom() 1241 (npath.ro = search_path(name, fpath, R_OK, in findcom() [all …]
|
D | funcs.c | 703 if (tp->u.fpath) in do_whence() 705 tp->u.fpath); in do_whence()
|
D | edit.c | 488 char *pat, *fpath; in x_command_glob() local 505 if ((fpath = str_val(global(TFPATH))) != null) in x_command_glob() 506 glob_path(flags, pat, &w, fpath); in x_command_glob()
|
D | sh.h | 1767 const char *fpath; /* temporary path to undef function */ member
|
/third_party/ninja/misc/ |
D | zsh-completion | 17 # fpath=(path/to/ninja/misc/zsh-completion $fpath)
|
/third_party/musl/porting/linux/user/ldso/ |
D | ns_config.c | 483 const char * fpath = CONFIG_DEFAULT_FILE; in config_parse() local 484 if (file_path) fpath = file_path; in config_parse() 485 g_configor.file_path = ld_strdup(fpath); in config_parse() 486 g_configor.sections = config_load(fpath); in config_parse()
|
/third_party/libfuse/test/ |
D | test_syscalls.c | 605 char fpath[1280]; in cleanup_dir() local 606 sprintf(fpath, "%s/%s", path, dir_files[i]); in cleanup_dir() 607 res = unlink(fpath); in cleanup_dir() 638 char fpath[1280]; in create_dir() local 639 sprintf(fpath, "%s/%s", path, dir_files[i]); in create_dir() 640 res = create_file(fpath, "", 0); in create_dir()
|
/third_party/python/Lib/test/ |
D | test_zipfile.py | 1335 for fpath, fdata in SMALL_TEST_DATA: 1336 zipfp.writestr(fpath, fdata) 1342 for fpath, fdata in SMALL_TEST_DATA: 1343 writtenfile = zipfp.extract(fpath) 1346 correctfile = os.path.join(os.getcwd(), fpath) 1360 for fpath, fdata in SMALL_TEST_DATA: 1361 writtenfile = zipfp.extract(fpath, target) 1364 correctfile = os.path.join(target, fpath) 1389 for fpath, fdata in SMALL_TEST_DATA: 1390 outfile = os.path.join(os.getcwd(), fpath) [all …]
|
D | test_venv.py | 475 fpath = os.path.join(dirpath, fname) 476 with open(fpath, 'w') as f:
|
/third_party/python/Doc/tools/extensions/ |
D | pyspecific.py | 427 fpath = path.join(source_dir, fname) 428 self.state.document.settings.record_dependencies.add(fpath) 430 with io.open(fpath, encoding='utf-8') as fp:
|
/third_party/libabigail/src/ |
D | abg-tools-utils.cc | 2246 string fpath = ::basename(entry->fts_path); in entry_of_file_with_name() local 2247 if (fpath == fname) in entry_of_file_with_name()
|