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

1 2 3 4 5 6 78 91011>>

  /packages/apps/Email/src/com/android/email/activity/setup/
AccountCredentials.java 16 private static final String EXTRA_PROTOCOL = "protocol";
21 final String protocol) {
24 i.putExtra(EXTRA_PROTOCOL, protocol);
33 final String protocol = getIntent().getStringExtra(EXTRA_PROTOCOL); local
39 AccountSetupCredentialsFragment.newInstance(emailAddress, protocol,
AccountSetupTypeFragment.java 37 * called when the user has selected a protocol type for the account
38 * @param protocol {@link EmailServiceUtils.EmailServiceInfo#protocol}
40 void onChooseProtocol(String protocol);
60 if (EmailServiceUtils.isServiceAvailable(appContext, info.protocol)) {
73 button.setTag(info.protocol);
91 final String protocol = (String) v.getTag(); local
93 callback.onChooseProtocol(protocol);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/diff/
portcon.py 76 self.protocol = ocon.protocol
87 return self.protocol == other.protocol and \
  /external/chromium-trace/catapult/third_party/pyserial/serial/
__init__.py 39 The list of package names that is searched for protocol handlers is kept in
60 protocol = url_nocase.split('://', 1)[0]
62 module_name = '%s.protocol_%s' % (package_name, protocol,)
71 raise ValueError('invalid URL, protocol %r not known' % (protocol,))
  /external/conscrypt/common/src/main/java/org/conscrypt/
ApplicationProtocolSelectorAdapter.java 49 * Performs the ALPN protocol selection from the given list of length-delimited peer protocols.
52 * selected protocol (i.e. points to the length prefix). Otherwise, returns
63 // Select the protocol.
75 for (String protocol : protocols) {
76 if (selected.equals(protocol)) {
77 // Found the selected protocol. Return the index position of the beginning of
78 // the protocol.
83 offset += 1 + protocol.length();
  /external/conscrypt/openjdk/src/test/java/org/conscrypt/
ApplicationProtocolSelectorAdapterTest.java 63 for (String protocol : PROTOCOLS) {
64 mockSelection(protocol);
65 assertEquals(protocol, getProtocolAt(select(PROTOCOL_BYTES)));
  /external/dhcpcd-6.8.2/
if-sun.c 82 if_openrawsocket(struct interface *ifp, int protocol)
90 if_sendrawpacket(const struct interface *ifp, int protocol,
99 if_readrawpacket(struct interface *ifp, int protocol,
  /external/junit-params/src/main/java/junitparams/custom/
FileParametersProvider.java 50 String protocol = filepath.substring(0, filepath.indexOf(':')); local
53 if ("classpath".equals(protocol)) {
55 } else if ("file".equals(protocol)) {
59 throw new IllegalArgumentException("Unknown file access protocol. Only 'file' and 'classpath' are supported!");
  /external/tensorflow/tensorflow/core/distributed_runtime/
master_env.h 40 const string* protocol = nullptr; member in struct:tensorflow::WorkerCacheFactoryOptions
52 protocol = &server_def.protocol();
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipanat/test/
ipa_nat_test010.c 59 ipv4_rule.protocol = IPPROTO_TCP;
66 ipv4_rule1.protocol = IPPROTO_TCP;
73 ipv4_rule2.protocol = IPPROTO_TCP;
ipa_nat_test011.c 58 ipv4_rule.protocol = IPPROTO_TCP;
65 ipv4_rule1.protocol = IPPROTO_TCP;
72 ipv4_rule2.protocol = IPPROTO_TCP;
ipa_nat_test012.c 59 ipv4_rule.protocol = IPPROTO_TCP;
66 ipv4_rule1.protocol = IPPROTO_TCP;
73 ipv4_rule2.protocol = IPPROTO_TCP;
ipa_nat_test013.c 58 ipv4_rule.protocol = IPPROTO_TCP;
65 ipv4_rule1.protocol = IPPROTO_TCP;
72 ipv4_rule2.protocol = IPPROTO_TCP;
  /packages/apps/Settings/src/com/android/settings/applications/
EnterpriseDefaultApps.java 52 private static Intent buildIntent(String action, String category, String protocol,
58 if (protocol != null) {
59 intent.setData(Uri.parse(protocol));
  /system/connectivity/wifilogd/
main_loop.cpp 26 #include "wifilogd/protocol.h"
52 std::array<uint8_t, protocol::kMaxMessageSize> input_buf;
62 if (datagram_len > protocol::kMaxMessageSize) {
64 datagram_len = protocol::kMaxMessageSize;
  /external/v8/src/inspector/
v8-heap-profiler-agent-impl.cc 9 #include "src/inspector/protocol/Protocol.h"
34 explicit HeapSnapshotProgress(protocol::HeapProfiler::Frontend* frontend)
38 protocol::Maybe<bool>());
47 protocol::HeapProfiler::Frontend* m_frontend;
82 explicit HeapSnapshotOutputStream(protocol::HeapProfiler::Frontend* frontend)
93 protocol::HeapProfiler::Frontend* m_frontend;
117 explicit HeapStatsStream(protocol::HeapProfiler::Frontend* frontend)
130 std::unique_ptr<protocol::Array<int>> statsDiff =
131 protocol::Array<int>::create()
    [all...]
v8-console-message.cc 9 #include "src/inspector/protocol/Protocol.h"
26 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Log;
28 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Debug;
30 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Info;
32 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Error;
34 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Warning;
36 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Clear;
38 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Dir;
40 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Dirxml
    [all...]
v8-console-message.h 10 #include "src/inspector/protocol/Console.h"
11 #include "src/inspector/protocol/Forward.h"
12 #include "src/inspector/protocol/Runtime.h"
62 void reportToFrontend(protocol::Console::Frontend*) const;
63 void reportToFrontend(protocol::Runtime::Frontend*, V8InspectorSessionImpl*,
76 std::unique_ptr<protocol::Array<protocol::Runtime::RemoteObject>>
78 std::unique_ptr<protocol::Runtime::RemoteObject> wrapException(
  /external/wayland/src/
scanner.c 66 fprintf(stderr, "Converts XML protocol descriptions supplied on "
68 "headers, server headers, or protocol marshalling code.\n\n");
149 struct protocol { struct
229 struct protocol *protocol; member in struct:parse_context
661 if (strcmp(element_name, "protocol") == 0) {
663 fail(&ctx->loc, "no protocol name given");
665 ctx->protocol->name = xstrdup(name);
666 ctx->protocol->uppercase_name = uppercase_dup(name);
678 wl_list_insert(ctx->protocol->interface_list.prev
1761 struct protocol protocol; local
    [all...]
  /system/core/adb/
socket_test.cpp 317 for (const std::string& protocol : {"", "tcp:", "udp:"}) {
318 VerifySkipHostSerial(protocol, nullptr);
319 VerifySkipHostSerial(protocol + "foo", nullptr);
321 VerifySkipHostSerial(protocol + "foo:bar", ":bar");
322 VerifySkipHostSerial(protocol + "foo:bar:baz", ":bar:baz");
324 VerifySkipHostSerial(protocol + "foo:123:bar", ":bar");
325 VerifySkipHostSerial(protocol + "foo:123:456", ":456");
326 VerifySkipHostSerial(protocol + "foo:123:bar:baz", ":bar:baz");
329 VerifySkipHostSerial(protocol + "foo:123", ":123");
330 VerifySkipHostSerial(protocol + "foo:123bar:baz", ":123bar:baz")
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
URLStreamHandlerRuntime.java 34 private final String protocol; field in class:URLStreamHandlerRuntime
43 protocol = PROTOCOLPREFIX + Integer.toHexString(hashCode());
50 handlers.put(protocol, handler);
64 handlers.remove(protocol);
72 // final URL url = new URL(protocol, null, "");
89 mv.visitLdcInsn(protocol);
  /external/kernel-headers/original/uapi/linux/usb/
audio.h 264 int protocol)
266 if (protocol == UAC_VERSION_1)
277 int protocol)
279 return (protocol == UAC_VERSION_1) ?
285 int protocol)
287 return (protocol == UAC_VERSION_1) ?
348 int protocol)
350 if (protocol == UAC_VERSION_1)
361 int protocol)
363 return (protocol == UAC_VERSION_1)
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_socket.hpp 37 template <typename Protocol, typename SocketService>
50 /// The protocol type.
51 typedef Protocol protocol_type;
54 typedef typename Protocol::endpoint endpoint_type;
57 typedef basic_socket<Protocol, SocketService> lowest_layer_type;
78 * @param protocol An object specifying protocol parameters to be used.
83 const protocol_type& protocol)
87 this->get_service().open(this->get_implementation(), protocol, ec);
95 * specified endpoint on the local machine. The protocol used is the protoco
111 const protocol_type protocol = endpoint.protocol(); local
740 const protocol_type protocol = peer_endpoint.protocol(); local
    [all...]
  /external/toybox/lib/
net.c 3 int xsocket(int domain, int type, int protocol)
5 int fd = socket(domain, type, protocol);
7 if (fd < 0) perror_exit("socket %x %x", type, protocol);
19 int protocol, int flags)
27 info.ai_protocol = protocol;
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_xdp.c 39 static __always_inline void count_tx(__u32 protocol)
43 rxcnt_count = bpf_map_lookup_elem(&rxcnt, &protocol);
49 __u8 protocol)
54 switch (protocol) {
98 dport = get_dport(iph + 1, data_end, iph->protocol);
102 vip.protocol = iph->protocol;
133 iph->protocol = IPPROTO_IPIP;
148 count_tx(vip.protocol);
172 vip.protocol = ip6h->nexthdr
    [all...]

Completed in 1297 milliseconds

1 2 3 4 5 6 78 91011>>