HomeSort by: relevance | last modified time | path
    Searched defs:protocol (Results 1 - 25 of 32) sorted by relevancy

1 2

  /src/sys/arch/mips/alchemy/dev/
aupsc.c 63 int protocol; member in struct:aupsc_proto
146 aupsc_enable(&p, aupsc_protos[i].protocol);
171 * protocols, but on a typical design, only one protocol can
204 printf("%s: aupsc_enable: unsupported protocol.\n",
  /src/sys/arch/alpha/include/
autoconf.h 41 char *protocol; member in struct:bootdev_data
  /src/sys/dev/pckbport/
pmsvar.h 60 enum pms_type protocol; member in struct:pms_softc
  /src/usr.sbin/tcpdchk/
inetcf.c 39 * protocol (field 3), path (field 6), arg0 (field 7)
87 char *protocol; local
143 protocol = strtok((char *) 0, whitespace);
185 inet_chk(protocol, path, arg0, arg1);
194 static void inet_chk(char *protocol, char *path, char *arg0, char *arg1)
293 if (wrap_status == WR_YES && STR_EQ(protocol, "rpc/tcp"))
297 if (! STR_EQ(protocol, "rpc/tcp"))
  /src/sys/external/bsd/drm2/include/drm/
i915_mei_hdcp_interface.h 40 uint8_t protocol; member in struct:hdcp_port_data
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/io/
pvcalls.h 2 * pvcalls.h -- Xen PV Calls Protocol
67 uint32_t protocol; member in struct:xen_pvcalls_request::__anon6612::xen_pvcalls_socket
  /src/tests/lib/libc/net/
h_dns_server.c 168 int s, r, protocol; local
179 if (argc < 2 || ((protocol = argv[1][0]) != '4' && protocol != '6'))
181 s = socket(protocol == '4' ? PF_INET : PF_INET6, SOCK_DGRAM, IPPROTO_UDP);
184 if (protocol == '4') {
205 protocol == '4' ? sizeof(struct sockaddr_in) :
211 "dns_server_%c.pid", protocol);
226 protocol == '4' ? sizeof(struct sockaddr_in) :
  /src/tests/lib/libpthread/
t_mutex.c 385 int protocol, target; local
391 PTHREAD_REQUIRE(pthread_mutexattr_getprotocol(&mattr, &protocol));
392 ATF_REQUIRE_EQ(protocol, target);
397 PTHREAD_REQUIRE(pthread_mutexattr_getprotocol(&mattr, &protocol));
398 ATF_REQUIRE_EQ(protocol, target);
403 PTHREAD_REQUIRE(pthread_mutexattr_getprotocol(&mattr, &protocol));
404 ATF_REQUIRE_EQ(protocol, target);
422 int protocol; local
425 &protocol));
427 printf("priority: %d\nprotocol: %d\n", i, protocol);
    [all...]
  /src/lib/libc/nameser/
ns_print.c 343 /* XXX protocol format checking? */
431 /* Protocol. */
464 u_int keyflags, protocol, algorithm, key_id; local
471 /* Key flags, Protocol, Algorithm. */
478 protocol = *rdata++;
481 keyflags, protocol, algorithm));
1139 * 0 for protocol format error
  /src/lib/libc/rpc/
