Searched refs:port (Results 201 - 225 of 982) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/sys/dev/ic/
H A Daic79xx_inline.h515 ahd_inw(struct ahd_softc *ahd, u_int port) argument
517 return ((ahd_inb(ahd, port+1) << 8) | ahd_inb(ahd, port));
521 ahd_outw(struct ahd_softc *ahd, u_int port, u_int value) argument
523 ahd_outb(ahd, port, value & 0xFF);
524 ahd_outb(ahd, port+1, (value >> 8) & 0xFF);
528 ahd_inl(struct ahd_softc *ahd, u_int port) argument
530 return ((ahd_inb(ahd, port))
531 | (ahd_inb(ahd, port+1) << 8)
532 | (ahd_inb(ahd, port
537 ahd_outl(struct ahd_softc *ahd, u_int port, uint32_t value) argument
546 ahd_inq(struct ahd_softc *ahd, u_int port) argument
559 ahd_outq(struct ahd_softc *ahd, u_int port, uint64_t value) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/atari/atari/
H A Dvectors.s131 VECTOR(intr_glue) | 64: parallel port - BUSY
132 VECTOR(badmfpint) | 65: modem port 1 - DCD
133 VECTOR(badmfpint) | 66: modem port 1 - CTS
135 VECTOR(badmfpint) | 68: modem port 1 baudgen (Timer D)
148 VECTOR(badmfpint) | 73: modem port 1 - XMIT error
149 VECTOR(badmfpint) | 74: modem port 1 - XMIT buffer empty
150 VECTOR(badmfpint) | 75: modem port 1 - RCV error
151 VECTOR(badmfpint) | 76: modem port 1 - RCV buffer full
153 VECTOR(badmfpint) | 78: modem port 1 - RI
162 VECTOR(badmfpint) | 83: modem port
[all...]
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/util/
H A Dmyaddrinfo.c81 /* enough to hold the printable address or port including the
132 /* Storage for the result service port number, or a null pointer.
135 /* ignored when no service or port are specified.
273 unsigned port; local
276 port = atoi(service);
277 return (port < 65536 ? htons(port) : -1);
312 int port; local
318 if ((port = find_service(service, socktype)) < 0)
321 port
476 int port; local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/libntp/
H A Daudio.c208 * only), preset the gain and set the input port. It assumes that the
347 info.play.port = AUDIO_SPEAKER;
365 * audio_gain - adjust codec gains and port
371 int port /* selected I/O port: 1 mic/2 line in */
396 if (2 == port)
425 if (o_port != port) {
428 printf("audio_gain: port %d\n", port);
430 l = (1 << ((port
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/pci/
H A Dmvsata_pci.c70 #define MVSATA_PCI_MAINIRQ_SATAERR(hc, port) \
71 (1 << (((port) << 1) + (hc) * 9))
72 #define MVSATA_PCI_MAINIRQ_SATADONE(hc, port) \
73 (1 << (((port) << 1) + (hc) * 9 + 1))
157 int read_pre_amps, hc, port, rv, i; local
229 for (port = 0; port < sc->sc_port; port++)
231 MVSATA_PCI_MAINIRQ_SATAERR(hc, port) |
232 MVSATA_PCI_MAINIRQ_SATADONE(hc, port);
258 int hc, port, handled = 0; local
505 int hc = mvport->port_hc->hc, port = mvport->port; local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/libevent/dist/
H A Devdns.c215 u16 port; member in struct:nameserver
232 /* Represents a local port where we're listening for DNS requests. Right now, */
238 char closing; /* Are we trying to close this port, pending writes? */
268 struct evdns_server_port *port; /* Which port received this request on? */ member in struct:server_request
337 static void server_port_free(struct evdns_server_port *port);
954 /* Parse a raw request (packet,length) sent to a nameserver port (port) from */
958 request_parse(u8 *packet, int length, struct evdns_server_port *port, struct sockaddr *addr, socklen_t addrlen) argument
1013 server_req->port
1220 server_port_flush(struct evdns_server_port *port) argument
1288 struct evdns_server_port *port = (struct evdns_server_port *) arg; local
1481 struct evdns_server_port *port; local
1503 evdns_close_server_port(struct evdns_server_port *port) argument
1730 struct evdns_server_port *port = req->port; local
1845 server_port_free(struct evdns_server_port *port) argument
2114 _evdns_nameserver_add_impl(unsigned long int address, int port) argument
2184 int port; local
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/demos/easy_tls/
H A Dtest.c45 int port; local
50 fputs("Usage: test [port] -- server\n"
51 " test num.num.num.num [port] -- client\n",
89 sscanf(argv[2], "%d", &port);
91 port = C_PORT;
92 addr.sin_port = htons(port);
119 sscanf(argv[1], "%d", &port);
121 port = L_PORT;
123 addr.sin_port = htons(port);
139 fprintf(stderr, "Listening at port
[all...]
/netbsd-6-1-5-RELEASE/dist/ipf/rules/
H A Dtcpstate11 pass out quick on le0 proto udp from any to any port = 53 keep state
/netbsd-6-1-5-RELEASE/external/apache2/mDNSResponder/dist/mDNSShared/
H A Duds_daemon.h42 <rdar://problem/5303807> Register IPv6-only hostname and don't create port mappings for AutoTunnel services
119 #define SRS_PORT(S) mDNSVal16((S)->RR_SRV.resrec.rdata->u.srv.port)
143 extern int CountExistingRegistrations(domainname *srv, mDNSIPPort port);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/tests/startperf/
H A Dsetup.sh48 port 5300;
61 inet 127.0.0.1 port 9953 allow { any; } keys { rndc_key; };
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/tests/system/checkconf/
H A Dbad.conf36 listen-on port 90 { any; };
37 listen-on port 100 { 127.0.0.1; };
38 listen-on-v6 port 53 { none; };
44 port 5300;
H A Dgood.conf47 listen-on port 90 {
50 listen-on port 100 {
53 listen-on-v6 port 53 {
61 port 5300;
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/tests/system/nsupdate/ns1/
H A Dnamed.conf26 port 5300;
41 inet 10.53.0.1 port 9953 allow { any; } keys { rndc_key; };
71 10.53.0.2 port 5300;
72 10.53.0.2 port 5300 key altkey;
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/contrib/ldapc++/src/
H A DLDAPConnection.h49 * @param port Port the LDAP server is running on
53 LDAPConnection(const std::string& hostname="localhost", int port=389,
70 * @param port The Network Port the server is running on
72 void init(const std::string& hostname, int port);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/elf/
H A Dsection0.d3 # The h8300 port issues a warning message for
H A Dsection1.d3 # The h8300 port issues a warning message for
H A Dsection6.d3 # The h8300 port issues a warning message for
H A Dsymver.d5 # some toolchains, eg the mips-elf port will add .reginfo and .ptrd
/netbsd-6-1-5-RELEASE/sys/dev/marvell/
H A Dmvsata_mv.c131 int port, i; local
159 for (port = 0; port < sc->sc_port; port++)
161 MVSATAHC_MI_SATAERR(port) |
162 MVSATAHC_MI_SATADONE(port);
194 mask |= MVSATAHC_MI_SATADONE(mvport->port);
196 mask &= ~MVSATAHC_MI_SATADONE(mvport->port);
/netbsd-6-1-5-RELEASE/regress/sys/arch/i386/iopl/
H A Diopl.c48 /* arbitrary port to test */
54 inb(uint16_t port) argument
58 __asm __volatile("inb %1, %0" : "=a"(data) : "id"(port));
/netbsd-6-1-5-RELEASE/usr.sbin/pf/etc/defaults/
H A Dpf.boot.conf19 pass out proto { tcp, udp } from any to any port 53 keep state
/netbsd-6-1-5-RELEASE/sys/dev/usb/
H A Duftdireg.h20 #define FTDI_SIO_RESET 0 /* Reset the port */
24 #define FTDI_SIO_SET_DATA 4 /* Set the data characteristics of the port */
187 * wIndex: Protocol/Port - hIndex is protocl / lIndex is port
231 * Set the special event character for the specified communications port.
257 * port.
332 * length and port identifier of the message. For the FTDI USB Serial converter
333 * the port identifier is always 1.
347 #define FTDI_OUT_TAG(len, port) (((len) << 2) | (port))
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/lwres/
H A Dgetaddrinfo.c28 * lwres_getaddrinfo() is used to get a list of IP addresses and port
34 * either a decimal port number or a service name as listed in
163 int socktype, int port);
165 int socktype, int port);
174 /*% Get a list of IP addresses and port numbers for host hostname and service servname. */
183 int port, err, i; local
277 * First, look up the service name (port) if it was
284 port = strtol(servname, &e, 10);
288 if (port < 0 || port > 6553
562 add_ipv4(const char *hostname, int flags, struct addrinfo **aip, int socktype, int port) argument
629 add_ipv6(const char *hostname, int flags, struct addrinfo **aip, int socktype, int port) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/libbind/dist/irs/
H A Dgetservent.c67 getservbyport(int port, const char *proto) { argument
70 return (getservbyport_p(port, proto, net_data));
123 getservbyport_p(int port, const char *proto, struct net_data *net_data) { argument
129 if (port == net_data->sv_last->s_port &&
133 net_data->sv_last = (*sv->byport)(sv, port, proto);
/netbsd-6-1-5-RELEASE/sys/arch/hpcmips/dev/
H A Ducbio.c122 betty_out(hpcio_chip_t hc, int port, int onoff) argument
128 pos = 1 << port;
138 betty_in(hpcio_chip_t hc, int port) argument
144 return (reg & (1 << port));
149 betty_intr_establish(hpcio_chip_t hc, int port, int mode, int (*func)(void *), argument

Completed in 182 milliseconds

1234567891011>>