Searched refs:fullpath (Results 26 - 45 of 45) sorted by relevance

12

/freebsd-11-stable/sys/compat/linprocfs/
H A Dlinprocfs.c841 char *fullpath = "unknown"; local
850 vn_fullpath(td, vp, &fullpath, &freepath);
853 sbuf_printf(sb, "%s", fullpath);
867 char *fullpath = "unknown"; local
876 vn_fullpath(td, vp, &fullpath, &freepath);
879 sbuf_printf(sb, "%s", fullpath);
/freebsd-11-stable/usr.sbin/fmtree/
H A Dcreate.c98 fullpath, ctime(&cl));
142 warnx("%s checksum: %lu", fullpath, (unsigned long)crc_total);
H A Dverify.c154 warnx("%s checksum: %lu", fullpath, (unsigned long)crc_total);
/freebsd-11-stable/contrib/mtree/
H A Dverify.c165 warnx("%s checksum: %u", fullpath, crc_total);
H A Dcreate.c128 user, host, fullpath, ctime(&clocktime));
178 mtree_err("%s checksum: %u", fullpath, crc_total);
/freebsd-11-stable/contrib/dtc/
H A Dlivetree.c798 data_copy_mem(node->fullpath,
799 strlen(node->fullpath) + 1));
844 if (strchr(node->fullpath, ':') || strchr(prop->name, ':'))
848 node->fullpath, prop->name, m->offset);
H A Ddtc.h158 char *fullpath; member in struct:node
H A Dflattree.c272 emit->string(etarget, tree->fullpath, 0);
/freebsd-11-stable/contrib/mdocml/
H A Dcgi.c887 pg_show(struct req *req, const char *fullpath) argument
892 if ((file = strchr(fullpath, '/')) == NULL) {
897 manpath = mandoc_strndup(fullpath, file - fullpath);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc125 char fullpath[PATH_MAX];
127 int chars = snprintf(fullpath, PATH_MAX, "%s/%s", dir, bin);
132 if (!realpath(fullpath, ret))
134 if (stat(fullpath, &sb) != 0)
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBTarget.i998 if module.file.fullpath == key:
1019 re_match = key.search(module.path.fullpath)
/freebsd-11-stable/contrib/subversion/subversion/libsvn_ra_local/
H A Dra_plugin.c1376 const char *datestring, *entryname, *fullpath;
1386 fullpath = svn_dirent_join(abs_path, entryname, iterpool);
1401 fullpath, iterpool));
1408 root, fullpath,
1420 root, fullpath, iterpool));
1371 const char *datestring, *entryname, *fullpath; local
/freebsd-11-stable/sys/netgraph/
H A Dng_base.c1731 char fullpath[NG_PATHSIZ]; local
1743 strncpy(fullpath, address, sizeof(fullpath) - 1);
1744 fullpath[sizeof(fullpath) - 1] = '\0';
1747 if (ng_path_parse(fullpath, &nodename, &path, NULL) < 0) {
/freebsd-11-stable/sys/vm/
H A Dvm_object.c2358 char *fullpath, *freepath; local
2426 fullpath = "";
2461 vn_fullpath(curthread, vp, &fullpath, &freepath);
2470 strlcpy(kvo->kvo_path, fullpath, sizeof(kvo->kvo_path));
/freebsd-11-stable/sys/kern/
H A Dkern_proc.c2109 char *fullpath, *freepath; local
2193 fullpath = "";
2239 vn_fullpath(curthread, vp, &fullpath,
2255 strlcpy(kve->kve_path, fullpath, sizeof(kve->kve_path));
2355 char *fullpath, *freepath; local
2436 fullpath = "";
2485 vn_fullpath(curthread, vp, &fullpath,
2507 strlcpy(kve->kve_path, fullpath, sizeof(kve->kve_path));
H A Dkern_sig.c3592 char *fullpath, *freepath = NULL; local
3683 if (vn_fullpath_global(td, p->p_textvp, &fullpath, &freepath) != 0)
3685 if (!coredump_sanitise_path(fullpath))
3687 snprintf(data, len, "%s%s ", comm_name, fullpath);
3690 if (vn_fullpath_global(td, vp, &fullpath, &freepath) != 0)
3692 if (!coredump_sanitise_path(fullpath))
3695 strlcat(data, fullpath, len);
H A Dvfs_vnops.c2348 char *fullpath, *freepath; local
2353 fullpath = "-";
2354 error = vn_fullpath(curthread, vp, &fullpath, &freepath);
2356 strlcpy(kif->kf_path, fullpath, sizeof(kif->kf_path));
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dntp_control.c995 char fullpath[512]; local
1116 prc = snprintf(fullpath, sizeof(fullpath), "%s%s",
1118 if (prc < 0 || (size_t)prc >= sizeof(fullpath)) {
1120 (u_int)sizeof(fullpath));
1128 fd = open(fullpath, openmode, S_IRUSR | S_IWUSR);
1144 fullpath, stoa(&rbufp->recv_srcadr));
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dio.c3026 const char *fullpath;
3028 fullpath = svn_dirent_join(path, name, subpool);
3032 SVN_ERR(svn_io_remove_dir2(fullpath, FALSE, cancel_func,
3040 err = svn_io_remove_file2(fullpath, FALSE, subpool);
3044 svn_dirent_local_style(fullpath, subpool));
3017 const char *fullpath; local
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp704 "A basename or fullpath to a file that contains "
710 "A basename or fullpath to a shared library to use in the search "
1346 std::string fullpath = file_spec_ptr->GetPath(); local
1347 strm.Printf("%-*s", width, fullpath.c_str());
2038 // Dump specified images (by basename or fullpath)
2125 // Dump specified images (by basename or fullpath)
2208 // Dump specified ASTs (by basename or fullpath)
2284 // Dump specified images (by basename or fullpath)
2351 // Dump specified images (by basename or fullpath)
3028 // Dump specified images (by basename or fullpath)
[all...]

Completed in 419 milliseconds

12