Searched refs:protocol (Results 1 - 25 of 1159) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
H A Dbuilders_jsonp_for_file_urls.js31 if (location.protocol == "file:")
/external/clang/test/Index/
H A Dcomplete-protocols.m4 @protocol Protocol1
7 @protocol Protocol2;
11 @protocol Protocol0;
12 @protocol NewProtocol
H A Dindex-suppress-refs.h8 @protocol P
/external/chromium_org/content/public/browser/
H A Drender_widget_host_view_mac_base.h8 // The Mac RenderWidgetHostView implementation conforms to this protocol.
14 // conformsToProtocol:@protocol(RenderWidgetHostViewMacBase) can be used.
15 @protocol RenderWidgetHostViewMacBase
/external/clang/test/PCH/
H A Dchain-predecl.h3 @protocol Pro;
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dsocket.c10 int socket(int domain, int type, int protocol) { argument
11 return ki_socket(domain, type, protocol);
H A Dsocketpair.c10 int socketpair(int domain, int type, int protocol, int* sv) { argument
11 return ki_socketpair(domain, type, protocol, sv);
/external/clang/test/Modules/Inputs/
H A Dredecl-merge-top.h9 @protocol P1;
11 @protocol P2;
12 @protocol P2;
H A Dredecl-merge-bottom.h5 @protocol P4;
6 @protocol P4;
7 @protocol P4;
14 @protocol P1;
H A Dcategory_top.h16 @protocol P1
19 @protocol P2
22 @protocol P3, P4;
/external/chromium_org/remoting/host/
H A Dsession_manager_factory.cc9 #include "remoting/protocol/jingle_session_manager.h"
10 #include "remoting/protocol/libjingle_transport_factory.h"
11 #include "remoting/protocol/session_manager.h"
15 scoped_ptr<protocol::SessionManager> CreateHostSessionManager(
19 scoped_ptr<protocol::TransportFactory> transport_factory(
20 protocol::LibjingleTransportFactory::Create(network_settings,
23 // Use the Jingle protocol for channel-negotiation signalling between
28 scoped_ptr<protocol::JingleSessionManager> session_manager(
29 new protocol::JingleSessionManager(
31 return session_manager.PassAs<protocol
[all...]
H A Dmouse_clamping_filter.h9 #include "remoting/protocol/mouse_input_filter.h"
10 #include "remoting/protocol/video_stub.h"
17 class MouseClampingFilter : public protocol::VideoStub {
19 explicit MouseClampingFilter(protocol::InputStub* input_stub);
22 protocol::InputStub* input_filter() { return &input_filter_; }
24 void set_video_stub(protocol::VideoStub* video_stub) {
28 // protocol::VideoStub implementation.
34 protocol::MouseInputFilter input_filter_;
36 protocol::VideoStub* video_stub_;
H A Dpairing_registry_delegate_mac.cc11 using protocol::PairingRegistry;
H A Dpam_authorization_factory_posix.h8 #include "remoting/protocol/authenticator.h"
17 class PamAuthorizationFactory : public protocol::AuthenticatorFactory {
20 scoped_ptr<protocol::AuthenticatorFactory> underlying);
23 virtual scoped_ptr<protocol::Authenticator> CreateAuthenticator(
29 scoped_ptr<protocol::AuthenticatorFactory> underlying_;
H A Dclipboard.h14 namespace protocol { namespace in namespace:remoting
17 } // namespace protocol
26 virtual void Start(scoped_ptr<protocol::ClipboardStub> client_clipboard) = 0;
32 virtual void InjectClipboardEvent(const protocol::ClipboardEvent& event) = 0;
H A Dremote_input_filter.h13 #include "remoting/protocol/input_event_tracker.h"
14 #include "remoting/protocol/input_stub.h"
21 class RemoteInputFilter : public protocol::InputStub {
25 explicit RemoteInputFilter(protocol::InputEventTracker* event_tracker);
37 virtual void InjectKeyEvent(const protocol::KeyEvent& event) OVERRIDE;
38 virtual void InjectMouseEvent(const protocol::MouseEvent& event) OVERRIDE;
43 protocol::InputEventTracker* event_tracker_;
/external/chromium/chrome/browser/ui/cocoa/
H A Dbrowser_command_executor.h9 // Defines a protocol for any object that can execute commands in the
11 @protocol BrowserCommandExecutor
/external/chromium_org/chrome/browser/ui/cocoa/
H A Dbrowser_command_executor.h8 // Defines a protocol for any object that can execute commands in the
10 @protocol BrowserCommandExecutor
/external/chromium_org/remoting/protocol/
H A Dtransport_config.cc5 #include "remoting/protocol/transport_config.h"
8 namespace protocol { namespace in namespace:remoting
16 } // namespace protocol
/external/chromium_org/remoting/client/plugin/
H A Dmac_key_event_processor.h47 #include "remoting/protocol/input_filter.h"
51 namespace protocol { namespace in namespace:remoting
53 } // namespace protocol
55 class MacKeyEventProcessor : public protocol::InputFilter {
57 explicit MacKeyEventProcessor(protocol::InputStub* input_stub);
61 virtual void InjectKeyEvent(const protocol::KeyEvent& event) OVERRIDE;
68 typedef std::map<int, protocol::KeyEvent> KeyPressedMap;
/external/chromium_org/remoting/codec/
H A Daudio_decoder.cc11 #include "remoting/protocol/session_config.h"
16 const protocol::SessionConfig& config) {
17 const protocol::ChannelConfig& audio_config = config.audio_config();
19 if (audio_config.codec == protocol::ChannelConfig::CODEC_VERBATIM) {
21 } else if (audio_config.codec == protocol::ChannelConfig::CODEC_OPUS) {
23 } else if (audio_config.codec == protocol::ChannelConfig::CODEC_SPEEX) {
/external/chromium_org/remoting/client/
H A Dclient_user_interface.h12 #include "remoting/protocol/connection_to_host.h"
13 #include "remoting/protocol/third_party_client_authenticator.h"
17 namespace protocol { namespace in namespace:remoting
21 } // namespace protocol
33 virtual void OnConnectionState(protocol::ConnectionToHost::State state,
34 protocol::ErrorCode error) = 0;
43 const protocol::PairingResponse& pairing_response) = 0;
47 const protocol::ExtensionMessage& message) = 0;
50 virtual protocol::ClipboardStub* GetClipboardStub() = 0;
53 virtual protocol
[all...]
H A Dchromoting_client.h17 #include "remoting/protocol/client_stub.h"
18 #include "remoting/protocol/clipboard_stub.h"
19 #include "remoting/protocol/connection_to_host.h"
20 #include "remoting/protocol/input_stub.h"
21 #include "remoting/protocol/video_stub.h"
29 namespace protocol { namespace in namespace:remoting
31 } // namespace protocol
42 class ChromotingClient : public protocol::ConnectionToHost::HostEventCallback,
43 public protocol::ClientStub {
48 protocol
[all...]
/external/apache-http/src/org/apache/http/protocol/
H A DHttpRequestHandlerResolver.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/HttpRequestHandlerResolver.java $
32 package org.apache.http.protocol;
/external/apache-http/src/org/apache/http/
H A DProtocolVersion.java39 * Represents a protocol version, as specified in RFC 2616.
42 * for the protocol name. It defines a protocol version "SIP/2.0".
46 * This class defines a protocol version as a combination of
47 * protocol name, major version number, and minor version number.
61 /** Name of the protocol. */
62 protected final String protocol; field in class:ProtocolVersion
64 /** Major version number of the protocol */
67 /** Minor version number of the protocol */
72 * Create a protocol versio
78 ProtocolVersion(String protocol, int major, int minor) argument
[all...]

Completed in 370 milliseconds

1234567891011>>