rpc_generic.c 102 int protocol; member in struct:netid_af
560 sip->si_proto = na_cvt[i].protocol;
595 na_cvt[i].protocol == sip->si_proto) {
  /src/sys/compat/linux/common/
linux_socketcall.h 114 syscallarg(int) protocol; member in struct:linux_sys_socket_args
122 syscallarg(int) protocol; member in struct:linux_sys_socketpair_args
  /src/sys/compat/linux32/common/
linux32_socketcall.h 59 syscallarg(int) protocol; member in struct:linux32_sys_socket_args
65 syscallarg(int) protocol; member in struct:linux32_sys_socketpair_args
  /src/sys/kern/
uipc_mbufdebug.c 68 /* header structure for some protocol */
91 uint16_t protocol; member in struct:ppp_header
96 #define CISCO_KEEPALIVE 0x8035 /* Cisco keepalive protocol */
375 uint16_t protocol; local
390 protocol = ntohs(h.protocol);
396 (*pr)("SPPP: Protocol = %d(", protocol);
397 switch (protocol) {
433 (*pr)("SPPP: Protocol = %d(", protocol)
    [all...]
  /src/sys/net/
if_ppp.h 5 * if_ppp.h - Point-to-Point Protocol definitions.
54 #define SC_COMP_PROT 0x00000001 /* protocol compression (output) */
94 int protocol; /* PPP procotol, e.g. PPP_IP */ member in struct:npioctl
if_ppp.c 5 * if_ppp.c - Point-to-Point Protocol (PPP) Asynchronous driver.
618 * Found a handler for the protocol - try to allocate
663 switch (npi->protocol) {
870 int protocol, address, control; local
899 protocol = PPP_IP;
915 protocol = PPP_IPV6;
932 protocol = PPP_PROTOCOL(dst->sa_data);
966 *cp++ = protocol >> 8;
967 *cp++ = protocol & 0xff;
976 if ((protocol & 0x8000) == 0)
1117 int address, control, protocol; local
    [all...]
  /src/libexec/rlogind/
rlogind.c 132 static void protocol(int, int);
415 protocol(f, master);
446 * rlogin "protocol" machine.
449 protocol(int f, int p) function
  /src/sys/compat/sunos/
sunos_syscallargs.h 228 syscallarg(int) protocol; member in struct:sunos_sys_socket_args
314 syscallarg(int) protocol; member in struct:sunos_sys_socketpair_args
  /src/sys/compat/sunos32/
sunos32_syscallargs.h 240 syscallarg(int) protocol; member in struct:sunos32_sys_socket_args
326 syscallarg(int) protocol; member in struct:sunos32_sys_socketpair_args
  /src/sys/dev/pci/
icp_pci.c 246 u_int8_t protocol; local
338 printk("illegal protocol version\n");
412 printk("illegal protocol version\n");
499 protocol = (u_int8_t)bus_space_read_4(dpmemt, dpmemh,
503 if (protocol != ICP_PROTOCOL_VERSION) {
504 aprint_error("unsupported protocol %d\n", protocol);
  /src/usr.sbin/altq/libaltq/
parser.c 559 int protocol; local
620 /* get filter protocol id */
622 LOG(LOG_ERR, 0, "missing filter protocol");
625 if (!get_proto(w, &protocol)) {
626 LOG(LOG_ERR, 0, "bad protocol");
629 sfilt.ff_flow.fi_proto = protocol;
681 int protocol; local
744 /* get filter protocol id */
746 LOG(LOG_ERR, 0, "missing filter protocol");
749 if (!get_proto(w, &protocol)) {
    [all...]
  /src/sys/fs/nfs/common/
nfs_commonsubs.c 3955 char addr[64], protocol[5], *cp; local
3962 error = nfsrv_mtostr(nd, protocol, i);
3965 if (strcmp(protocol, "tcp") == 0) {
3968 } else if (strcmp(protocol, "udp") == 0) {
3971 } else if (strcmp(protocol, "tcp6") == 0) {
3974 } else if (strcmp(protocol, "udp6") == 0) {
  /src/sys/fs/nfs/server/
nfs_nfsdstate.c 3862 u_char protocol[5], addr[24]; local
3883 error = nfsrv_mtostr(nd, protocol, i);
3886 if (!strcmp(protocol, "tcp")) {
3890 } else if (!strcmp(protocol, "udp")) {
  /src/usr.sbin/moused/
mouse.h 127 int protocol; /* MOUSE_PROTO_XXX */ member in struct:mousemode
136 /* protocol */
144 * PS/2 mouse protocol:
199 /* Logitech MouseMan data packet (M+ protocol) */
202 /* ALPS GlidePoint extension (variant of M+ protocol) */
206 /* Kinsington Thinking Mouse extension (variant of M+ protocol) */
253 /* Logitech MouseMan+ (PS/2) data packet (PS/2++ protocol) */
260 /* IBM ScrollPoint (PS/2) also uses PS/2++ protocol */
309 * /dev/sysmouse sends data in two formats, depending on the protocol
  /src/sys/compat/linux/arch/aarch64/
linux_syscallargs.h 888 syscallarg(int) protocol; member in struct:linux_sys_socket_args
895 syscallarg(int) protocol; member in struct:linux_sys_socketpair_args
  /src/sys/compat/linux/arch/alpha/
linux_syscallargs.h 235 syscallarg(int) protocol; member in struct:linux_sys_socket_args
395 syscallarg(int) protocol; member in struct:linux_sys_socketpair_args

Completed in 61 milliseconds

1 2