Searched refs:pathp (Results 1 - 15 of 15) sorted by relevance

/freebsd-current/contrib/jemalloc/include/jemalloc/internal/
H A Drb.h471 } path[sizeof(void *) << 4], *pathp; \
475 for (pathp = path; pathp->node != NULL; pathp++) { \
476 int cmp = pathp->cmp = a_cmp(node, pathp->node); \
479 pathp[1].node = rbtn_left_get(a_type, a_field, \
480 pathp->node); \
482 pathp[1].node = rbtn_right_get(a_type, a_field, \
483 pathp
[all...]
/freebsd-current/lib/libc/posix1e/
H A Dacl_valid.c79 acl_valid_file_np(const char *pathp, acl_type_t type, acl_t acl) argument
82 if (pathp == NULL || acl == NULL) {
90 return (__acl_aclcheck_file(pathp, type, &acl->ats_acl));
94 acl_valid_link_np(const char *pathp, acl_type_t type, acl_t acl) argument
97 if (pathp == NULL || acl == NULL) {
105 return (__acl_aclcheck_link(pathp, type, &acl->ats_acl));
/freebsd-current/stand/common/
H A Dls.c51 static int ls_getdir(char **pathp);
154 ls_getdir(char **pathp) argument
164 path = malloc(strlen(*pathp) + 2);
170 strcpy(path, *pathp);
200 *pathp = path;
205 *pathp = NULL;
/freebsd-current/lib/libutil/
H A Dpidfile.c122 pidfile_open(const char *pathp, mode_t mode, pid_t *pidptr) argument
134 if (pathp == NULL) {
140 if (strlcpy(path, pathp, sizeof(path)) >= sizeof(path)) {
147 (void)strlcpy(path, pathp, sizeof(path));
343 pidfile_signal(const char *pathp, int sig, pid_t *pidptr) argument
348 fd = flopenat(AT_FDCWD, pathp,
362 errno = pidfile_read(AT_FDCWD, pathp, &pid);
H A Dlibutil.h123 int pidfile_signal(const char *pathp, int sig, pid_t *pidptr);
/freebsd-current/sys/security/audit/
H A Daudit_arg.c733 audit_arg_upath(struct thread *td, int dirfd, char *upath, char **pathp) argument
736 if (*pathp == NULL)
737 *pathp = malloc(MAXPATHLEN, M_AUDITPATH, M_WAITOK);
738 audit_canon_path(td, dirfd, upath, *pathp);
769 char *upath, char **pathp)
772 if (*pathp == NULL)
773 *pathp = malloc(MAXPATHLEN, M_AUDITPATH, M_WAITOK);
774 audit_canon_path_vp(td, rdir, cdir, upath, *pathp);
813 audit_arg_upath_canon(char *upath, char **pathp) argument
816 if (*pathp
768 audit_arg_upath_vp(struct thread *td, struct vnode *rdir, struct vnode *cdir, char *upath, char **pathp) argument
[all...]
H A Daudit.c795 char **pathp; local
831 pathp = &ar->k_ar.ar_arg_upath1;
832 *pathp = malloc(MAXPATHLEN, M_AUDITPATH, M_WAITOK);
833 audit_canon_path(td, AT_FDCWD, path, *pathp);
/freebsd-current/contrib/nvi/common/
H A Drecover.c610 char *name, *p, *t, *rp, *recp, *pathp; local
625 recp = pathp = NULL;
712 t = pathp;
714 pathp = path;
758 if (file_init(sp, frp, pathp, 0)) {
760 free(pathp);
764 free(pathp);
/freebsd-current/sys/contrib/libfdt/
H A Dfdt_overlay.c93 * @pathp: pointer which receives the path of the target (or NULL)
104 int fragment, char const **pathp)
141 if (pathp)
142 *pathp = path ? path : NULL;
103 overlay_get_target(const void *fdt, const void *fdto, int fragment, char const **pathp) argument
/freebsd-current/contrib/libpcap/
H A Dpcap.c1689 * are set to NULL, *pathp is set to point to the source, and 0 is
1694 * to NULL, *pathp is set to point to the device name, and 0 is returned.
1713 * *pathp is set to point to an allocated string containing the
1722 char **hostp, char **portp, char **pathp, char *ebuf)
1740 *pathp = NULL;
1769 *pathp = strdup(source);
1770 if (*pathp == NULL) {
1794 *pathp = strdup(source);
1795 if (*pathp == NULL) {
1826 *pathp
1721 pcap_parse_source(const char *source, char **schemep, char **userinfop, char **hostp, char **portp, char **pathp, char *ebuf) argument
[all...]
/freebsd-current/crypto/openssh/
H A Dmisc.c799 * If path was not specified then *pathp will be set to ".".
803 parse_user_host_path(const char *s, char **userp, char **hostp, char **pathp) argument
813 if (pathp != NULL)
814 *pathp = NULL;
849 if (pathp != NULL) {
850 *pathp = path;
994 * If path was not specified then *pathp will be set to NULL.
999 int *portp, char **pathp)
1017 if (pathp != NULL)
1018 *pathp
998 parse_uri(const char *scheme, const char *uri, char **userp, char **hostp, int *portp, char **pathp) argument
[all...]
H A Dscp.c753 char **pathp)
757 r = parse_uri("scp", uri, userp, hostp, portp, pathp);
758 if (r == 0 && *pathp == NULL)
759 *pathp = xstrdup(".");
752 parse_scp_uri(const char *uri, char **userp, char **hostp, int *portp, char **pathp) argument
/freebsd-current/contrib/nvi/ex/
H A Dex_cscope.c306 char *p, **pathp, *buf; local
347 for (pathp = csc->paths, p = strtok(csc->pbuf, ":");
349 *pathp++ = p;
/freebsd-current/stand/fdt/
H A Dfdt_loader_cmd.c1632 fdt_extract_nameloc(char **pathp, char **namep, int *nodeoff) argument
1635 char *path = *pathp, *name = NULL, *subpath = NULL;
1662 *pathp = path;
/freebsd-current/sys/netgraph/
H A Dng_base.c1652 * string, setting *nodep to "NODE" (or NULL if none) and *pathp
1659 ng_path_parse(char *addr, char **nodep, char **pathp, char **hookp) argument
1716 if (pathp)
1717 *pathp = path;

Completed in 143 milliseconds