Searched refs:portno (Results 1 - 14 of 14) sorted by relevance

/freebsd-11-stable/contrib/apr-util/ldap/
H A Dapr_ldap_init.c150 int portno,
166 *ldap = ldapssl_init(hostname, portno, secure == APR_LDAP_SSL);
168 *ldap = ldapssl_init(hostname, portno, 0);
171 *ldap = ldap_sslinit((char *)hostname, portno, 0);
173 *ldap = ldap_init((char *)hostname, portno);
147 apr_ldap_init(apr_pool_t *pool, LDAP **ldap, const char *hostname, int portno, int secure, apr_ldap_err_t **result_err) argument
H A Dapr_ldap_stub.c76 int portno,
81 return lfn->init(pool, ldap, hostname, portno, secure, result_err);
73 apr_ldap_init(apr_pool_t *pool, LDAP **ldap, const char *hostname, int portno, int secure, apr_ldap_err_t **result_err) argument
/freebsd-11-stable/sys/contrib/ngatm/netnatm/api/
H A Dcc_port.c52 find_port(struct ccdata *cc, u_int portno) argument
57 if (port->param.port == portno)
67 cc_port_create(struct ccdata *cc, void *uarg, u_int portno) argument
71 if (portno == 0 || portno > 0xffffffff)
75 if (port->param.port == portno)
87 port->param.port = portno;
98 if (p1->param.port > portno) {
176 cc_get_addrs(struct ccdata *cc, u_int portno, argument
188 if (portno !
247 cc_addr_unregister(struct ccdata *cc, u_int portno, const struct uni_addr *arg) argument
270 cc_addr_register(struct ccdata *cc, u_int portno, const struct uni_addr *arg) argument
298 cc_port_get_param(struct ccdata *cc, u_int portno, struct atm_port_info *param) argument
358 cc_port_start(struct ccdata *cc, u_int portno) argument
375 cc_port_stop(struct ccdata *cc, u_int portno) argument
399 cc_port_isrunning(struct ccdata *cc, u_int portno, int *state) argument
416 cc_port_clear(struct ccdata *cc, u_int portno) argument
435 cc_get_local_port_info(struct ccdata *cc, u_int portno, size_t *lenp) argument
[all...]
H A Datmapi.h276 uint32_t portno; member in struct:atm_exstatus_port
H A Dcc_data.c202 eport->portno = port->param.port;
/freebsd-11-stable/contrib/apr-util/include/
H A Dapr_ldap_init.h135 * @param portno The port to connect to
142 int portno,
/freebsd-11-stable/sys/dev/usb/
H A Dusb_hub.c591 uhub_read_port_status(struct uhub_softc *sc, uint8_t portno) argument
597 DPRINTFN(4, "port %d, HUB looks dead, too many errors\n", portno);
604 sc->sc_udev, NULL, &ps, portno);
620 portno, sc->sc_st.port_status,
633 uhub_reattach_port(struct uhub_softc *sc, uint8_t portno) argument
643 DPRINTF("reattaching port %d\n", portno);
648 udev->hub->ports + portno - 1);
655 portno, UHF_C_PORT_CONNECTION);
671 err = uhub_read_port_status(sc, portno);
708 "has no power\n", portno);
906 uhub_suspend_resume_port(struct uhub_softc *sc, uint8_t portno) argument
1031 uint8_t portno; local
1242 uint8_t portno; local
1643 uint8_t portno; member in struct:hub_result
[all...]
/freebsd-11-stable/sys/dev/usb/serial/
H A Dumcs.c988 umcs7840_get_UART_reg_sync(struct umcs7840_softc *sc, uint8_t portno, uint8_t reg, uint8_t *data) argument
995 /* portno is port number */
996 wVal = ((uint16_t)(portno + 1)) << 8;
1006 device_printf(sc->sc_dev, "Reading UART%d register %d failed: invalid length %d\n", portno, reg, len);
1009 device_printf(sc->sc_dev, "Reading UART%d register %d failed: %s\n", portno, reg, usbd_errstr(err));
1014 umcs7840_set_UART_reg_sync(struct umcs7840_softc *sc, uint8_t portno, uint8_t reg, uint8_t data) argument
1020 /* portno is port number */
1021 wVal = ((uint16_t)(portno + 1)) << 8 | data;
1031 device_printf(sc->sc_dev, "Writing UART%d register %d failed: %s\n", portno, reg, usbd_errstr(err));
1036 umcs7840_set_baudrate(struct umcs7840_softc *sc, uint8_t portno, uint32_ argument
[all...]
/freebsd-11-stable/tools/regression/netinet/ipbroadcast/
H A Dipbroadcast.c131 int portno; local
149 portno = DEFAULT_PORT;
180 portno = atoi(optarg);
274 laddr.sin_port = htons(portno);
287 dsin.sin_port = htons(portno);
/freebsd-11-stable/contrib/apr-util/include/private/
H A Dapu_internal.h50 int portno, int secure, apr_ldap_err_t **result_err);
/freebsd-11-stable/tools/regression/netinet/ipmulticast/
H A Dipmulticast.c106 static uint16_t portno = DEFAULT_PORT; variable
182 laddr.sin.sin_port = htons(portno);
376 portno = DEFAULT_PORT;
407 portno = atoi(optarg);
752 " [-M ngroups] [-p portno] [-r] [-R] [-s] [-S nsources] [-t] [-T timeout]\n"
/freebsd-11-stable/sys/netgraph/atm/ccatm/
H A Dng_ccatm.c391 ng_ccatm_get_addresses(node_p node, uint32_t portno, struct ng_mesg *msg, argument
402 err = cc_get_addrs(priv->data, portno, &addrs, &ports, &count);
/freebsd-11-stable/contrib/unbound/services/
H A Doutside_network.c1797 int my_if, my_port, fd, portno, inuse, tries=0; local
1834 portno = pif->avail_ports[my_port - pif->inuse];
1836 my_port = portno = 0;
1839 portno, &inuse, outnet->rnd, outnet->ip_dscp);
1846 my_if, portno);
1866 pend->pc->number = portno;
1882 verbose(VERB_QUERY, "port %d in use, trying another", portno);
/freebsd-11-stable/contrib/sendmail/src/
H A Ddaemon.c1464 short portno; local
1798 portno = htons((unsigned short) atoi(port));
1812 portno = sp->s_port;
1816 (char *) &portno, 2);

Completed in 158 milliseconds