HomeSort by relevance Sort by last modified time
    Searched defs:protocols (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/chromeos/dbus/
nfc_adapter_client.h 43 // The NFC protocols that are supported by the adapter. Possible values
45 dbus::Property<std::vector<std::string> > protocols; member in struct:chromeos::NfcAdapterClient::Properties
fake_nfc_adapter_client.cc 89 std::vector<std::string> protocols; local
90 protocols.push_back(nfc_common::kProtocolFelica);
91 protocols.push_back(nfc_common::kProtocolMifare);
92 protocols.push_back(nfc_common::kProtocolJewel);
93 protocols.push_back(nfc_common::kProtocolIsoDep);
94 protocols.push_back(nfc_common::kProtocolNfcDep);
100 properties_->protocols.ReplaceValue(protocols);
106 second_properties_->protocols.ReplaceValue(protocols);
    [all...]
  /external/okhttp/okcurl/src/main/java/com/squareup/okhttp/curl/
Main.java 72 private static String protocols() { method in class:Main
126 System.out.println("Protocols: " + protocols());
  /external/owasp/sanitizer/src/main/org/owasp/html/
FilterUrlByProtocolAttributePolicy.java 40 * URLs with protocols must match the protocol set passed to the constructor.
41 * URLs without protocols but which specify an origin different from the
59 private final ImmutableSet<String> protocols; field in class:FilterUrlByProtocolAttributePolicy
62 Iterable<? extends String> protocols) {
63 this.protocols = ImmutableSet.copyOf(protocols);
74 // or the protocols by which HTML is normally served are OK.
81 if (!protocols.contains(protocol)) { return null; }
89 return protocols.contains("http") && protocols.contains("https")
    [all...]
  /external/chromium_org/ppapi/proxy/
websocket_resource_unittest.cc 65 PP_Var protocols[] = { MakeStringVar(protocol0), MakeStringVar(protocol1) }; local
69 int32_t result = websocket_iface->Connect(res.get(), url_var, protocols, 2,
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Address.java 46 final List<Protocol> protocols; field in class:Address
50 OkAuthenticator authenticator, Proxy proxy, List<Protocol> protocols)
55 if (protocols == null) throw new IllegalArgumentException("protocols == null");
63 this.protocols = Util.immutableList(protocols);
109 * Returns the protocols the client supports. This method always returns a
114 return protocols;
134 && equal(this.protocols, that.protocols);
    [all...]
OkHttpClient.java 60 private List<Protocol> protocols; field in class:OkHttpClient
311 * protocols} that can be selected. Please switch to {@link
316 List<Protocol> protocols = new ArrayList<Protocol>(transports.size()); local
320 protocols.add(protocol);
325 return setProtocols(protocols);
329 * Configure the protocols used by this client to communicate with remote
331 * available, falling back to more ubiquitous protocols. Applications should
335 * <p>The following protocols are currently supported:
337 * <li><a href="http://www.w3.org/Protocols/rfc2616/rfc2616.html">http/1.1</a>
343 * support for transitional protocols (like spdy/3.1), in favor of thei
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
handler_options_handler.cc 135 std::vector<std::string> protocols; local
136 registry->GetRegisteredProtocols(&protocols);
139 for (std::vector<std::string>::iterator protocol = protocols.begin();
140 protocol != protocols.end(); protocol++) {
  /external/chromium_org/ui/platform_window/x11/
x11_window.cc 162 ::Atom protocols[2]; local
163 protocols[0] = atom_cache_.GetAtom("WM_DELETE_WINDOW");
164 protocols[1] = atom_cache_.GetAtom("_NET_WM_PING");
165 XSetWMProtocols(xdisplay_, xwindow_, protocols, 2);
  /external/mtpd/
mtpd.c 43 static struct protocol *protocols[] = {&l2tp, &pptp, NULL}; variable in typeref:struct:protocol
63 for (i = 0; protocols[i]; ++i) {
64 struct protocol *p = protocols[i];
74 for (i = 0; protocols[i]; ++i) {
75 struct protocol *p = protocols[i];
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSocketFunctionalTest.java 141 String[] protocols = { "SSLv3", "TLSv1" }; local
150 ssocket.setEnabledProtocols(new String[] { protocols[j] });
157 csocket.setEnabledProtocols(new String[] { protocols[j] });
SSLEngineImplTest.java 67 String[] protocols = { "SSLv3", "TLSv1" }; local
328 + "of supported protocols: " + enabled[i]);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
NewWebSocketChannelImpl.cpp 148 Vector<String> protocols; local
154 protocol.split(", ", true, protocols);
156 WebVector<WebString> webProtocols(protocols.size());
157 for (size_t i = 0; i < protocols.size(); ++i) {
158 webProtocols[i] = protocols[i];
DOMWebSocket.cpp 252 Vector<String> protocols; local
253 return create(context, url, protocols, exceptionState);
256 DOMWebSocket* DOMWebSocket::create(ExecutionContext* context, const String& url, const Vector<String>& protocols, ExceptionState& exceptionState)
266 webSocket->connect(url, protocols, exceptionState);
275 Vector<String> protocols; local
276 protocols.append(protocol);
277 return create(context, url, protocols, exceptionState);
280 void DOMWebSocket::connect(const String& url, const Vector<String>& protocols, ExceptionState& exceptionState)
322 for (size_t i = 0; i < protocols.size(); ++i) {
323 if (!isValidSubprotocolString(protocols[i]))
    [all...]
  /external/okhttp/android/test/java/com/squareup/okhttp/internal/
PlatformTest.java 80 List<Protocol> protocols = Arrays.asList(Protocol.SPDY_3); local
84 platform.setNpnProtocols(arbitrarySocketImpl, protocols);
87 platform.setNpnProtocols(npnOnlySSLSocketImpl, protocols);
91 platform.setNpnProtocols(openSslSocket, protocols);
178 public void setEnabledProtocols(String[] protocols) {
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
Benchmark.java 85 /** Which ALPN/NPN protocols are in use. Only useful with TLS. */
86 List<Protocol> protocols = Arrays.asList(Protocol.HTTP_11); field in class:Benchmark
147 modifiers.addAll(protocols);
168 server.setNpnProtocols(protocols);
  /external/chromium_org/ui/aura/
window_tree_host_x11.cc 279 ::Atom protocols[2]; local
280 protocols[0] = atom_cache_.GetAtom("WM_DELETE_WINDOW");
281 protocols[1] = atom_cache_.GetAtom("_NET_WM_PING");
282 XSetWMProtocols(xdisplay_, xwindow_, protocols, 2);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
Platform.java 118 * Sets client-supported protocols on a socket to send to a server. The
119 * protocols are only sent if the socket implementation supports NPN.
342 /** This peer's supported protocols. */
343 private final List<String> protocols; field in class:Platform.JettyNpnProvider
349 public JettyNpnProvider(List<String> protocols) {
350 this.protocols = protocols;
364 } else if (methodName.equals("protocols") && args.length == 0) {
365 return protocols; // Server advertises these protocols
    [all...]
  /external/chromium_org/chrome/browser/custom_handlers/
protocol_handler_registry_unittest.cc 702 std::vector<std::string> protocols; local
703 registry()->GetRegisteredProtocols(&protocols);
704 ASSERT_EQ(static_cast<size_t>(0), protocols.size());
708 protocols.clear();
709 registry()->GetRegisteredProtocols(&protocols);
710 ASSERT_EQ(static_cast<size_t>(0), protocols.size());
963 std::vector<std::string> protocols; local
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
RouteSelectorTest.java 82 private final List<Protocol> protocols = Arrays.asList(Protocol.HTTP_11); field in class:RouteSelectorTest
88 protocols);
108 protocols);
130 proxyA, protocols);
148 NO_PROXY, protocols);
166 protocols);
184 protocols);
202 protocols);
238 protocols);
257 protocols);
    [all...]
  /external/chromium_org/ppapi/tests/
