Searched refs:npp (Results 1 - 12 of 12) sorted by relevance

/freebsd-10.1-release/lib/libc/rpc/
H A Dgetnetpath.c89 char *npp; /* NETPATH env variable */ local
105 if ((npp = getenv(NETPATH)) == NULL) {
110 if ((np_sessionp->netpath = malloc(strlen(npp)+1)) == NULL)
113 (void) strcpy(np_sessionp->netpath, npp);
150 char *npp; /* holds current NETPATH */ local
172 while ((npp = np_sessionp->netpath) != NULL && strlen(npp) != 0) {
173 np_sessionp->netpath = _get_next_token(npp, ':');
175 * npp is a network identifier.
177 if ((ncp = getnetconfigent(npp)) !
[all...]
/freebsd-10.1-release/sys/net/
H A Dnetisr.c626 netisr_get_dispatch(struct netisr_proto *npp) argument
632 if (npp->np_dispatch != NETISR_DISPATCH_DEFAULT)
633 return (npp->np_dispatch);
643 netisr_select_cpuid(struct netisr_proto *npp, u_int dispatch_policy, argument
665 policy = npp->np_policy;
667 m = npp->np_m2cpuid(m, source, cpuidp);
689 if (!(m->m_flags & M_FLOWID) && npp->np_m2flow != NULL) {
690 m = npp->np_m2flow(m, source);
703 ("%s: invalid policy %u for %s", __func__, npp->np_policy,
704 npp
942 struct netisr_proto *npp; local
1204 struct netisr_proto *npp; local
1307 struct netisr_proto *npp; local
[all...]
/freebsd-10.1-release/sys/fs/nfsclient/
H A Dnfs_clnode.c95 ncl_nget(struct mount *mntp, u_int8_t *fhp, int fhsize, struct nfsnode **npp, argument
108 *npp = NULL;
122 *npp = VTONFS(nvp);
167 *npp = NULL;
178 *npp = VTONFS(nvp);
182 *npp = np;
H A Dnfs_clport.c112 struct componentname *cnp, struct thread *td, struct nfsnode **npp,
124 *npp = NULL;
196 *npp = np;
259 *npp = NULL;
272 *npp = VTONFS(nvp);
276 *npp = np;
294 struct thread *td, struct nfsnode **npp)
301 *npp = NULL;
341 *npp = VTONFS(nvp);
111 nfscl_nget(struct mount *mntp, struct vnode *dvp, struct nfsfh *nfhp, struct componentname *cnp, struct thread *td, struct nfsnode **npp, void *stuff, int lkflags) argument
293 nfscl_ngetreopen(struct mount *mntp, u_int8_t *fhp, int fhsize, struct thread *td, struct nfsnode **npp) argument
H A Dnfs_clvnops.c2451 * allocate an nfsnode, depending on the value of npp.
2452 * npp == NULL --> just do the lookup
2453 * *npp == NULL --> allocate a new nfsnode and make sure attributes are
2455 * *npp != NULL --> update the file handle in the vnode
2459 struct thread *td, struct nfsnode **npp)
2473 if (npp && !error) {
2474 if (*npp != NULL) {
2475 np = *npp;
2530 if (!attrflag && *npp == NULL) {
2541 if (npp
2458 nfs_lookitup(struct vnode *dvp, char *name, int len, struct ucred *cred, struct thread *td, struct nfsnode **npp) argument
[all...]
/freebsd-10.1-release/sys/nfsclient/
H A Dnfs_node.c105 nfs_nget(struct mount *mntp, nfsfh_t *fhp, int fhsize, struct nfsnode **npp, int flags) argument
117 *npp = NULL;
128 *npp = VTONFS(nvp);
163 *npp = NULL;
176 *npp = VTONFS(nvp);
180 *npp = np;
H A Dnfs_vnops.c2803 * allocate an nfsnode, depending on the value of npp.
2804 * npp == NULL --> just do the lookup
2805 * *npp == NULL --> allocate a new nfsnode and make sure attributes are
2807 * *npp != NULL --> update the file handle in the vnode
2811 struct thread *td, struct nfsnode **npp)
2829 if (npp && !error) {
2831 if (*npp) {
2832 np = *npp;
2854 if (!attrflag && *npp == NULL) {
2867 if (npp
2810 nfs_lookitup(struct vnode *dvp, const char *name, int len, struct ucred *cred, struct thread *td, struct nfsnode **npp) argument
[all...]
/freebsd-10.1-release/usr.bin/netstat/
H A Dnetisr.c232 struct netisr_proto *np_array, *npp; local
275 npp = &np_array[i];
276 if (npp->np_name == NULL)
280 netisr_load_kvm_string(kd, (uintptr_t)npp->np_name,
283 snpp->snp_qlimit = npp->np_qlimit;
284 snpp->snp_policy = npp->np_policy;
285 snpp->snp_dispatch = npp->np_dispatch;
286 if (npp->np_m2flow != NULL)
288 if (npp->np_m2cpuid != NULL)
290 if (npp
[all...]
/freebsd-10.1-release/contrib/gcc/
H A Dstmt.c2734 case_node_ptr *npp;
2758 npp = head;
2759 left = *npp;
2769 if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
2770 i -= COST_TABLE (TREE_INT_CST_LOW ((*npp)->high));
2771 i -= COST_TABLE (TREE_INT_CST_LOW ((*npp)->low));
2774 npp = &(*npp)->right;
2791 npp
2718 case_node_ptr *npp; local
[all...]
/freebsd-10.1-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_proc.c765 dt_proc_notify_t *npr, **npp; local
840 npp = &dph->dph_notify;
842 while ((npr = *npp) != NULL) {
844 *npp = npr->dprn_next;
847 npp = &npr->dprn_next;
/freebsd-10.1-release/sys/contrib/ipfilter/netinet/
H A Dip_nat.c8239 ipnat_t **newtab, *np, ***old, **npp; local
8288 for (npp = newtab + hv; *npp != NULL; )
8289 npp = &(*npp)->in_rnext;
8290 np->in_prnext = npp;
8291 *npp = np;
8296 for (npp = newtab + hv; *npp != NULL; )
8297 npp
[all...]
/freebsd-10.1-release/etc/
H A Dservices186 npp 92/tcp #Network Printing Protocol
187 npp 92/udp #Network Printing Protocol

Completed in 190 milliseconds