Home
last modified time | relevance | path

Searched refs:pathname (Results 1 – 25 of 45) sorted by relevance

12

/f-stack/freebsd/contrib/openzfs/cmd/zed/zed.d/
H A Dzed-functions.sh193 local pathname="$2"
197 zed_notify_email "${subject}" "${pathname}"; rv=$?
201 zed_notify_pushbullet "${subject}" "${pathname}"; rv=$?
205 zed_notify_slack_webhook "${subject}" "${pathname}"; rv=$?
245 local pathname="${2:-"/dev/null"}"
259 if [ ! -r "${pathname}" ]; then
311 local pathname="${2:-"/dev/null"}"
322 if [ ! -r "${pathname}" ]; then
323 zed_log_err "pushbullet cannot read \"${pathname}\""
403 if [ ! -r "${pathname}" ]; then
[all …]
/f-stack/freebsd/contrib/openzfs/cmd/zfs_ids_to_path/
H A Dzfs_ids_to_path.c84 char pathname[PATH_MAX * 2]; in main() local
86 zpool_obj_to_path_ds(pool, objset, object, pathname, in main()
87 sizeof (pathname)); in main()
89 zpool_obj_to_path(pool, objset, object, pathname, in main()
90 sizeof (pathname)); in main()
92 printf("%s\n", pathname); in main()
/f-stack/freebsd/contrib/openzfs/include/sys/
H A Dpathname.h55 typedef struct pathname { struct
60 extern void pn_alloc(struct pathname *); argument
61 extern void pn_alloc_sz(struct pathname *, size_t);
62 extern void pn_free(struct pathname *);
H A DMakefile.am57 pathname.h \
/f-stack/freebsd/contrib/openzfs/tests/test-runner/bin/
H A Dtest-runner.py.in160 self.pathname = pathname
371 def __init__(self, pathname, argument
448 if len(pretest.pathname):
463 if len(posttest.pathname):
563 if len(pretest.pathname):
586 if len(posttest.pathname):
631 test = Test(pathname)
636 self.tests[pathname] = test
879 def verify_file(pathname): argument
883 if os.path.isdir(pathname) or os.path.islink(pathname):
[all …]
H A Dzts-report.py.in283 def process_results(pathname): argument
285 f = open(pathname)
/f-stack/freebsd/contrib/zstd/programs/
H A Dutil.c719 assert(pathname != NULL); in convertPathnameToDirName()
722 len = strlen(pathname); in convertPathnameToDirName()
737 pathname[0] = '.'; in convertPathnameToDirName()
738 pathname[1] = '\0'; in convertPathnameToDirName()
749 return pathname + 1; in trimLeadingRootChar()
750 return pathname; in trimLeadingRootChar()
757 if ((pathname[0] == '.') && (pathname[1] == PATH_SEP)) in trimLeadingCurrentDirConst()
758 return pathname + 2; in trimLeadingCurrentDirConst()
759 return pathname; in trimLeadingCurrentDirConst()
812 char* pathname = NULL; in UTIL_createMirroredDestDirName() local
[all …]
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dpathname.c67 pn_alloc(struct pathname *pnp) in pn_alloc()
72 pn_alloc_sz(struct pathname *pnp, size_t sz) in pn_alloc_sz()
82 pn_free(struct pathname *pnp) in pn_free()
H A Dspa_config.c83 char *pathname; in spa_config_load() local
97 pathname = kmem_alloc(MAXPATHLEN, KM_SLEEP); in spa_config_load()
99 (void) snprintf(pathname, MAXPATHLEN, "%s", spa_config_path); in spa_config_load()
101 err = zfs_file_open(pathname, O_RDONLY, 0, &fp); in spa_config_load()
107 kmem_free(pathname, MAXPATHLEN); in spa_config_load()
H A DMakefile.in64 $(MODULE)-objs += pathname.o
/f-stack/freebsd/kern/
H A Dkern_linker.c619 lf->pathname = strdup(pathname, M_LINKER); in linker_make_file()
749 if (file->pathname) { in linker_file_unload()
751 file->pathname = NULL; in linker_file_unload()
1107 char *pathname = NULL; in sys_kldload() local
1119 free(pathname, M_TEMP); in sys_kldload()
1182 char *pathname; in sys_kldfind() local
1208 free(pathname, M_TEMP); in sys_kldfind()
1306 bcopy(lf->pathname, &stat->pathname[0], namelen); in kern_kldstat()
2089 char *pathname; in linker_load_module() local
2116 if (pathname == NULL) in linker_load_module()
[all …]
H A Dkern_ctf.c103 NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, lf->pathname, td);
148 __func__, __LINE__, lf->pathname, hdr->e_shstrndx,
171 __func__, __LINE__, lf->pathname);
189 __func__, __LINE__, lf->pathname);
198 __func__, __LINE__, lf->pathname, ctf_hdr[2]);
H A Dlink_elf.c671 "linker script\n", ef->lf.pathname); in parse_dpcpu()
680 ef->lf.pathname, pad, LS_PADDING); in parse_dpcpu()
696 __func__, size, ef->lf.pathname); in parse_dpcpu()
731 "linker script\n", ef->lf.pathname); in parse_vnet()
740 ef->lf.pathname, pad, LS_PADDING); in parse_vnet()
756 __func__, size, ef->lf.pathname); in parse_vnet()
1402 if (file->pathname != NULL) in link_elf_unload_preload()
1403 preload_delete_name(file->pathname); in link_elf_unload_preload()
/f-stack/dpdk/lib/librte_eal/freebsd/
H A Deal.c191 const char *pathname = eal_runtime_config_path(); in rte_eal_config_create() local
205 mem_cfg_fd = open(pathname, O_RDWR | O_CREAT, 0600); in rte_eal_config_create()
208 pathname); in rte_eal_config_create()
218 pathname); in rte_eal_config_create()
227 "process running?\n", pathname); in rte_eal_config_create()
268 const char *pathname = eal_runtime_config_path(); in rte_eal_config_attach() local
278 mem_cfg_fd = open(pathname, O_RDWR); in rte_eal_config_attach()
281 pathname); in rte_eal_config_attach()
354 const char *pathname = eal_runtime_config_path(); in eal_proc_type_detect() local
365 if (((mem_cfg_fd = open(pathname, O_RDWR)) >= 0) && in eal_proc_type_detect()
/f-stack/dpdk/lib/librte_eal/linux/
H A Deal.c281 const char *pathname = eal_runtime_config_path(); in rte_eal_config_create() local
295 mem_cfg_fd = open(pathname, O_RDWR | O_CREAT, 0600); in rte_eal_config_create()
298 pathname); in rte_eal_config_create()
308 pathname); in rte_eal_config_create()
317 "process running?\n", pathname); in rte_eal_config_create()
364 const char *pathname = eal_runtime_config_path(); in rte_eal_config_attach() local
370 mem_cfg_fd = open(pathname, O_RDWR); in rte_eal_config_attach()
373 pathname); in rte_eal_config_attach()
446 const char *pathname = eal_runtime_config_path(); in eal_proc_type_detect() local
457 if (((mem_cfg_fd = open(pathname, O_RDWR)) >= 0) && in eal_proc_type_detect()
/f-stack/freebsd/contrib/openzfs/cmd/zed/
H A Dzed_conf.c347 char pathname[PATH_MAX]; in zed_conf_scan_dir() local
377 n = snprintf(pathname, sizeof (pathname), in zed_conf_scan_dir()
379 if ((n < 0) || (n >= sizeof (pathname))) { in zed_conf_scan_dir()
384 if (stat(pathname, &st) < 0) { in zed_conf_scan_dir()
386 pathname, strerror(errno)); in zed_conf_scan_dir()
/f-stack/app/nginx-1.16.1/auto/
H A Doptions421 --sbin-path=PATH set nginx binary pathname
423 --conf-path=PATH set nginx.conf pathname
424 --error-log-path=PATH set error log pathname
425 --pid-path=PATH set nginx.pid pathname
426 --lock-path=PATH set nginx.lock pathname
510 --with-perl=PATH set perl binary pathname
512 --http-log-path=PATH set http access log pathname
565 --with-cc=PATH set C compiler pathname
566 --with-cpp=PATH set C preprocessor pathname
/f-stack/tools/compat/include/sys/
H A Dlinker.h78 char* pathname; /* file name with full path */ member
319 char pathname[MAXPATHLEN]; member
/f-stack/dpdk/lib/librte_eal/windows/
H A Deal.c42 const char *pathname = eal_runtime_config_path(); in eal_proc_type_detect() local
49 errno_t err = _sopen_s(&mem_cfg_fd, pathname, in eal_proc_type_detect()
/f-stack/freebsd/sys/
H A Dlinker.h81 char* pathname; /* file name with full path */ member
342 char pathname[MAXPATHLEN]; member
/f-stack/freebsd/contrib/openzfs/config/
H A Dlib-ld.m480 # Canonicalize the pathname of ld
85 # Got the pathname. No search in PATH is needed.
/f-stack/freebsd/contrib/openzfs/lib/libzfs/
H A Dlibzfs_pool.c2939 char *pathname; in zpool_vdev_online() local
4480 char *pathname, size_t len, boolean_t always_unmounted) in zpool_obj_to_path_impl() argument
4489 (void) snprintf(pathname, len, "<metadata>:<0x%llx>", in zpool_obj_to_path_impl()
4500 (void) snprintf(pathname, len, "<0x%llx>:<0x%llx>", in zpool_obj_to_path_impl()
4516 (void) snprintf(pathname, len, "%s%s", mntpnt, in zpool_obj_to_path_impl()
4519 (void) snprintf(pathname, len, "%s:%s", in zpool_obj_to_path_impl()
4523 (void) snprintf(pathname, len, "%s:<0x%llx>", dsname, in zpool_obj_to_path_impl()
4531 char *pathname, size_t len) in zpool_obj_to_path() argument
4533 zpool_obj_to_path_impl(zhp, dsobj, obj, pathname, len, B_FALSE); in zpool_obj_to_path()
4538 char *pathname, size_t len) in zpool_obj_to_path_ds() argument
[all …]
/f-stack/freebsd/net/
H A Dnetmap_user.h564 win_nm_open(char* pathname, int flags) in win_nm_open() argument
567 if (strcmp(pathname, NETMAP_DEVICE_NAME) == 0) { in win_nm_open()
576 return open(pathname, flags); in win_nm_open()
/f-stack/freebsd/contrib/openzfs/lib/libzpool/
H A DMakefile.am102 pathname.c \
/f-stack/dpdk/lib/librte_eal/common/
H A Deal_common_options.c463 eal_dlopen(const char *pathname) in eal_dlopen() argument
466 char *realp = realpath(pathname, NULL); in eal_dlopen()
470 retval = dlopen(pathname, RTLD_NOW); in eal_dlopen()
477 pathname, strerror(errno)); in eal_dlopen()

12