test_websocket.cc 209 RUN_TEST_WITH_REFERENCE_CHECK(Protocols, filter);
304 PP_Var protocols[] = { PP_MakeUndefined() }; local
312 protocols[0] = CreateVarString(protocol);
316 ws, url_var, protocols, protocol_count,
320 ReleaseVar(protocols[0]);
389 PP_Var protocols[] = { PP_MakeUndefined() }; local
396 ws, PP_MakeUndefined(), protocols, 1U,
401 ws, PP_MakeUndefined(), protocols, 1U,
617 PP_Var protocols[] = { PP_MakeUndefined() }; local
619 ws, url, protocols, 0U, callback.GetCallback().pp_completion_callback())
1164 const pp::Var protocols[] = { pp::Var() }; local
1267 const pp::Var protocols[] = { pp::Var() }; local
1330 const pp::Var protocols[] = { pp::Var() }; local
1354 const pp::Var protocols[] = { pp::Var() }; local
1470 const pp::Var protocols[] = { pp::Var(protocol) }; local
1492 const pp::Var protocols[] = { pp::Var() }; local
1526 const pp::Var protocols[] = { pp::Var() }; local
1558 const pp::Var protocols[] = { pp::Var() }; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf.ssl_1.0.0.v20100529-0735.jar 
  /external/nist-sip/java/gov/nist/javax/sip/
SipStackImpl.java 400 * Comma-separated list of protocols to use when creating outgoing TLS connections.
480 // Supported protocols for TLS client: can be overridden by application
981 String[] protocols = new String[st.countTokens()]; local
    [all...]
  /external/chromium_org/chrome/installer/util/
shell_util.cc 466 // Protocols associations.
513 // Protocols associations.
1830 const wchar_t* const protocols[] = { protocol.c_str() }; local
    [all...]
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_window_tree_host_x11.cc 1121 ::Atom protocols[2]; local
    [all...]

Completed in 783 milliseconds

1 2