HomeSort by relevance Sort by last modified time
    Searched defs:bind (Results 1 - 25 of 53) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/lib/libbc/libc/sys/common/
bind.c 37 bind(int s, struct sockaddr *name, int namelen) function
  /onnv/onnv-gate/usr/src/lib/libnsl/nsl/
t_free.c 45 struct t_bind *bind; member in union:structptrs
62 p.bind = (struct t_bind *)ptr;
63 if (p.bind->addr.buf != NULL)
64 free(p.bind->addr.buf);
t_alloc.c 58 struct t_bind *bind; member in union:structptrs
111 if ((p.bind = calloc(1, sizeof (struct t_bind))) == NULL)
114 if (_alloc_buf(&p.bind->addr,
120 return ((char *)p.bind);
  /onnv/onnv-gate/usr/src/uts/common/ktli/
t_kfree.c 70 struct t_bind *bind; member in union:structptrs
87 p.bind = (struct t_bind *)ptr;
88 if (p.bind->addr.buf != NULL)
89 kmem_free(p.bind->addr.buf, p.bind->addr.maxlen);
t_kalloc.c 73 struct t_bind *bind; member in union:structptrs
93 p.bind = kmem_zalloc(sizeof (struct t_bind), KM_SLEEP);
95 _alloc_buf(&p.bind->addr, tiptr->tp_info.addr);
96 *ptr = ((char *)p.bind);
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/IO/lib/IO/Socket/
INET.pm 171 $sock->bind($lport || 0, $laddr) or
227 sub bind { subroutine
229 croak 'usage: $sock->bind(NAME) or $sock->bind(PORT, ADDR)';
231 return $sock->SUPER::bind(@_ == 1 ? shift : pack_sockaddr_in(@_))
311 LocalAddr Local host bind address hostname[:port]
313 LocalPort Local host bind port <service>[(<no>)] | <no>
372 or die "Can't bind : $@\n";
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/IO/lib/IO/
Socket.pm 144 sub bind { subroutine
145 @_ == 2 or croak 'usage: $sock->bind(NAME)';
149 return bind($sock, $addr) ? $sock
356 bind
  /onnv/onnv-gate/usr/src/lib/ncad_addr/common/
ncad_addr.c 31 * This library overloads AF_INET's version of bind(3SOCKET) with AF_NCA's
32 * version. The new version of bind checks to see if that the port is one
34 * the family AF_NCA. Afterwards, the real bind(3SOCKET) is called
61 #pragma weak bind = nca_bind macro
101 real_bind = (sfunc2_t *)dlsym(RTLD_NEXT, "bind");
192 * If the bind is happening on a port NCA is listening on, close
216 if ((real_bind = (sfunc2_t *)dlsym(RTLD_NEXT, "bind"))
  /onnv/onnv-gate/usr/src/cmd/sgs/librtld/common/
relocate.c 98 uchar_t bind; local
161 bind = STB_LOCAL;
163 bind = STB_GLOBAL;
171 if (bind == STB_LOCAL) {
197 if (bind == STB_LOCAL) {
236 if (bind == STB_LOCAL) {
326 * bind unresolved weak references consider ourself
  /onnv/onnv-gate/usr/src/uts/common/io/drm/
drm_agpsupport.c 456 agp_bind_t bind; local
459 bind.agpb_pgstart = start;
460 bind.agpb_key = key;
462 (intptr_t)&bind, FKIOCTL, kcred, &rval);
  /onnv/onnv-gate/usr/src/uts/common/sys/
hwconf.h 67 struct bind { struct
68 struct bind *b_next;
89 extern struct bind *mb_hashtab[];
90 extern struct bind *sb_hashtab[];
  /onnv/onnv-gate/usr/src/uts/common/io/softmac/
softmac_ctl.c 52 dl_bind_req_t *bind; local
56 * create bind req message and send it down
62 bind = (dl_bind_req_t *)reqmp->b_rptr;
63 bind->dl_sap = sap;
64 bind->dl_conn_mgmt = 0;
65 bind->dl_max_conind = 0;
66 bind->dl_xidtest_flg = 0;
67 bind->dl_service_mode = DL_CLDLS;
  /onnv/onnv-gate/usr/src/cmd/sgs/libelf/demo/
dispsyms.c 129 "bind oth shndx name\n");
142 uint_t bind; local
225 bind = GELF_ST_BIND(sym.st_info);
235 if (bind < STB_NUM)
236 bindstr = symbind[bind];
239 "%d", bind);
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Net/
Ping.pm 117 $self->{"local_addr"} = undef; # Don't bind by default
196 # For ICMP and UDP pings, this calls bind() on the already-opened socket;
199 sub bind subroutine
207 croak("Usage: \$p->bind(\$local_addr)") unless @_ == 2;
217 CORE::bind($self->{"fh"}, sockaddr_in(0, $ip)) ||
218 croak("$self->{'proto'} bind error - $!");
222 croak("Unknown protocol \"$self->{proto}\" in bind()");
572 !CORE::bind($self->{"fh"}, sockaddr_in(0, $self->{"local_addr"}))) {
573 croak("tcp bind error - $!");
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsocket/socket/
weaks.c 44 #pragma weak bind = _bind macro
  /onnv/onnv-gate/usr/src/uts/common/io/
devpool.c 211 pool_bind_t bind; local
448 if (ddi_copyin((void *)arg, &bind,
453 ret = pool_bind(bind.pb_o_pool_id, bind.pb_o_id_type,
454 bind.pb_o_id);
  /onnv/onnv-gate/usr/src/cmd/sgs/ldd/common/
ldd.c 132 static char bind[] = "LD_BIND_NOW= ", variable
306 bind[sizeof (bind) - 2] = (rflag) ? '1' : '\0';
712 if ((putenv(warn) != 0) || (putenv(bind) != 0) ||
  /onnv/onnv-gate/usr/src/uts/common/io/ib/adapters/hermon/
hermon_srq.c 229 * allocation itself and the other for the DMA handle (for later bind).
591 hermon_bind_info_t bind; local
682 * Fill in the "bind" struct. This struct provides the majority
685 * below). The "bind" struct is later passed to hermon_mr_mem_bind()
689 _NOTE(NOW_INVISIBLE_TO_OTHER_THREADS(bind))
690 bzero(&bind, sizeof (hermon_bind_info_t));
691 bind.bi_type = HERMON_BINDHDL_VADDR;
692 bind.bi_addr = (uint64_t)(uintptr_t)buf;
693 bind.bi_len = new_srqinfo.qa_size;
694 bind.bi_as = NULL
    [all...]
  /onnv/onnv-gate/usr/src/uts/i86pc/i86hvm/io/xpv/
evtchn.c 206 evtchn_bind_interdomain_t bind; local
209 bind.remote_dom = (domid_t)domid;
210 bind.remote_port = remote_port;
212 &bind)) == 0)
213 *port = bind.local_port;
232 * Xen hard-codes all notifications to VCPU0, so we bind
  /onnv/onnv-gate/usr/src/cmd/sgs/liblddbg/common/
syms.c 566 * elfdump: index value size type bind oth ver shndx name
567 * ld: value size type bind oth ver shndx
597 uchar_t bind = ELF_ST_BIND(sym->st_info); local
614 conv_sym_info_bind(bind, 0, &inv_buf3),
  /onnv/onnv-gate/usr/src/lib/libc/port/i18n/
gettext_real.c 637 struct domain_binding *bind, *prev; local
666 bind = FIRSTBIND(gt);
669 while (bind) {
670 if (strcmp(domain, bind->domain) == 0) {
674 binding_addr = (type == TP_BINDING) ? &(bind->binding) :
675 &(bind->codeset);
694 prev = bind;
695 bind = bind->next;
696 } /* while (bind) */
    [all...]
  /onnv/onnv-gate/usr/src/stand/lib/sock/
socket.c 170 *((struct sockaddr_in *)name) = sockets[i].bind;
558 /* Do not check for duplicate bind() if SO_REUSEADDR option is set. */
564 if ((sockets[k].bind.sin_addr.s_addr ==
566 (sockets[k].bind.sin_port ==
579 bind(int s, const struct sockaddr *name, socklen_t namelen) function
591 bzero((caddr_t)&sockets[i].bind,
606 if (bcmp((caddr_t)&sockets[i].bind, (caddr_t)name,
608 /* attempt to bind to same address ok... */
619 /* Check for duplicate bind(). */
623 bcopy((caddr_t)name, (caddr_t)&sockets[i].bind, namelen)
    [all...]
socket_impl.h 131 struct sockaddr_in bind; /* Binding info */ member in struct:inetboot_socket
  /onnv/onnv-gate/usr/src/uts/common/io/nxge/npi/
npi_vir.c 761 dma_bind_t bind; local
790 bind.value = 0;
792 bind.bits.ldw.tx_bind = 1;
793 bind.bits.ldw.tx = tn;
796 bind.bits.ldw.rx_bind = 1;
797 bind.bits.ldw.rx = rn;
801 DMA_BIND_REG_OFFSET(fn, region, id), bind.value);
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/ib/adapters/tavor/
tavor_srq.c 236 * allocation itself and the other for the DMA handle (for later bind).
651 tavor_bind_info_t bind; local
755 * Fill in the "bind" struct. This struct provides the majority
758 * below). The "bind" struct is later passed to tavor_mr_mem_bind()
762 _NOTE(NOW_INVISIBLE_TO_OTHER_THREADS(bind))
763 bzero(&bind, sizeof (tavor_bind_info_t));
764 bind.bi_type = TAVOR_BINDHDL_VADDR;
765 bind.bi_addr = (uint64_t)(uintptr_t)buf;
766 bind.bi_len = new_srqinfo.qa_size;
767 bind.bi_as = NULL
    [all...]

Completed in 2170 milliseconds

1 2 3