Searched refs:dom (Results 1 - 5 of 5) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/net/
H A Dradix.c1154 struct domain *dom; local
1157 for (dom = domains; dom; dom = dom->dom_next)
1158 if (dom->dom_maxrtkey > max_keylen)
1159 max_keylen = dom->dom_maxrtkey;
H A Droute.c367 struct domain *dom; local
368 for (dom = domains; dom; dom = dom->dom_next)
369 if (dom->dom_rtattach)
370 dom->dom_rtattach(&table[dom->dom_family],
371 dom->dom_rtoffset);
/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dsocketvar.h464 extern struct socket *soalloc(int waitok, int dom, int type);
472 extern int socreate(int dom, struct socket **aso, int type, int proto);
/macosx-10.5.8/xnu-1228.15.4/bsd/nfs/
H A Dnfs_subs.c1986 struct domain *dom; local
2054 for (dom = domains; dom; dom = dom->dom_next)
2055 if (dom->dom_family == i && dom->dom_rtattach) {
2056 dom->dom_rtattach((void **)&nx->nx_rtable[i],
2057 dom->dom_rtoffset);
/macosx-10.5.8/xnu-1228.15.4/bsd/kern/
H A Duipc_socket.c441 soalloc(int waitok, int dom, int type) argument
445 if ((dom == PF_INET) && (type == SOCK_STREAM)) {
483 socreate(int dom, struct socket **aso, int type, int proto) argument
493 prp = pffindproto(dom, proto, type);
495 prp = pffindtype(dom, type);
498 if (pffinddomain(dom) == NULL) {
502 if (pffindprotonotype(dom, proto) != NULL) {
510 so = soalloc(p != 0, dom, type);

Completed in 63 milliseconds