HomeSort by: relevance | last modified time | path
    Searched defs:fpath (Results 1 - 15 of 15) sorted by relevancy

  /src/lib/libc/gen/
posix_spawnp.c 54 char fpath[FILENAME_MAX]; local
108 if (lp + ln + 2 > sizeof(fpath)) {
114 memcpy(fpath, p, lp);
115 fpath[lp] = '/';
116 memcpy(fpath + lp + 1, file, ln);
117 fpath[lp + ln + 1] = '\0';
121 * here, using the current fpath as the filename, but
130 if (access(fpath, X_OK) == 0)
136 fpath[0] = '\0';
141 if (fpath[0] == '\0'
    [all...]
  /src/tests/fs/vfs/
t_vfsops.c 77 char fpath[MAXPATHLEN]; local
83 sprintf(fpath, "%s/file", path);
84 fd = rump_sys_open(fpath, O_RDWR | O_CREAT, 0777);
97 if (rump_sys_getfh(fpath, NULL, &fhsize) == -1) {
106 if (rump_sys_getfh(fpath, fhp, &fhsize) == -1)
  /src/external/gpl3/gcc.old/dist/gcc/analyzer/
feasible-graph.cc 229 auto_vec<const feasible_edge *> fpath; local
238 fpath.safe_push (pred_fedge);
243 fpath.reverse ();
245 for (unsigned i = 0; i < fpath.length (); i++)
247 const feasible_edge *fedge = fpath[i];
253 pp_printf (pp, "fpath[%i]: FN %i (EN %i) -> FN %i (EN %i)",
  /src/external/gpl3/gcc/dist/gcc/analyzer/
feasible-graph.cc 252 auto_vec<const feasible_edge *> fpath; local
261 fpath.safe_push (pred_fedge);
266 fpath.reverse ();
268 for (unsigned i = 0; i < fpath.length (); i++)
270 const feasible_edge *fedge = fpath[i];
276 pp_printf (pp, "fpath[%i]: FN %i (EN %i) -> FN %i (EN %i)",
  /src/crypto/external/bsd/openssl.old/dist/crypto/ct/
ct_log.c 140 const char *fpath = ossl_safe_getenv(CTLOG_FILE_EVP); local
142 if (fpath == NULL)
143 fpath = CTLOG_FILE;
145 return CTLOG_STORE_load_file(store, fpath);
  /src/external/bsd/pkg_install/dist/lib/
file.c 249 char fpath[MaxPathSize]; local
254 (void) snprintf(fpath, sizeof(fpath), "%s/%s", path, pattern);
255 if ((i=glob(fpath, GLOB_NOSORT, NULL, &globbed)) != 0) {
258 warn("no files matching ``%s'' found", fpath);
  /src/external/gpl3/gdb/dist/gnulib/import/
stat-w32.c 285 char fpath[PATH_MAX]; local
288 && GetFinalPathNameByHandleFunc (h, fpath, sizeof (fpath), VOLUME_NAME_NONE)
289 < sizeof (fpath)
290 && (path = fpath, 1)))
  /src/external/gpl3/gdb.old/dist/gnulib/import/
stat-w32.c 285 char fpath[PATH_MAX]; local
288 && GetFinalPathNameByHandleFunc (h, fpath, sizeof (fpath), VOLUME_NAME_NONE)
289 < sizeof (fpath)
290 && (path = fpath, 1)))
  /src/sbin/scan_ffs/
scan_ffs.c 504 const char *fpath; local
508 fpath = NULL;
523 fpath = optarg;
548 if (stat(fpath, &stp))
549 err(1, "Cannot stat `%s'", fpath);
557 fd = open(fpath, O_RDONLY | O_DIRECT);
  /src/crypto/external/apache2/openssl/dist/crypto/ct/
ct_log.c 163 const char *fpath = ossl_safe_getenv(CTLOG_FILE_EVP); local
165 if (fpath == NULL)
166 fpath = CTLOG_FILE;
168 return CTLOG_STORE_load_file(store, fpath);
  /src/crypto/external/bsd/openssl/dist/crypto/ct/
ct_log.c 170 const char *fpath = ossl_safe_getenv(CTLOG_FILE_EVP); local
172 if (fpath == NULL)
173 fpath = CTLOG_FILE;
175 return CTLOG_STORE_load_file(store, fpath);
  /src/bin/ksh/
edit.c 626 char *fpath; local
649 if ((fpath = str_val(global("FPATH"))) != null)
650 glob_path(flags, pat, &w, fpath);
exec.c 600 if (!tp->u.fpath) {
613 if (include(tp->u.fpath, 0, (char **) 0, 0) < 0) {
616 cp, tp->u.fpath, strerror(errno));
625 cp, tp->u.fpath);
900 char *fpath; /* for function autoloading */ local
905 /* prevent FPATH search below */
918 if ((fpath = str_val(global("FPATH"))) == null) {
919 tp->u.fpath = (char *) 0;
922 tp->u.fpath = search(name, fpath, R_OK
    [all...]
table.h 31 char *fpath; /* temporary path to undef function */ member in union:tbl::__anon21
  /src/external/bsd/openldap/dist/servers/slapd/back-ldif/
ldif.c 288 #define FILL_PATH(fpath, dir_end, filename) \
289 ((fpath)->bv_len = lutil_strcopy(dir_end, filename) - (fpath)->bv_val)
952 struct berval fpath; /* becomes child pathname */ local
953 char *dir_end; /* will point past dirname in fpath */
957 rc = ldif_readdir( op, rs, path, &list, &fpath.bv_len );
967 /* Allocate fpath and fill in directory part */
968 dir_end = fullpath_alloc( &fpath, path, fpath.bv_len );
977 FILL_PATH( &fpath, dir_end, BVL_NAME( ptr ))
    [all...]

Completed in 71 milliseconds