HomeSort by relevance Sort by last modified time
    Searched refs:protocol (Results 1 - 25 of 2706) 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-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;
redecl-merge-right.h 12 @protocol P1
16 @protocol P1;
18 @protocol P2;
20 @protocol P2;
22 @protocol P2;
51 @protocol P4, P3;
52 @protocol P3;
53 @protocol P3;
54 @protocol P3;
  /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);
1-1.c 10 * Sets the protocol attribute of a mutexattr object (which was prev. created
14 * 1. In a for loop, call pthread_mutexattr_setprotocol with all the valid 'protocol' values.
28 int protocol, protcls[3], i; local
41 /* Set the protocol to one of the 3 valid protocols. */
43 printf("Error setting protocol to %d\n", protcls[i]);
47 /* Get the protocol mutex attr. */
48 if (pthread_mutexattr_getprotocol(&mta, &protocol) != 0) {
50 "Error obtaining the protocol attribute.\n");
54 /* Make sure that the protocol set is the protocl we get when calling
56 if (protocol != protcls[i])
    [all...]
  /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;
  /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/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCharStream.h 32 @protocol ANTLRCharStream < ANTLRIntStream >
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_getprotocol/
1-2.c 10 * Gets the protocol attribute of a mutexattr object (which was prev. created
24 int protocol, protcls[3], i; local
37 /* Set the protocol to one of the 3 valid protocols. */
39 printf("Error setting protocol to %d\n", protcls[i]);
43 /* Get the protocol mutex attr. */
44 if (pthread_mutexattr_getprotocol(&mta, &protocol) != 0) {
46 "Error obtaining the protocol attribute.\n");
50 /* Make sure that the protocol set is the protocl we get when calling
52 if (protocol != protcls[i]) {
54 ("Test FAILED: Set protocol %d, but instead got protocol %d.\n"
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
basic_resolver_query.hpp 39 /// The protocol type associated with the endpoint query.
42 /// Construct with specified service name for any protocol.
68 hints_.ai_socktype = endpoint.protocol().type();
69 hints_.ai_protocol = endpoint.protocol().protocol();
76 /// Construct with specified service name for a given protocol.
79 * service binding with a specific protocol version.
81 * @param protocol A protocol object, normally representing either the IPv4 or
82 * IPv6 version of an internet protocol
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/p13n/inference/protocol/
P13nRankerFactory.java 15 package com.android.dialer.p13n.inference.protocol;

Completed in 594 milliseconds

1 2 3 4 5 6 7 8 91011>>