Searched refs:fullpath (Results 1 - 25 of 48) sorted by relevance

12

/freebsd-current/tools/test/stress2/misc/
H A Dfullpath.sh38 sed '1,/^EOF/d' < $odir/$0 > fullpath.c
39 mycc -o fullpath -Wall fullpath.c
40 rm -f fullpath.c
44 /tmp/fullpath &
63 rm -f /tmp/fullpath
/freebsd-current/tools/test/stress2/testcases/run/
H A Drun.c84 char fullpath[MAXPATHLEN+1]; local
100 snprintf(fullpath, sizeof(fullpath), "%s/%s", home,
102 if (execv(fullpath, mkargv(basename(op->argv[i]))) == -1)
103 err(1, "execl(%s), %s:%d", fullpath, __FILE__,
/freebsd-current/tools/tools/nanobsd/
H A Dfill_pkg.sh50 local outputfile dumpdir type fullpath pkgname p
58 fullpath=$p
63 fullpath=${PORTSDIR}/$p
68 fullpath=$p
73 fullpath=$dumpdir/$p
78 fullpath=$dumpdir/$p.txz
88 cd "$fullpath"
107 deps=`pkg info -dF "$fullpath" | grep -v "$pkgname:"`
/freebsd-current/sys/contrib/openzfs/cmd/zinject/
H A Dtranslate.c89 char fullpath[MAXPATHLEN]; local
91 compress_slashes(inpath, fullpath);
93 if (fullpath[0] != '/') {
95 "path\n", fullpath);
100 if (getextmntent(fullpath, &mp, statbuf) != 0) {
102 fullpath);
108 "filesystem\n", fullpath);
112 if (strncmp(fullpath, mp.mnt_mountp, strlen(mp.mnt_mountp)) != 0) {
114 "doesn't match path\n", fullpath);
120 rel = fullpath
[all...]
/freebsd-current/contrib/libarchive/libarchive/test/
H A Dtest_write_disk.c242 wchar_t *fullpath; local
324 assert((fullpath = malloc((l + 20) * sizeof(wchar_t))) != NULL);
325 assert((l = GetCurrentDirectoryW(l, fullpath)) != 0);
326 wcscat(fullpath, L"\\f:i*l?e\"f<i>l|e");
328 archive_entry_copy_pathname_w(ae, fullpath);
333 free(fullpath);
337 assert((fullpath = malloc((l + 30) * sizeof(wchar_t))) != NULL);
338 assert((l = GetCurrentDirectoryW(l, fullpath)) != 0);
339 wcscat(fullpath, L"\\d:i*r?e\"c<t>o|ry/file1");
341 archive_entry_copy_pathname_w(ae, fullpath);
[all...]
H A Dtest_read_disk_directory_traversals.c92 wchar_t *wcwd, *wp, *fullpath; local
436 fullpath = malloc(sizeof(wchar_t) * (wcslen(wcwd) + 32));
437 wcscpy(fullpath, L"//?/");
438 wcscat(fullpath, wcwd);
439 wcscat(fullpath, L"/dir1/file1");
441 assertEqualIntA(a, ARCHIVE_OK, archive_read_disk_open_w(a, fullpath));
442 while ((wcwd = wcschr(fullpath, L'\\')) != NULL)
448 assertEqualWString(archive_entry_pathname_w(ae), fullpath); local
462 free(fullpath);
468 fullpath
482 assertEqualWString(archive_entry_pathname_w(ae), fullpath); local
495 assertEqualWString(archive_entry_pathname_w(ae), fullpath); local
505 assertEqualWString(archive_entry_pathname_w(ae), fullpath); local
[all...]
/freebsd-current/contrib/llvm-project/lldb/bindings/interface/
H A DSBFileSpecExtensions.i11 fullpath = property(str, None, doc='''A read only property that returns the fullpath as a python string.''')
H A DSBModuleExtensions.i179 if comp_unit.file.fullpath == key:
188 fullpath = comp_unit.file.fullpath
189 if fullpath:
190 re_match = key.search(fullpath)
/freebsd-current/sys/contrib/openzfs/cmd/zed/agents/
H A Dzfs_mod.c207 char rawpath[PATH_MAX], fullpath[PATH_MAX]; local
318 (void) snprintf(fullpath, sizeof (fullpath), "%llu",
324 (void) strlcpy(fullpath, path, sizeof (fullpath));
326 char *spath = zfs_strip_partition(fullpath);
333 (void) strlcpy(fullpath, spath, sizeof (fullpath));
344 if (zpool_vdev_online(zhp, fullpath, online_flag, &newstate) == 0 &&
349 "%s", fullpath, physpat
1083 char fullpath[MAXPATHLEN]; local
[all...]
/freebsd-current/usr.sbin/pmcstat/
H A Dpmcpl_gprof.c183 char fullpath[PATH_MAX]; local
189 (void) snprintf(fullpath, sizeof(fullpath),
193 return (pmcstat_string_intern(fullpath));
385 char fullpath[PATH_MAX]; local
393 (void) snprintf(fullpath, sizeof(fullpath), "%s/%s", args.pa_samplesdir,
397 if (stat(fullpath, &st) == 0 && S_ISDIR(st.st_mode))
400 if (mkdir(fullpath, S_IRWXU|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH) < 0)
402 fullpath);
[all...]
/freebsd-current/sys/contrib/openzfs/lib/libzfs/os/linux/
H A Dlibzfs_util_os.c165 char fullpath[MAXPATHLEN]; local
168 (void) strlcpy(fullpath, di->dsmnt, MAXPATHLEN);
169 (void) strlcat(fullpath, ZDIFF_SHARESDIR, MAXPATHLEN);
171 if (stat64(fullpath, &sb) != 0) {
173 dgettext(TEXT_DOMAIN, "Cannot stat %s"), fullpath);
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_write_open_filename.c137 wchar_t *fullpath; local
160 fullpath = __la_win_permissive_name_w(wcs);
161 if (fullpath != NULL) {
162 mine->fd = _wopen(fullpath, flags, 0666);
163 free(fullpath);
H A Darchive_read_open_filename.c297 wchar_t *fullpath; local
298 fullpath = __la_win_permissive_name_w(wfilename);
299 if (fullpath != NULL) {
300 fd = _wopen(fullpath, O_RDONLY | O_BINARY);
301 free(fullpath);
/freebsd-current/sys/fs/procfs/
H A Dprocfs.c68 char *fullpath, *freepath, *binpath; local
74 error = proc_get_binpath(p, binpath, &fullpath, &freepath);
76 sbuf_cat(sb, fullpath);
H A Dprocfs_map.c82 char *fullpath, *freepath, *type; local
154 fullpath = "-";
189 vn_fullpath(vp, &fullpath, &freepath);
203 * fullpath, charged, charged uid.
220 type, fullpath,
/freebsd-current/contrib/mtree/
H A Dextern.h88 extern char fullpath[];
H A Dmtree.c64 char fullpath[MAXPATHLEN]; variable
286 if ((cflag || sflag) && !getcwd(fullpath, sizeof(fullpath)))
/freebsd-current/sbin/fsck_msdosfs/
H A Ddir.c95 static char *fullpath(struct dosDirEntry *);
162 fullpath(struct dosDirEntry *dir) function
403 fullpath(dir), dir->size, dir->head);
437 fullpath(dir), dir->size, (uintmax_t)physicalSize);
449 fullpath(dir));
636 fullpath(dir));
773 fullpath(dir), 2);
813 fullpath(&dirent), 0);
853 fullpath(&dirent),
857 fullpath(
[all...]
/freebsd-current/contrib/sendmail/makemap/
H A Dmakemap.c161 ** fullpath -- compare the full paths or just the "basename"s?
169 readcf(cfile, mapfile, fullpath)
172 bool fullpath;
192 if (!fullpath && mapfile != NULL)
280 if (!fullpath)
294 if (!isspace(*b) && fullpath)
296 if (!fullpath && !(SM_IS_DIR_DELIM(*b) || isspace(*b)))
/freebsd-current/sys/security/mac_do/
H A Dmac_do.c450 char *fullpath = NULL; local
460 if (vn_fullpath(curproc->p_textvp, &fullpath, &freebuf) != 0)
462 if (strcmp(fullpath, "/usr/bin/mdo") != 0) {
485 char *fullpath = NULL; local
495 if (vn_fullpath(curproc->p_textvp, &fullpath, &freebuf) != 0)
497 if (strcmp(fullpath, "/usr/bin/mdo") != 0) {
/freebsd-current/sys/fs/fdescfs/
H A Dfdesc_vnops.c628 char *freepath, *fullpath; local
649 error = vn_fullpath(vp, &fullpath, &freepath);
652 fullpath = "anon_inode:[unknown]";
657 pathlen = strlen(fullpath);
658 error = uiomove(fullpath, pathlen, uio);
/freebsd-current/sys/contrib/openzfs/cmd/zpool/
H A Dzpool_iter.c517 char fullpath[MAXPATHLEN]; local
528 if (snprintf(fullpath, sizeof (fullpath),
532 if (access(fullpath, X_OK) == 0) {
533 vdev_run_cmd(data, fullpath);
/freebsd-current/usr.sbin/jail/
H A Dconfig.c275 char *fullpath = NULL; local
286 fullpath = emalloc(dirlen + strlen(cfname) + 1);
287 strncpy(fullpath, outer_cfname, dirlen);
288 strcpy(fullpath + dirlen, cfname);
289 cfname = fullpath;
304 if (fullpath)
305 free(fullpath);
/freebsd-current/contrib/ncurses/ncurses/tinfo/
H A Dwrite_entry.c179 char fullpath[PATH_MAX]; local
181 if ((rc = make_db_path(fullpath, path, sizeof(fullpath))) == 0) {
185 if ((capdbp = _nc_db_open(fullpath, TRUE)) == NULL) {
/freebsd-current/crypto/openssl/apps/
H A Drehash.c195 static int handle_symlink(const char *filename, const char *fullpath) argument
223 n = readlink(fullpath, linktarget, sizeof(linktarget));
234 static int do_file(const char *filename, const char *fullpath, enum Hash h) argument
256 if ((b = BIO_new_file(fullpath, "r")) == NULL) {

Completed in 290 milliseconds

12