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

1 2 3 4

  /src/external/mpl/bind/dist/lib/dns/rdata/generic/
key_25.h 25 dns_secproto_t protocol; member in struct:dns_rdata_key
keydata_65533.h 25 dns_secproto_t protocol; member in struct:dns_rdata_keydata
  /src/external/mpl/bind/dist/lib/dns/rdata/in_1/
wks_11.h 22 uint16_t protocol; member in struct:dns_rdata_in_wks
  /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/
key_25.h 26 dns_secproto_t protocol; member in struct:dns_rdata_key
keydata_65533.h 26 dns_secproto_t protocol; member in struct:dns_rdata_keydata
  /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/
wks_11.h 23 uint16_t protocol; member in struct:dns_rdata_in_wks
  /src/external/ibm-public/postfix/dist/src/tls/
tls_proxy_context_scan.c 81 VSTRING *protocol = vstring_alloc(25); local
109 RECV_ATTR_STR(TLS_ATTR_CIPHER_PROTOCOL, protocol),
137 tls_context->protocol = vstring_export(protocol);
171 if (tls_context->protocol)
172 myfree((void *) tls_context->protocol);
  /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/external/bsd/ipf/dist/tools/
ipmon_y.y 77 %type <opt> protocol result rule srcip srcport logtag matching
126 | protocol { $$ = $1; }
202 protocol: label
272 { "protocol", IPM_PROTOCOL },
521 verbose(8, "-- not port protocol\n");
547 verbose(8, "-- protocol mismatch\n");
593 verbose(8, "-- port protocol mismatch\n");
  /src/external/gpl3/gcc.old/dist/libobjc/
protocols.c 1 /* GNU Objective C Runtime protocol related functions.
35 /* This is a table that maps a name to a Protocol instance with that
36 name. Because there may be multiple Protocol instances with the
50 /* The keys in the table are strings, and the values are Protocol
56 /* Add a protocol to the hashtable. */
62 /* If we find a protocol with the same name already in the
77 Protocol *
80 Protocol *protocol; local
86 protocol = (Protocol *)(objc_hash_value_for_key (__protocols_hashtable, name))
    [all...]
  /src/external/gpl3/gcc/dist/libobjc/
protocols.c 1 /* GNU Objective C Runtime protocol related functions.
35 /* This is a table that maps a name to a Protocol instance with that
36 name. Because there may be multiple Protocol instances with the
50 /* The keys in the table are strings, and the values are Protocol
56 /* Add a protocol to the hashtable. */
62 /* If we find a protocol with the same name already in the
77 Protocol *
80 Protocol *protocol; local
86 protocol = (Protocol *)(objc_hash_value_for_key (__protocols_hashtable, name))
    [all...]
  /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/external/bsd/dhcpcd/dist/src/
auth.c 109 uint8_t protocol, algorithm, rdm, *mm, type; local
136 protocol = *d++;
142 if (protocol != AUTH_PROTO_RECONFKEY) {
146 } else if (protocol != auth->protocol ||
152 if (protocol != AUTH_PROTO_RECONFKEY ||
201 switch (protocol) {
329 if (protocol == AUTH_PROTO_TOKEN) {
535 if (auth->protocol == AUTH_PROTO_TOKEN) {
554 switch(auth->protocol) {
    [all...]
auth.h 69 uint8_t protocol; member in struct:auth
  /src/external/bsd/libpcap/dist/msdos/
pkt_rx0.asm 51 protocol dw 0 ; packet protocol number define
  /src/external/bsd/ntp/dist/libntp/
ntp_rfc2553.c 249 "Resolved protocol is unknown", /* EAI_PROTOCOL */
291 int family, socktype, flags, protocol; local
315 protocol = hints->ai_protocol;
364 protocol = 0;
  /src/external/ibm-public/postfix/dist/src/qmqpd/
qmqpd.h 51 char *protocol; /* protocol name */ member in struct:__anon8224
52 char *where; /* protocol state */
70 * QMQP protocol status codes.
  /src/external/mpl/dhcp/dist/common/
icmp.c 5 ICMP Protocol engine - for sending out pings and receiving
50 /* Initialize the ICMP protocol. */
57 int protocol = 1; local
63 log_fatal ("attempted to reinitialize icmp protocol");
89 /* Get the protocol number (should be 1). */
92 protocol = proto -> p_proto;
94 /* Get a raw socket for the ICMP protocol. */
95 icmp_state -> socket = socket (AF_INET, SOCK_RAW, protocol);
146 log_fatal ("ICMP protocol used before initialization.");
  /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/external/bsd/libpcap/dist/
sf-pcap.c 78 * The same value is used in the rpcap protocol as an indication of
178 unsigned short protocol; member in struct:pcap_sf_patched_pkthdr

Completed in 49 milliseconds

1 2 3 4