Home
last modified time | relevance | path

Searched refs:nss (Results 1 – 25 of 28) sorted by relevance

12

/titanic_41/usr/src/lib/libsocket/inet/
H A Dgetservbyname_r.c72 nssin.arg.nss.serv.name = name; in getservbyname_r()
73 nssin.arg.nss.serv.proto = proto; in getservbyname_r()
74 nssin.arg.nss.serv.buf = buffer; in getservbyname_r()
75 nssin.arg.nss.serv.buflen = buflen; in getservbyname_r()
77 nssout.nss.serv = result; in getservbyname_r()
89 return (nssout.nss.serv); in getservbyname_r()
106 nssin.arg.nss.serv.port = port; in getservbyport_r()
107 nssin.arg.nss.serv.proto = proto; in getservbyport_r()
108 nssin.arg.nss.serv.buf = buffer; in getservbyport_r()
109 nssin.arg.nss.serv.buflen = buflen; in getservbyport_r()
[all …]
/titanic_41/usr/src/lib/libnsl/nss/
H A Dgethostbyname_r.c127 nssin.arg.nss.host.name = nam; in gethostbyname_r()
128 nssin.arg.nss.host.buf = buffer; in gethostbyname_r()
129 nssin.arg.nss.host.buflen = buflen; in gethostbyname_r()
131 nssout.nss.host.hent = result; in gethostbyname_r()
132 nssout.nss.host.herrno_p = h_errnop; in gethostbyname_r()
143 return (nssout.nss.host.hent); in gethostbyname_r()
170 nssin.arg.nss.host.addr = addr; in gethostbyaddr_r()
171 nssin.arg.nss.host.len = length; in gethostbyaddr_r()
172 nssin.arg.nss.host.type = type; in gethostbyaddr_r()
173 nssin.arg.nss.host.buf = buffer; in gethostbyaddr_r()
[all …]
H A Dnetdir_inet.c212 if (strcmp(args->arg.nss.host.name, LOCALHOST) == 0) { in _get_hostserv_inetnetdir_byname()
216 _nderror = ndaddr2hent(AF_INET, args->arg.nss.host.name, in _get_hostserv_inetnetdir_byname()
217 &nd_conaddrlist, res->nss.host.hent, in _get_hostserv_inetnetdir_byname()
218 args->arg.nss.host.buf, in _get_hostserv_inetnetdir_byname()
219 args->arg.nss.host.buflen); in _get_hostserv_inetnetdir_byname()
222 *(res->nss.host.herrno_p) = in _get_hostserv_inetnetdir_byname()
231 if (inet_aton(args->arg.nss.host.name, in _get_hostserv_inetnetdir_byname()
237 _nderror = ndaddr2hent(AF_INET, args->arg.nss.host.name, in _get_hostserv_inetnetdir_byname()
238 &nd_conaddrlist, res->nss.host.hent, in _get_hostserv_inetnetdir_byname()
239 args->arg.nss.host.buf, in _get_hostserv_inetnetdir_byname()
[all …]
H A Dgetipnodeby.c261 nssin.arg.nss.host6.name = name; in getipnodebyname()
262 nssin.arg.nss.host6.buf = buf6->buffer; in getipnodebyname()
263 nssin.arg.nss.host6.buflen = buf6->buflen; in getipnodebyname()
264 nssin.arg.nss.host6.af_family = af; in getipnodebyname()
265 nssin.arg.nss.host6.flags = flags; in getipnodebyname()
266 nssout.nss.host.hent = buf6->result; in getipnodebyname()
267 nssout.nss.host.herrno_p = error_num; in getipnodebyname()
301 nssin.arg.nss.host.name = name; in getipnodebyname()
302 nssin.arg.nss.host.buf = buf4->buffer; in getipnodebyname()
303 nssin.arg.nss.host.buflen = buf4->buflen; in getipnodebyname()
[all …]
/titanic_41/usr/src/cmd/mdb/common/modules/genunix/
H A Dnetstack.c57 netstack_t nss; in netstack_walk_step() local
62 if (mdb_vread(&nss, sizeof (netstack_t), wsp->walk_addr) == -1) { in netstack_walk_step()
67 status = wsp->walk_callback(wsp->walk_addr, &nss, in netstack_walk_step()
73 wsp->walk_addr = (uintptr_t)nss.netstack_next; in netstack_walk_step()
81 netstack_t nss; in netstack() local
104 if (mdb_vread(&nss, sizeof (nss), addr) == -1) { in netstack()
119 addr, nss.netstack_stackid, nss.netstack_flags); in netstack()
H A Dnet.c87 netstack_t nss; in icmp_stacks_walk_step() local
89 if (mdb_vread(&nss, sizeof (nss), wsp->walk_addr) == -1) { in icmp_stacks_walk_step()
93 kaddr = (uintptr_t)nss.netstack_modules[NS_ICMP]; in icmp_stacks_walk_step()
111 netstack_t nss; in tcp_stacks_walk_step() local
113 if (mdb_vread(&nss, sizeof (nss), wsp->walk_addr) == -1) { in tcp_stacks_walk_step()
117 kaddr = (uintptr_t)nss.netstack_modules[NS_TCP]; in tcp_stacks_walk_step()
135 netstack_t nss; in udp_stacks_walk_step() local
137 if (mdb_vread(&nss, sizeof (nss), wsp->walk_addr) == -1) { in udp_stacks_walk_step()
141 kaddr = (uintptr_t)nss.netstack_modules[NS_UDP]; in udp_stacks_walk_step()
567 netstack_t nss; in ns_to_stackid() local
[all …]
/titanic_41/usr/src/head/
H A Dnss_netdir.h78 } nss; member
90 } nss; member
111 } nss; member
123 } nss; member
/titanic_41/usr/src/lib/libc/port/sys/
H A Dsigstack.c39 sigstack(struct sigstack *nss, struct sigstack *oss) in sigstack() argument
45 if (nss) { in sigstack()
47 nalt.ss_sp = (char *)nss->ss_sp - SIGSTKSZ; in sigstack()
/titanic_41/usr/src/uts/common/inet/sockmods/
H A Dsocksctp.h109 extern void sosctp_assoc_move(struct sctp_sonode *ss, struct sctp_sonode *nss,
111 extern void sosctp_so_inherit(struct sctp_sonode *lss, struct sctp_sonode *nss);
H A Dsocksctpsubr.c492 sosctp_so_inherit(struct sctp_sonode *lss, struct sctp_sonode *nss) in sosctp_so_inherit() argument
494 struct sonode *nso = &nss->ss_so; in sosctp_so_inherit()
513 sosctp_assoc_move(struct sctp_sonode *ss, struct sctp_sonode *nss, in sosctp_assoc_move() argument
520 sosctp_so_inherit(ss, nss); in sosctp_assoc_move()
523 nso = &nss->ss_so; in sosctp_assoc_move()
/titanic_41/usr/src/lib/libnsl/
H A DMakefile63 HDRS = nss.h
64 HDRDIR = nss
H A DMakefile.com124 pics/%.o: ../nss/%.c
230 $(NSS:%.o=../nss/%.c) \
/titanic_41/usr/src/ucblib/libucb/i386/sys/
H A Dsignal.c329 _sigstack(struct sigstack *nss, struct sigstack *oss) in _sigstack() argument
335 if (nss) { in _sigstack()
339 nalt.ss_sp = nss->ss_sp - SIGSTKSZ; in _sigstack()
/titanic_41/usr/src/lib/print/libpapi-dynamic/
H A DMakefile.com28 OBJECTS = job.o nss.o printer.o psm.o service.o
/titanic_41/usr/src/pkg/manifests/
H A Ddeveloper-opensolaris-osnet.mf58 depend fmri=system/library/mozilla-nss/header-nss@0.5.11-0.133 type=require
H A Dsystem-library.man4.inc14 file path=usr/share/man/man4/nss.4
/titanic_41/usr/src/cmd/netfiles/
H A DMakefile26 DEFAULTFILES= nss.dfl
/titanic_41/usr/src/lib/libnsl/netdir/
H A Dnetdir.c180 nssin.arg.nss.host6.af_family = AF_INET; in netdir_getbyname()
181 nssin.arg.nss.host6.flags = 0; in netdir_getbyname()
193 nssin.arg.nss.host6.af_family = AF_INET6; in netdir_getbyname()
194 nssin.arg.nss.host6.flags = (AI_ALL | AI_V4MAPPED); in netdir_getbyname()
/titanic_41/usr/src/cmd/mdb/common/modules/sctp/
H A Dsctp.c74 netstack_t nss; in ns_to_stackid() local
76 if (mdb_vread(&nss, sizeof (nss), kaddr) == -1) { in ns_to_stackid()
80 return (nss.netstack_stackid); in ns_to_stackid()
97 netstack_t nss; in sctp_stacks_walk_step() local
99 if (mdb_vread(&nss, sizeof (nss), wsp->walk_addr) == -1) { in sctp_stacks_walk_step()
103 kaddr = (uintptr_t)nss.netstack_modules[NS_SCTP]; in sctp_stacks_walk_step()
/titanic_41/usr/src/ucblib/libucb/sparc/sys/
H A Dsignal.c530 _sigstack(struct sigstack *nss, struct sigstack *oss) in _sigstack() argument
536 if (nss) { in _sigstack()
540 nalt.ss_sp = nss->ss_sp - SIGSTKSZ; in _sigstack()
/titanic_41/usr/src/cmd/mdb/common/modules/ip/
H A Dip.c265 netstack_t nss; in ips_to_stackid() local
272 if (mdb_vread(&nss, sizeof (nss), kaddr) == -1) { in ips_to_stackid()
276 return (nss.netstack_stackid); in ips_to_stackid()
365 netstack_t nss; in ns_walk_step() local
367 if (mdb_vread(&nss, sizeof (nss), wsp->walk_addr) == -1) { in ns_walk_step()
371 kaddr = (uintptr_t)nss.netstack_modules[which]; in ns_walk_step()
3048 netstack_t nss; in conn_status_cb() local
3058 if (mdb_vread(&nss, sizeof (nss), in conn_status_cb()
3065 nss.netstack_stackid, conn->conn_zoneid); in conn_status_cb()
/titanic_41/usr/src/man/man4/
H A DMakefile134 nss.4 \
/titanic_41/usr/src/uts/common/pcmcia/cis/
H A Dcis_handlers.c1698 for (cs->data.voice.nss = 0; LOOK_BYTE(tp) != 0 &&
1700 cs->data.voice.nss++) {
1701 cs->data.voice.ss[cs->data.voice.nss] =
1703 cs->data.voice.ss[cs->data.voice.nss] +=
/titanic_41/usr/src/uts/common/pcmcia/sys/
H A Dcis_handlers.h408 uint32_t nss; member
/titanic_41/usr/src/lib/libnsl/common/
H A Dllib-lnsl392 * usr/src/lib/libnsl/nss routines
1095 /* usr/src/lib/libnsl/nss/parse.c */

12