Searched refs:np (Results 1 - 25 of 344) sorted by relevance

1234567891011>>

/macosx-10.9.5/dcerpc-58/dcerpc/idl_compiler/
H A Dast.h427 #define AST_CLR_FLAGS(np) (np)->flags = 0
429 #define AST_DOUBLE_USED_SET(np) (AST_DOUBLE_USED & (np)->flags)
430 #define AST_CLR_DOUBLE_USED(np) (np)->flags &= ~AST_DOUBLE_USED
431 #define AST_SET_DOUBLE_USED(np) (np)->flags |= AST_DOUBLE_USED
433 #define AST_HAS_ENCODE_OPS_SET(np) (AST_HAS_ENCODE_OPS & (np)
[all...]
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dname_code.c71 const NAME_CODE *np; local
79 for (np = table; np->name; np++)
80 if (lookup(name, np->name) == 0)
82 return (np->code);
89 const NAME_CODE *np; local
91 for (np = table; np->name; np
[all...]
H A Dnbbio.c16 /* void nbbio_free(np)
17 /* NBBIO *np;
19 /* void nbbio_enable_read(np, timeout)
20 /* NBBIO *np;
23 /* void nbbio_enable_write(np, timeout)
24 /* NBBIO *np;
27 /* void nbbio_disable_readwrite(np)
28 /* NBBIO *np;
30 /* void nbbio_slumber(np, timeout)
31 /* NBBIO *np;
157 NBBIO *np = (NBBIO *) context; local
256 nbbio_enable_read(NBBIO *np, int timeout) argument
283 nbbio_enable_write(NBBIO *np, int timeout) argument
310 nbbio_disable_readwrite(NBBIO *np) argument
319 nbbio_slumber(NBBIO *np, int timeout) argument
331 NBBIO *np; local
363 nbbio_free(NBBIO *np) argument
[all...]
H A Dnbbio.h45 #define NBBIO_OP_NAME(np) \
46 (((np)->flags & NBBIO_FLAG_READ) ? "read" : \
47 ((np)->flags & NBBIO_FLAG_WRITE) ? "write" : \
56 #define NBBIO_BUFSIZE(np) (((np)->bufsize) + 0) /* Read-only */
58 #define NBBIO_READ_PEND(np) ((np)->read_pend)
59 #define NBBIO_READ_BUF(np) ((np)->read_buf + 0) /* Read-only */
61 #define NBBIO_WRITE_PEND(np) ((n
[all...]
H A Dsplit_nameval.c63 char *np; /* name substring */ local
80 SKIP(buf, np, ISSPACE(*np)); /* find name begin */
81 if (*np == 0)
83 SKIP(np, ep, !ISSPACE(*ep) && *ep != '='); /* find name end */
91 *name = np;
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dunsetenv.c52 const char *np; local
58 for (np = name; *np && *np != '='; np++)
60 len = np - name;
/macosx-10.9.5/xnu-2422.115.4/bsd/nfs/
H A Dnfs_node.c199 nfsnode_t np; local
221 for (np = nhpp->lh_first; np != 0; np = np->n_hash.le_next) {
222 mp2 = (np->n_hflag & NHINIT) ? np->n_mount : NFSTOMP(np);
223 if (mp != mp2 || np->n_fhsize != fhsize ||
224 bcmp(fhp, np
594 nfsnode_t np; local
862 nfsnode_t np = VTONFS(vp); local
1053 nfs_node_lock_internal(nfsnode_t np, int force) argument
1067 nfs_node_lock(nfsnode_t np) argument
1073 nfs_node_lock_force(nfsnode_t np) argument
1082 nfs_node_unlock(nfsnode_t np) argument
1124 nfs_node_set_busy(nfsnode_t np, thread_t thd) argument
1144 nfs_node_clear_busy(nfsnode_t np) argument
1242 nfs_data_lock(nfsnode_t np, int locktype) argument
1247 nfs_data_lock_noupdate(nfsnode_t np, int locktype) argument
1252 nfs_data_lock_internal(nfsnode_t np, int locktype, int updatesize) argument
1272 nfs_data_unlock(nfsnode_t np) argument
1277 nfs_data_unlock_noupdate(nfsnode_t np) argument
1282 nfs_data_unlock_internal(nfsnode_t np, int updatesize) argument
1300 nfs_data_update_size(nfsnode_t np, int datalocked) argument
1334 nfsnode_t np; local
[all...]
/macosx-10.9.5/bash-92/bash-3.2/examples/loadables/
H A Dlogname.c22 char *np; local
27 np = getlogin ();
28 if (np == 0)
33 printf ("%s\n", np);
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/stdio/
H A Dgetline.c31 getline(char** sp, size_t* np, Sfio_t* f) argument
33 STDIO_INT(f, "getline", ssize_t, (char**, size_t*, Sfio_t*), (sp, np, f))
35 return getdelim(sp, np, '\n', f);
/macosx-10.9.5/ksh-20/ksh/src/lib/libcmd/
H A Dexpr.c141 #define numeric(np) ((np)->type&T_NUM)
185 static int getnode(State_t* state, Node_t *np) argument
207 np->num = (ep = strpbrk(cp, ep)) ? (ep - cp + 1) : 0;
208 np->type = T_NUM;
217 np->num = strlen(cp);
218 np->type = T_NUM;
225 if (!(np->str = *state->arglist++))
227 np->type = T_STR;
260 np
294 expr_cond(State_t* state, Node_t *np) argument
345 expr_mult(State_t* state, Node_t *np) argument
374 expr_add(State_t* state, Node_t *np) argument
394 expr_cmp(State_t* state, Node_t *np) argument
462 expr_and(State_t* state, Node_t *np) argument
478 expr_or(State_t* state, Node_t *np) argument
[all...]
/macosx-10.9.5/smb-697.95.1/kernel/smbfs/
H A Dsmbfs_node.c95 smbfs_build_path(char *path, struct smbnode *np, size_t maxlen) argument
97 struct smbmount *smp = np->n_mount;
103 * We hold sm_reclaim_renamelock to protect np->n_parent fields from a
109 while (np->n_parent) {
114 *npp++ = np;
115 np = np->n_parent;
119 np = *--npp;
123 lck_rw_lock_shared(&np->n_name_rwlock);
124 if (strlcat(path, (char *)np
240 smb_check_for_windows_symlink(struct smb_share *share, struct smbnode *np, int *symlen, vfs_context_t context) argument
316 smbnode_lock(struct smbnode *np, enum smbfslocktype locktype) argument
365 smbnode_unlock(struct smbnode *np) argument
437 smb_vhashrem(struct smbnode *np) argument
449 smb_vhashadd(struct smbnode *np, uint64_t hashval) argument
492 struct smbnode *np; local
674 struct smbnode *np, *dnp; local
1009 smbfs_find_vgetstrm(struct smbmount *smp, struct smbnode *np, const char *sname, size_t maxfilenamelen) argument
1033 struct smbnode *np, *snp; local
1237 struct smbnode *np = VTOSMB(vp); local
1316 struct smbnode *np = VTOSMB(vp); local
1362 smb_check_posix_access(vfs_context_t context, struct smbnode * np, mode_t rq_mode) argument
1584 struct smbnode *np = VTOSMB(vp); local
1779 struct smbnode *np = VTOSMB(vp); local
2051 struct smbnode *np = VTOSMB(vp); local
2077 smbfs_update_size(struct smbnode *np, struct timespec *reqtime, u_quad_t new_size) argument
2126 struct smbnode *np, *fdnp = NULL, *tdnp = NULL; local
2401 struct smbnode *np = VTOSMB(vp); local
2457 struct smbnode *np; local
2500 struct smbnode *np; local
2541 struct smbnode *np; local
2587 struct smbnode *np; local
2777 struct smbnode *np = VTOSMB(vp); local
2855 struct smbnode *np; local
2937 struct smbnode *np; local
3319 struct smbnode *np; local
3363 struct smbnode *np; local
3442 struct smbnode *np; local
[all...]
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dmbox_conf.c92 const NAME_MASK *np; local
96 for (np = mbox_mask; np->name != 0; np++)
97 argv_add(argv, np->name, ARGV_END);
/macosx-10.9.5/mail_cmds-29/mail/
H A Dv7.local.c90 char *np; local
93 if ((np = getenv("USER")) != NULL)
94 return (np);
95 if ((np = getenv("LOGNAME")) != NULL)
96 return (np);
97 if ((np = getname(uid = getuid())) != NULL)
98 return (np);
H A Dnames.c64 struct name *np; local
66 np = (struct name *)salloc(sizeof(*np));
67 np->n_flink = NULL;
68 np->n_blink = NULL;
69 np->n_type = ntype;
70 np->n_name = savestr(str);
71 return (np);
81 struct name *np; local
83 np
102 struct name *top, *np, *t; local
302 struct name *np, *top; local
476 struct name *new, *np, *cp; local
515 struct name *np; local
623 struct name *np, *t, *new; local
[all...]
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/sh/
H A Dname.c44 offsetof(struct Namref,np),sizeof(struct Namval_t*),sizeof(struct Namref)
98 Namval_t *np; member in struct:Namcache::Cache_entry
144 void sh_envput(Env_t* ep,Namval_t *np) argument
147 Namarr_t *ap = nv_arrayptr(np);
152 nv_putsub(np,"0",0L);
153 else if(!(val=nv_getsub(np)) || strcmp(val,"0"))
156 if(!(val = nv_getval(np)))
158 stakputs(nv_name(np));
210 Namval_t *nv_addnode(Namval_t* np, int remove) argument
216 if(sp->numnodes==0 && !nv_isnull(np)
297 register Namval_t *np, *mp; local
719 register Namval_t *np=0, *nq=0; local
1188 nv_delete(Namval_t* np, Dt_t *root, int flags) argument
1252 register Namval_t *np=0; local
1500 nv_putval(register Namval_t *np, const char *string, int flags) argument
1999 staknam(register Namval_t *np, char *value) argument
2017 attstore(register Namval_t *np, void *data) argument
2040 attstore(register Namval_t *np, void *data) argument
2075 pushnam(Namval_t *np, void *data) argument
2155 register Namval_t *np = (Namval_t*)arg; local
2249 sh_envnolocal(register Namval_t *np, void *data) argument
2291 nv_close(Namval_t *np) argument
2298 register Namval_t *np,*nq, *npnext; local
2351 _nv_unset(register Namval_t *np,int flags) argument
2467 sh_scoped(Shell_t *shp, register Namval_t *np) argument
2481 register Namval_t *np; local
2513 Namval_t *np; member in struct:optimize
2518 optimize_clear(Namval_t* np, Namfun_t *fp) argument
2533 put_optimize(Namval_t* np,const char *val,int flags,Namfun_t *fp) argument
2539 clone_optimize(Namval_t* np, Namval_t *mp, int flags, Namfun_t *fp) argument
2546 nv_optimize(Namval_t *np) argument
2624 nv_getval(register Namval_t *np) argument
2748 nv_getnum(register Namval_t *np) argument
2834 nv_newattr(register Namval_t *np, unsigned newatts, int size) argument
2977 register Namval_t *np; local
3009 register Namval_t *np; local
3025 register Namval_t *np; local
3079 nv_rename(register Namval_t *np, int flags) argument
3200 nv_setref(register Namval_t *np, Dt_t *hp, int flags) argument
3380 nv_unref(register Namval_t *np) argument
3441 Namval_t *np = (Namval_t*)obj; local
3453 nv_name(register Namval_t *np) argument
3540 nv_context(Namval_t *np) argument
3547 DISABLE(register Namval_t *np) argument
3553 nv_setsize(register Namval_t *np, int size) argument
3561 nv_shell(Namval_t *np) argument
3574 nv_unset(register Namval_t *np) argument
[all...]
H A Dnvdisc.c43 char *nv_getv(Namval_t *np, register Namfun_t *nfp) argument
54 if(!nv_isattr(np,NV_NODISC) || fp==(Namfun_t*)nv_arrayptr(np))
58 cp = (*fp->disc->getval)(np,fp);
61 sfprintf(sh.strbuf,"%.*Lg",12,(*fp->disc->getnum)(np,fp));
67 cp = nv_getval(np);
75 Sfdouble_t nv_getn(Namval_t *np, register Namfun_t *nfp) argument
88 if(!fp->disc->getnum && nv_isattr(np,NV_INTEGER))
90 if(!nv_isattr(np,NV_NODISC) || fp==(Namfun_t*)nv_arrayptr(np))
122 nv_putv(Namval_t *np, const char *value, int flags, register Namfun_t *nfp) argument
178 Namval_t *np; member in struct:blocked
193 block_info(Namval_t *np, struct blocked *pp) argument
227 chktfree(register Namval_t *np, register struct vardisc *vp) argument
247 assign(Namval_t *np,const char* val,int flags,Namfun_t *handle) argument
364 lookup(Namval_t *np, int type, Sfdouble_t *dp,Namfun_t *handle) argument
422 lookups(Namval_t *np, Namfun_t *handle) argument
427 lookupn(Namval_t *np, Namfun_t *handle) argument
442 nv_setdisc(register Namval_t* np,register const char *event,Namval_t *action,register Namfun_t *fp) argument
552 setdisc(register Namval_t* np,register const char *event,Namval_t *action,register Namfun_t *fp) argument
599 putdisc(Namval_t* np, const char* val, int flag, Namfun_t* fp) argument
645 nv_adddisc(Namval_t *np, const char **names, Namval_t **funs) argument
678 nv_disc(register Namval_t *np, register Namfun_t* fp, int mode) argument
760 nv_hasdisc(Namval_t *np, const Namdisc_t *dp) argument
777 put_notify(Namval_t* np,const char *val,int flags,Namfun_t *fp) argument
790 nv_unsetnotify(Namval_t *np, char **addr) argument
807 nv_setnotify(Namval_t *np, char **addr) argument
821 register Namval_t *np = newof(0,Namval_t,1,s=strlen(name)+1); local
834 num_clone(register Namval_t *np, void *val) argument
869 clone_all_disc( Namval_t *np, Namval_t *mp, int flags) argument
901 nv_clone(Namval_t *np, Namval_t *mp, int flags) argument
981 clone_getv(Namval_t *np, Namfun_t *handle) argument
986 clone_getn(Namval_t *np, Namfun_t *handle) argument
991 clone_putv(Namval_t *np,const char* val,int flags,Namfun_t *handle) argument
1013 Namval_t *np; local
1024 dtinsert(nv_dict(sh.namespace),np); local
1031 register Namval_t *np; local
1082 Namval_t *np, *nq; local
1156 register Namval_t *np, *nq=0; local
1221 nv_stack(register Namval_t *np, register Namfun_t* fp) argument
1234 next_table(register Namval_t* np, Dt_t *root,Namfun_t *fp) argument
1243 create_table(Namval_t *np,const char *name,int flags,Namfun_t *fp) argument
1250 clone_table(Namval_t* np, Namval_t *mp, int flags, Namfun_t *fp) argument
1268 put_table(register Namval_t* np, const char* val, int flags, Namfun_t* fp) argument
1294 get_table(Namval_t *np, Namfun_t *fp) argument
1334 nv_parent(Namval_t *np) argument
1342 nv_dict(Namval_t* np) argument
1362 nv_istable(Namval_t *np) argument
1370 nv_mount(Namval_t *np, const char *name, Dt_t *dict) argument
1410 nv_hasget(Namval_t *np) argument
[all...]
H A Dnvtree.c53 static int read_tree(Namval_t* np, Sfio_t *iop, int n, Namfun_t *dp) argument
62 sfprintf(sh.strbuf,"%s=%c",nv_name(np),0);
70 static Namval_t *create_tree(Namval_t *np,const char *name,int flag,Namfun_t *dp) argument
78 if(np=(*fp->disc->createf)(np,name,flag,fp))
80 return(np);
83 return((flag&NV_NOADD)?0:np);
86 static Namfun_t *clone_tree(Namval_t *np, Namval_t *mp, int flags, Namfun_t *fp){ argument
88 if ((flags&NV_MOVE) && nv_type(np))
93 walk_tree(np,m
132 nextdisc(Namval_t *np) argument
145 nv_diropen(Namval_t *np,const char *name) argument
277 register Namval_t *np, *last_table; local
378 outtype(Namval_t *np, Namfun_t *fp, Sfio_t* out, const char *prefix) argument
410 nv_attribute(register Namval_t *np,Sfio_t *out,char *prefix,int noname) argument
573 nv_outnode(Namval_t *np, Sfio_t* out, int indent, int special) argument
685 register Namval_t *np, *nq; local
829 Namval_t *np,*tp; local
868 Namval_t *np = nv_open(arg,wp->root,NV_VARNAME|NV_NOADD|NV_NOASSIGN|wp->noscope); local
940 walk_tree(register Namval_t *np, Namval_t *xp, int flags) argument
1057 nv_isvtree(Namval_t *np) argument
1067 nv_getvtree(register Namval_t *np, Namfun_t *fp) argument
1091 put_tree(register Namval_t *np, const char *val, int flags,Namfun_t *fp) argument
1132 nv_setvtree(register Namval_t *np) argument
[all...]
H A Darray.c79 static Namarr_t *array_scope(Namval_t *np, Namarr_t *ap, int flags) argument
120 static int array_unscope(Namval_t *np,Namarr_t *ap) argument
126 (*ap->fun)(np, NIL(char*), NV_AFREE);
127 if((fp = nv_disc(np,(Namfun_t*)ap,NV_POP)) && !(fp->nofree&1))
129 nv_delete(np,(Dt_t*)0,0);
138 static int array_covered(Namval_t *np, struct index_array *ap) argument
153 static void array_setptr(register Namval_t *np, struct index_array *old, struct index_array *new) argument
155 register Namfun_t **fp = &np->nvfun;
184 int array_maxindex(Namval_t *np) argument
186 register struct index_array *ap = (struct index_array*)nv_arrayptr(np);
194 array_getup(Namval_t *np, Namarr_t *arp, int update) argument
242 nv_arrayisset(Namval_t *np, Namarr_t *arp) argument
268 array_find(Namval_t *np,Namarr_t *arp, int flag) argument
392 nv_arraysettype(Namval_t *np, Namval_t *tp, const char *sub, int flags) argument
436 array_clone(Namval_t *np, Namval_t *mp, int flags, Namfun_t *fp) argument
549 array_getval(Namval_t *np, Namfun_t *disc) argument
576 array_getnum(Namval_t *np, Namfun_t *disc) argument
593 array_putval(Namval_t *np, const char *string, int flags, Namfun_t *dp) argument
756 array_copytree(Namval_t *np, Namval_t *mp) argument
779 array_grow(Namval_t *np, register struct index_array *arp,int maxi) argument
853 nv_atypeindex(Namval_t *np, const char *tname) argument
880 nv_arrayptr(register Namval_t *np) argument
891 nv_changearray(Namval_t *np, void *(*fun)(Namval_t*,const char*,int)) argument
937 nv_setarray(Namval_t *np, void *(*fun)(Namval_t*,const char*,int)) argument
985 nv_arraychild(Namval_t *np, Namval_t *nq, int c) argument
1033 nv_nextsub(Namval_t *np) argument
1129 nv_putsub(Namval_t *np,register char *sp,register long mode) argument
1301 nv_arrfixed(Namval_t *np, Sfio_t *out, int flag, char *dim) argument
1326 array_fixed_setdata(Namval_t *np,Namarr_t* ap,struct fixed_array* fp) argument
1335 array_fixed_init(Namval_t *np, char *sub, char *cp) argument
1384 array_fixed(Namval_t *np, char *sub, char *cp,int mode) argument
1438 nv_endsubscript(Namval_t *np, register char *cp, int mode) argument
1499 nv_opensub(Namval_t* np) argument
1538 nv_getsub(Namval_t* np) argument
1568 nv_aindex(register Namval_t* np) argument
1587 nv_aimax(register Namval_t* np) argument
1605 nv_associative(register Namval_t *np,const char *sp,int mode) argument
1748 nv_setvec(register Namval_t *np,int append,register int argc,register char *argv[]) argument
[all...]
H A Darith.c60 static Namval_t *scope(register Namval_t *np,register struct lval *lvalue,int assign) argument
63 register char *sub=0, *cp=(char*)np;
78 if((!(np = nv_open(cp,shp->var_tree,assign|NV_VARNAME|NV_NOADD|NV_NOFAIL)) || nv_isnull(np)) && sh_macfun(shp,cp, offset = staktell()))
85 if(!np && assign)
86 np = nv_open(cp,shp->var_tree,assign|NV_VARNAME);
88 if(!np)
95 cp = (char*)np;
97 else if(assign==NV_ASSIGN && nv_isnull(np) && !nv_isattr(np, ~(NV_MINIMA
200 register Namval_t *np = (Namval_t*)(lvalue->value); local
220 register Namval_t *np; local
245 Namval_t *np; local
413 register Namval_t *np = (Namval_t*)(lvalue->value); local
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/net/
H A Dndrv.c90 static int ndrv_setspec(struct ndrv_cb *np, struct sockopt *sopt);
94 static int ndrv_do_add_multicast(struct ndrv_cb *np, struct sockopt *sopt);
95 static int ndrv_do_remove_multicast(struct ndrv_cb *np, struct sockopt *sopt);
96 static struct ndrv_multiaddr* ndrv_have_multicast(struct ndrv_cb *np, struct sockaddr* addr);
97 static void ndrv_remove_all_multicast(struct ndrv_cb *np);
132 struct ndrv_cb *np = sotondrvcb(so); local
133 struct ifnet *ifp = np->nd_if;
137 kprintf("NDRV output: %x, %x, %x\n", m, so, np);
153 result = ifnet_output_raw(ifp, np->nd_proto_family, m);
170 struct ndrv_cb *np; local
214 struct ndrv_cb *np = sotondrvcb(so); local
255 struct ndrv_cb *np = sotondrvcb(so); local
275 struct ndrv_cb *np = sotondrvcb(so); local
321 struct ndrv_cb *np; local
391 struct ndrv_cb *np = sotondrvcb(so); local
438 struct ndrv_cb *np = sotondrvcb(so); local
450 struct ndrv_cb *np = sotondrvcb(so); local
472 struct ndrv_cb *np = sotondrvcb(so); local
496 struct ndrv_cb *np = sotondrvcb(so); local
532 ndrv_do_detach(struct ndrv_cb *np) argument
583 ndrv_do_disconnect(struct ndrv_cb *np) argument
663 ndrv_setspec(struct ndrv_cb *np, struct sockopt *sopt) argument
808 ndrv_delspec(struct ndrv_cb *np) argument
826 struct ndrv_cb* np; local
843 struct ndrv_cb* np; local
882 ndrv_do_add_multicast(struct ndrv_cb *np, struct sockopt *sopt) argument
935 ndrv_do_remove_multicast(struct ndrv_cb *np, struct sockopt *sopt) argument
1009 ndrv_have_multicast(struct ndrv_cb *np, struct sockaddr* inAddr) argument
1027 ndrv_remove_all_multicast(struct ndrv_cb* np) argument
[all...]
/macosx-10.9.5/man-16/man/src/
H A Djoin.c6 char **p, **q, **np; local
17 p = np = (char **) my_malloc((lth1+lth2+1)*sizeof(*np));
27 return np;
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/bltins/
H A Dtypeset.c183 Namval_t *np = nv_search((char*)PATHNOD,tdata.sh->var_tree,HASH_BUCKET); local
184 nv_putval(np,nv_getval(np),NV_RDONLY);
436 static void print_value(Sfio_t *iop, Namval_t *np, struct tdata *tp) argument
440 if(nv_isnull(np))
442 if(!np->nvflag)
446 else if(nv_istable(np))
448 Dt_t *root = nv_dict(np);
449 name = nv_name(np);
466 sfputr(iop,nv_name(np),afla
515 register Namval_t *np; local
894 register Namval_t *np; local
1076 register Namval_t *np; local
1197 print_namval(Sfio_t *file,register Namval_t *np,register int flag, struct tdata *tp) argument
1324 print_attribute(register Namval_t *np,void *data) argument
1338 register Namval_t *np; local
1386 pushname(Namval_t *np,void *data) argument
[all...]
/macosx-10.9.5/Libc-997.90.3/stdlib/FreeBSD/
H A Dgetenv.c59 const char *np; local
64 for (np = name; *np && *np != '='; ++np)
66 len = np - name;
68 for (np = name, i = len; i && *cp; i--)
69 if (*cp++ != *np++)
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dsetenv.c60 const char *np; local
66 for (np = name, i = len; i && *cp; i--)
67 if (*cp++ != *np++)
135 const char *np; local
138 for (np = name; *np && *np != '='; ++np)
141 if (*np) {
148 if ((C = __findenv(name, (int)(np
201 const char *np; local
[all...]
/macosx-10.9.5/tcpdump-56/tcpdump/
H A Dnameser.h240 #define DNS_QR(np) ((np)->flags1 & 0x80) /* response flag */
241 #define DNS_OPCODE(np) ((((np)->flags1) >> 3) & 0xF) /* purpose of message */
242 #define DNS_AA(np) ((np)->flags1 & 0x04) /* authoritative answer */
243 #define DNS_TC(np) ((np)->flags1 & 0x02) /* truncated message */
244 #define DNS_RD(np) ((np)
[all...]

Completed in 186 milliseconds

1234567891011>>