| /external/chromium_org/third_party/WebKit/Source/web/ |
| WebSecurityOrigin.cpp | 76 WebString WebSecurityOrigin::protocol() const function in class:blink::WebSecurityOrigin 79 return m_private->protocol();
|
| /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
| datachannelinterface.h | 59 std::string protocol; // This is set by the application and opaque to the member in struct:webrtc::DataChannelInit 120 virtual std::string protocol() const { return std::string(); } function in class:webrtc::DataChannelInterface
|
| /external/mtpd/ |
| mtpd.h | 46 /* Each protocol must implement everything defined in this structure. Note that 49 struct protocol { struct 50 /* The name of this protocol. */
|
| /frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/ |
| accessorychat.c | 148 uint16_t protocol; local 150 ACCESSORY_GET_PROTOCOL, 0, 0, &protocol, sizeof(protocol), 0); 152 printf("device supports protocol version %d\n", protocol); 154 fprintf(stderr, "failed to read protocol version\n");
|
| /libcore/luni/src/main/java/java/net/ |
| Authenticator.java | 39 private String protocol; field in class:Authenticator 88 * Returns the protocol of the connection that requests authorization. 90 * @return protocol of the connection. 93 return this.protocol; 117 * protocol of the connection that requests authentication. 133 thisAuthenticator.protocol = rProtocol; 167 * protocol of the connection that requests authentication. 184 thisAuthenticator.protocol = rProtocol; 217 * protocol of the connection that requests authentication. 239 thisAuthenticator.protocol = rProtocol [all...] |
| /libcore/luni/src/main/java/javax/net/ssl/ |
| SSLContext.java | 30 * The public API for secure socket protocol implementations. It acts as factory 83 * Creates a new {@code SSLContext} instance for the specified protocol. 85 * @param protocol 86 * the requested protocol to create a context for. 89 * if no installed provider can provide the requested protocol 91 * if {@code protocol} is {@code null} (instead of 94 public static SSLContext getInstance(String protocol) throws NoSuchAlgorithmException { 95 if (protocol == null) { 96 throw new NullPointerException("protocol == null"); 98 Engine.SpiAndProvider sap = ENGINE.getInstance(protocol, null) 167 private final String protocol; field in class:SSLContext [all...] |
| /bionic/libc/kernel/common/linux/ |
| smb.h | 49 enum smb_protocol protocol; member in struct:smb_conn_opt
|
| /development/ndk/platforms/android-3/include/linux/ |
| smb.h | 43 enum smb_protocol protocol; member in struct:smb_conn_opt
|
| /development/tools/axl/ |
| axl.py | 26 from twisted.internet import protocol, reactor, defer namespace 27 from twisted.internet.protocol import ServerFactory, Protocol 31 class BaseProtocol(Protocol): 242 for protocol in Drop, ReadAndDrop, GarbageStatus, BadHeader, PauseHeader, \ 246 factory.protocol = protocol 247 reactor.listenTCP(protocol.PORT, factory)
|
| /device/google/accessory/arduino/AndroidAccessory/ |
| AndroidAccessory.cpp | 62 uint16_t protocol = -1; local 67 ACCESSORY_GET_PROTOCOL, 0, 0, 0, 2, (char *)&protocol); 68 return protocol; 84 int protocol = getProtocol(addr); local 86 if (protocol >= 1) { 87 Serial.print("device supports protocol 1 or higher\n"); 89 Serial.print("could not read device protocol version\n");
|
| /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/file/ |
| FileURLConnectionTest.java | 17 package org.apache.harmony.luni.tests.internal.net.www.protocol.file;
|
| /external/apache-http/src/org/apache/http/message/ |
| BasicLineParser.java | 40 import org.apache.http.protocol.HTTP; 77 * A version of the protocol to parse. 78 * The version is typically not relevant, but the protocol name. 80 protected final ProtocolVersion protocol; field in class:BasicLineParser 84 * Creates a new line parser for the given HTTP-like protocol. 86 * @param proto a version of the protocol to parse, or 88 * is not relevant, only the protocol name. 94 this.protocol = proto; 139 final String protoname = this.protocol.getProtocol(); 152 ("Not a valid protocol version: " [all...] |
| /external/apache-http/src/org/apache/http/protocol/ |
| HTTP.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/HTTP.java $ 32 package org.apache.http.protocol; 35 * Constants and static helpers related to the HTTP protocol.
|
| /external/bluetooth/bluedroid/btif/include/ |
| btif_pan_internal.h | 68 UINT16 protocol; member in struct:__anon653 99 int btpan_tap_send(int tap_fd, const BD_ADDR src, const BD_ADDR dst, UINT16 protocol,
|
| /external/bluetooth/bluedroid/stack/bnep/ |
| bnep_main.c | 470 UINT16 protocol = 0; local 555 BE_STREAM_TO_UINT16 (protocol, p); 594 BE_STREAM_TO_UINT16 (protocol, p); 601 BE_STREAM_TO_UINT16 (protocol, p); 608 BE_STREAM_TO_UINT16 (protocol, p); 650 (*bnep_cb.p_data_buf_cb)(p_bcb->handle, p_src_addr, p_dst_addr, protocol, p_buf, fw_ext_present); 654 (*bnep_cb.p_data_ind_cb)(p_bcb->handle, p_src_addr, p_dst_addr, protocol, p, rem_len, fw_ext_present);
|
| /external/chromium/chrome/browser/ |
| keychain_mock_mac.h | 56 UInt16 port, SecProtocolType protocol, 94 const SecProtocolType protocol; member in struct:MockKeychain::KeychainTestData
|
| /external/chromium/third_party/libjingle/source/talk/p2p/base/ |
| candidate.h | 42 Candidate(const std::string& name, const std::string& protocol, 47 : name_(name), protocol_(protocol), address_(address), 54 const std::string & protocol() const { return protocol_; } function in class:cricket::Candidate 55 void set_protocol(const std::string & protocol) { protocol_ = protocol; }
|
| /external/chromium_org/chrome/browser/ui/webui/options/ |
| handler_options_handler.cc | 88 handlerValue->Append(new base::StringValue(handler->protocol())); 96 const std::string& protocol, 99 handlers_value->SetString("protocol", protocol); 101 registry->GetHandlerIndex(protocol)); 104 GetHandlersAsListValue(registry->GetHandlersFor(protocol), handlers_list); 121 for (std::vector<std::string>::iterator protocol = protocols.begin(); 122 protocol != protocols.end(); protocol++) { 124 GetHandlersForProtocol(*protocol, handler_value) 188 base::string16 protocol; local [all...] |
| /external/chromium_org/crypto/ |
| mock_apple_keychain.h | 90 UInt16 port, SecProtocolType protocol, 110 const SecProtocolType protocol; member in struct:crypto::MockAppleKeychain::KeychainTestData 164 SecProtocolType protocol,
|
| /external/chromium_org/net/http/ |
| http_stream_factory.cc | 37 bool HttpStreamFactory::IsProtocolEnabled(AlternateProtocol protocol) { 38 DCHECK(IsAlternateProtocolValid(protocol)); 40 protocol - ALTERNATE_PROTOCOL_MINIMUM_VALID_VERSION]; 44 void HttpStreamFactory::SetProtocolEnabled(AlternateProtocol protocol) { 45 DCHECK(IsAlternateProtocolValid(protocol)); 47 protocol - ALTERNATE_PROTOCOL_MINIMUM_VALID_VERSION] = true; 94 AlternateProtocol protocol = local 96 if (IsAlternateProtocolValid(protocol) && !IsProtocolEnabled(protocol)) { 97 protocol = ALTERNATE_PROTOCOL_BROKEN [all...] |
| /external/chromium_org/net/test/embedded_test_server/ |
| http_request.cc | 98 // Protocol. 99 const std::string protocol = StringToLowerASCII(header_line_tokens[2]); local 100 CHECK(protocol == "http/1.0" || protocol == "http/1.1") << 101 "Protocol not supported: " << protocol;
|
| /external/chromium_org/remoting/host/ |
| chromoting_host.h | 21 #include "remoting/protocol/authenticator.h" 22 #include "remoting/protocol/connection_to_client.h" 23 #include "remoting/protocol/pairing_registry.h" 24 #include "remoting/protocol/session_manager.h" 32 namespace protocol { namespace in namespace:remoting 36 } // namespace protocol 65 public protocol::SessionManager::Listener, 73 scoped_ptr<protocol::SessionManager> session_manager, 106 scoped_ptr<protocol::AuthenticatorFactory> authenticator_factory); 127 const protocol::TransportRoute& route) OVERRIDE [all...] |
| desktop_session_agent.h | 19 #include "remoting/protocol/clipboard_stub.h" 40 namespace protocol { namespace in namespace:remoting 42 } // namespace protocol 87 void InjectClipboardEvent(const protocol::ClipboardEvent& event); 190 scoped_ptr<protocol::InputEventTracker> input_tracker_;
|
| /external/chromium_org/remoting/protocol/ |
| buffered_socket_writer.cc | 5 #include "remoting/protocol/buffered_socket_writer.h" 15 namespace protocol { namespace in namespace:remoting 235 } // namespace protocol
|
| channel_multiplexer_unittest.cc | 5 #include "remoting/protocol/channel_multiplexer.h" 13 #include "remoting/protocol/connection_tester.h" 14 #include "remoting/protocol/fake_session.h" 23 namespace protocol { namespace in namespace:remoting 372 } // namespace protocol
|