HomeSort by relevance Sort by last modified time
    Searched refs:protocol (Results 501 - 525 of 2282) sorted by null

<<21222324252627282930>>

  /external/wpa_supplicant_8/src/l2_packet/
l2_packet_pcap.c 198 unsigned short protocol)
238 protocol);
280 const char *ifname, const u8 *own_addr, unsigned short protocol,
303 if (l2_packet_init_libpcap(l2, protocol)) {
317 unsigned short protocol,
322 return l2_packet_init(br_ifname, own_addr, protocol, rx_callback,
l2_packet_winpcap.c 162 unsigned short protocol)
181 protocol);
199 const char *ifname, const u8 *own_addr, unsigned short protocol,
222 if (l2_packet_init_libpcap(l2, protocol)) {
253 unsigned short protocol,
258 return l2_packet_init(br_ifname, own_addr, protocol, rx_callback,
l2_packet_ndis.c 220 * another event if the protocol driver is replaced with somewhat more
330 static int l2_ndisuio_set_ether_type(unsigned short protocol)
332 USHORT proto = htons(protocol);
349 const char *ifname, const u8 *own_addr, unsigned short protocol,
360 l2_ndisuio_global->first_proto = protocol;
382 if (l2_ndisuio_set_ether_type(protocol) < 0) {
389 "filtering ethertype to %04x", protocol);
455 unsigned short protocol,
460 return l2_packet_init(br_ifname, own_addr, protocol, rx_callback,
  /packages/apps/Email/provider_src/com/android/email/service/
PopImapSyncAdapterService.java 85 private static boolean loadsFromServer(Context context, Mailbox m, String protocol) {
88 if (legacyImapProtocol.equals(protocol)) {
95 } else if (pop3Protocol.equals(protocol)) {
111 String protocol = account.getProtocol(context); local
113 !loadsFromServer(context, mailbox, protocol)) {
141 if (protocol.equals(legacyImapProtocol)) {
  /cts/apps/VpnApp/src/com/android/cts/vpnfirewall/
PingReflector.java 71 if (packet.protocol != PROTOCOL_ICMP) {
72 Log.i(TAG, "Protocol is " + packet.protocol + " not ICMP. Ignoring.");
  /device/linaro/bootloader/arm-trusted-firmware/plat/arm/css/drivers/scmi/
scmi_private.h 11 * SCMI power domain management protocol message and response lengths. It is
55 /* SCMI power domain protocol `POWER_STATE_SET` message flags */
60 * Helper macro to create an SCMI message header given protocol, message id
63 #define SCMI_MSG_CREATE(protocol, msg_id, token) \
64 ((((protocol) & SCMI_MSG_PROTO_ID_MASK) << SCMI_MSG_PROTO_ID_SHIFT) | \
  /external/android-clat/
ipv4.c 96 nxthdr = header->protocol;
98 // ICMP and ICMPv6 have different protocol numbers.
137 logmsg_dbg(ANDROID_LOG_ERROR, "ip_packet/unknown protocol: %x",header->protocol);
138 logcat_hexdump("ipv4/protocol", packet, len);
translate.h 46 void fill_ip_header(struct iphdr *ip_targ, uint16_t payload_len, uint8_t protocol,
48 void fill_ip6_header(struct ip6_hdr *ip6, uint16_t payload_len, uint8_t protocol,
  /external/autotest/client/bin/
prespawner.py 69 pickle.dump((new_env, args), process.stdin, protocol=2)
110 pickle.dump((None, None), process.stdin, protocol=2)
  /external/curl/docs/cmdline-opts/
dump-header.d 8 Write the received protocol headers to the specified file.
ntlm.d 9 Microsoft and is used by IIS web servers. It is a proprietary protocol,
  /external/curl/lib/
curl_path.c 48 if(conn->handler->protocol & CURLPROTO_SCP) {
60 else if(conn->handler->protocol & CURLPROTO_SFTP) {
  /external/ipsec-tools/src/libipsec/
policy_parse.y 56 * protocol/mode/src-dst/level
57 * protocol/mode/src-dst parsed as protocol/mode/src-dst/default
58 * protocol/mode/src-dst/ parsed as protocol/mode/src-dst/default
59 * protocol/transport parsed as protocol/mode/any-any/default
60 * protocol/transport//level parsed as protocol/mode/any-any/level
142 %token ACTION PROTOCOL MODE LEVEL LEVEL_SPECIFY IPADDRESS POR
    [all...]
  /external/libnl/src/lib/
utils.c 88 int nl_cli_connect(struct nl_sock *sk, int protocol)
92 if ((err = nl_connect(sk, protocol)) < 0)
  /external/owasp/sanitizer/src/main/org/owasp/html/
FilterUrlByProtocolAttributePolicy.java 37 * the value have no protocol or have an allowed protocol.
40 * URLs with protocols must match the protocol set passed to the constructor.
46 * Same-origin URLs, URLs without any protocol or authority part are always
71 case '/': case '#': case '?': // No protocol.
80 String protocol = Strings.toLowerCase(s.substring(0, i)); local
81 if (!protocols.contains(protocol)) { return null; }
HtmlPolicyBuilder.java 72 * {@link HtmlPolicyBuilder#allowUrlProtocols protocol}.
373 * only allowing the value through if it specifies no protocol, or if it
385 // If there is at least one allowed protocol, then allow URLs and
390 for (String protocol : protocols) {
391 protocol = Strings.toLowerCase(protocol);
392 allowedProtocols.add(protocol);
402 for (String protocol : protocols) {
403 protocol = Strings.toLowerCase(protocol);
    [all...]
  /external/tensorflow/tensorflow/contrib/mpi/
README.md 7 2. To turn on the MPI connection, add the protocol "grpc+mpi" in the server definition:
9 ```server = tf.train.Server(cluster, job_name="local", task_index=0, protocol='grpc+mpi') # default protocol is 'grpc'```
13 By using this protocol TensorFlow can take advantage of the high performance networking primitives that are offered via the MPI API. This enables TensorFlow to take advantage of high performance low latency networks such as Infiniband. These changes are largely transparent to the user who only has to change the offered protocol and launch the script using the 'mpirun' launcher. For example:
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
DataProfileTest.java 43 "IPV6", // protocol
71 "IP", // protocol
99 "IP", // protocol
118 assertEquals(mApn1.protocol, dp.getProtocol());
134 assertEquals(mApn3.protocol, dp.getProtocol());
  /kernel/tests/net/test/
net_test.py 128 def Socket(family, sock_type, protocol):
129 s = socket(family, sock_type, protocol)
418 def ReadProcNetSocket(self, protocol):
420 filename = "/proc/net/%s" % protocol
424 if protocol in ["icmp6", "raw6", "udp6"]:
429 if protocol.endswith("6"):
434 if protocol.startswith("tcp"):
437 elif re.match("icmp|udp|raw", protocol):
sock_diag.py 80 "InetDiagReqV2", "=BBBxIS", "family protocol ext states id",
307 def DumpAllInetSockets(self, protocol, bytecode, sock_id=None, ext=0,
317 diag_req = InetDiagReqV2((family, protocol, ext, states, sock_id))
356 protocol = s.getsockopt(net_test.SOL_SOCKET, net_test.SO_PROTOCOL)
375 return InetDiagReqV2((family, protocol, 0, 0xffffffff, sock_id))
408 def DiagReqFromDiagMsg(d, protocol):
410 return InetDiagReqV2((d.family, protocol, 0, 1 << d.state, d.id))
418 protocol = s.getsockopt(SOL_SOCKET, net_test.SO_PROTOCOL)
419 req = self.DiagReqFromDiagMsg(diag_msg, protocol)
  /packages/apps/Dialer/java/com/android/incallui/contactgrid/
BottomRow.java 26 import com.android.incallui.incall.protocol.PrimaryCallState;
27 import com.android.incallui.incall.protocol.PrimaryInfo;
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.ecf.provider.filetransfer_3.2.0.v20130604-1622.jar 
  /system/bt/stack/pan/
pan_int.h 79 pan_pfilt_ind_cb; /* protocol filter indication callback */
107 const RawAddress& dst, uint16_t protocol,
110 const RawAddress& dst, uint16_t protocol,
  /external/syslinux/core/lwip/src/netif/ppp/
ppp.c 2 * ppp.c - Network Point to Point Protocol program file.
64 * if_ppp.h - Point-to-Point Protocol definitions.
153 PDPROTOCOL1, /* Process protocol field 1. */
154 PDPROTOCOL2, /* Process protocol field 2. */
181 u16_t inProtocol; /* The input protocol code. */
205 int pcomp; /* Does peer accept protocol compression? */
229 int protocol; /* PPP procotol, e.g. PPP_IP */ member in struct:npioctl
255 * PPP Data Link Layer "protocol" table.
256 * One entry per supported protocol.
403 lcp_open(pd); /* Start protocol */
758 u_short protocol = PPP_IP; local
803 u_short protocol = PPP_IP; local
1594 u16_t protocol; local
    [all...]
  /external/deqp/framework/delibs/deutil/
deSocket.c 72 deSocketProtocol protocol; member in struct:deSocketAddress_s
84 addr->protocol = DE_SOCKETPROTOCOL_TCP;
146 deBool deSocketAddress_setProtocol (deSocketAddress* address, deSocketProtocol protocol)
148 address->protocol = protocol;
154 return address->protocol;
268 static int deSocketProtocolToBsdProtocol (deSocketProtocol protocol)
270 switch (protocol)
293 hints.ai_protocol = deSocketProtocolToBsdProtocol(address->protocol);
511 sock->handle = socket(bsdAddr->sa_family, deSocketTypeToBsdType(address->type), deSocketProtocolToBsdProtocol(address->protocol));
    [all...]

Completed in 456 milliseconds

<<21222324252627282930>>