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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
chain-predecl.h 3 @protocol Pro;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Protocol.java 25 * <h3>Protocol vs Scheme</h3>
28 * the protocol (http/1.1, spdy/3.1, etc.). OkHttp uses the word <i>protocol</i>
31 public enum Protocol {
48 * Chromium's binary-framed protocol that includes header compression,
53 * href="http://dev.chromium.org/spdy/spdy-protocol/spdy-protocol-draft3-1">draft
60 * The IETF's binary-framed protocol that includes header compression,
71 private final String protocol; field in class:Protocol
73 Protocol(String protocol)
    [all...]
  /external/clang/test/Index/
complete-protocols.m 4 @protocol Protocol1
7 @protocol Protocol2;
11 @protocol Protocol0;
12 @protocol NewProtocol
index-suppress-refs.h 8 @protocol P
  /external/v8/src/inspector/
v8-schema-agent-impl.h 9 #include "src/inspector/protocol/Forward.h"
10 #include "src/inspector/protocol/Schema.h"
16 using protocol::Response;
18 class V8SchemaAgentImpl : public protocol::Schema::Backend {
20 V8SchemaAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*,
21 protocol::DictionaryValue* state);
25 std::unique_ptr<protocol::Array<protocol::Schema::Domain>>*) override;
29 protocol::Schema::Frontend m_frontend;
v8-console-agent-impl.h 9 #include "src/inspector/protocol/Console.h"
10 #include "src/inspector/protocol/Forward.h"
17 using protocol::Response;
19 class V8ConsoleAgentImpl : public protocol::Console::Backend {
21 V8ConsoleAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*,
22 protocol::DictionaryValue* state);
39 protocol::DictionaryValue* m_state;
40 protocol::Console::Frontend m_frontend;
v8-profiler-agent-impl.h 11 #include "src/inspector/protocol/Forward.h"
12 #include "src/inspector/protocol/Profiler.h"
23 using protocol::Response;
25 class V8ProfilerAgentImpl : public protocol::Profiler::Backend {
27 V8ProfilerAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*,
28 protocol::DictionaryValue* state);
38 Response stop(std::unique_ptr<protocol::Profiler::Profile>*) override;
43 std::unique_ptr<protocol::Array<protocol::Profiler::ScriptCoverage>>*
46 std::unique_ptr<protocol::Array<protocol::Profiler::ScriptCoverage>>
    [all...]
v8-debugger-agent-impl.h 13 #include "src/inspector/protocol/Debugger.h"
14 #include "src/inspector/protocol/Forward.h"
28 using protocol::Maybe;
29 using protocol::Response;
31 class V8DebuggerAgentImpl : public protocol::Debugger::Backend {
39 V8DebuggerAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*,
40 protocol::DictionaryValue* state);
44 // Part of the protocol.
53 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations
    [all...]
v8-schema-agent-impl.cc 7 #include "src/inspector/protocol/Protocol.h"
13 protocol::FrontendChannel* frontendChannel,
14 protocol::DictionaryValue* state)
20 std::unique_ptr<protocol::Array<protocol::Schema::Domain>>* result) {
21 std::vector<std::unique_ptr<protocol::Schema::Domain>> domains =
23 *result = protocol::Array<protocol::Schema::Domain>::create();
  /external/clang/test/Modules/Inputs/
redecl-merge-top.h 9 @protocol P1;
11 @protocol P2;
12 @protocol P2;
redecl-merge-bottom.h 5 @protocol P4;
6 @protocol P4;
7 @protocol P4;
14 @protocol P1;
category_top.h 16 @protocol P1
19 @protocol P2
22 @protocol P3, P4;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_setprotocol/
3-1.c 11 * [ENOTSUP] The value specified by protocol is an unsupported value.
13 * [EINVAL] 'protocol' is invalid
28 int protocol = INVALID_PROTOCOL; local
38 while (protocol == PTHREAD_PRIO_NONE || protocol == PTHREAD_PRIO_INHERIT
39 || protocol == PTHREAD_PRIO_PROTECT) {
40 protocol--;
43 /* Set the protocol to an invalid value. */
44 ret = pthread_mutexattr_setprotocol(&mta, protocol);
  /bionic/libc/bionic/
socket.cpp 21 int socket(int domain, int type, int protocol) {
22 return __netdClientDispatch.socket(domain, type, protocol);
  /libcore/ojluni/src/main/java/java/net/
URLStreamHandlerFactory.java 30 * protocol handlers.
33 * {@code URLStreamHandler} for a specific protocol.
43 * protocol.
45 * @param protocol the protocol ("{@code ftp}",
47 * @return a {@code URLStreamHandler} for the specific protocol.
50 URLStreamHandler createURLStreamHandler(String protocol);
  /packages/apps/Dialer/java/com/android/incallui/incall/protocol/
InCallButtonUiDelegateFactory.java 17 package com.android.incallui.incall.protocol;
InCallScreenDelegateFactory.java 17 package com.android.incallui.incall.protocol;
  /packages/apps/Dialer/java/com/android/incallui/rtt/protocol/
Constants.java 17 package com.android.incallui.rtt.protocol;
RttCallScreenDelegateFactory.java 17 package com.android.incallui.rtt.protocol;
  /external/apache-http/src/org/apache/http/protocol/
HttpRequestHandlerResolver.java 2 * $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;
  /packages/apps/Dialer/java/com/android/incallui/answer/protocol/
AnswerScreenDelegateFactory.java 17 package com.android.incallui.answer.protocol;
  /packages/apps/Dialer/java/com/android/incallui/video/protocol/
VideoCallScreenDelegateFactory.java 17 package com.android.incallui.video.protocol;
  /external/apache-http/src/org/apache/http/
ProtocolVersion.java 39 * 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.
66 /** Name of the protocol. */
67 protected final String protocol; field in class:ProtocolVersion
69 /** Major version number of the protocol */
72 /** Minor version number of the protocol */
77 * Create a protocol version designator
    [all...]
  /external/curl/tests/libtest/
lib1535.c 31 long protocol; local
38 /* Test that protocol is properly initialized on curl_easy_init.
41 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol);
47 if(protocol != 0) {
48 fprintf(stderr, "%s:%d protocol init failed; expected 0 but is %ld\n",
49 __FILE__, __LINE__, protocol);
63 /* Test that a protocol is properly set after receiving an HTTP resource.
66 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol);
72 if(protocol != CURLPROTO_HTTP) {
73 fprintf(stderr, "%s:%d protocol of http resource is incorrect;
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCharStream.h 32 @protocol ANTLRCharStream < ANTLRIntStream >

Completed in 493 milliseconds

1 2 3 4 5 6 7 8 91011>>