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

1234567891011>>

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DProtocol.java28 * the protocol (http/1.1, spdy/3.1, etc.). OkHttp uses the word <i>protocol</i>
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) { argument
74 this.protocol = protocol;
81 get(String protocol) argument
[all...]
/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/clang/test/PCH/
H A Dchain-predecl.h3 @protocol Pro;
/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;
H A Dredecl-merge-right.h12 @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/
H A D3-1.c11 * [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);
H A D1-1.c10 * 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 !
[all...]
/external/v8/src/inspector/
H A Dv8-schema-agent-impl.h9 #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;
H A Dv8-schema-agent-impl.cc7 #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();
H A Dv8-console-agent-impl.h9 #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;
H A Dv8-heap-profiler-agent-impl.h9 #include "src/inspector/protocol/Forward.h"
10 #include "src/inspector/protocol/HeapProfiler.h"
18 using protocol::Maybe;
19 using protocol::Response;
21 class V8HeapProfilerAgentImpl : public protocol::HeapProfiler::Backend {
23 V8HeapProfilerAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*,
24 protocol::DictionaryValue* state);
40 std::unique_ptr<protocol::Runtime::RemoteObject>* result) override;
48 std::unique_ptr<protocol::HeapProfiler::SamplingHeapProfile>*) override;
58 protocol
[all...]
H A Dv8-debugger-agent-impl.h12 #include "src/inspector/protocol/Debugger.h"
13 #include "src/inspector/protocol/Forward.h"
27 using protocol::Maybe;
28 using protocol::Response;
30 class V8DebuggerAgentImpl : public protocol::Debugger::Backend {
46 V8DebuggerAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*,
47 protocol::DictionaryValue* state);
51 // Part of the protocol.
60 std::unique_ptr<protocol::Array<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.
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 versio
83 ProtocolVersion(String protocol, int major, int minor) argument
[all...]
/external/selinux/python/sepolicy/sepolicy/
H A Dnetwork.py36 def get_network_connect(src, protocol, perm, check_bools=False):
39 tlist = get_types(src, "%s_socket" % protocol, [perm], check_bools)
41 d[(src, protocol, perm)] = []
53 d[(src, protocol, perm)].append((i, ["all ports with out defined types"]))
55 d[(src, protocol, perm)].append((i, ["all ports"]))
57 d[(src, protocol, perm)].append((i, ["all ports > 1024"]))
59 d[(src, protocol, perm)].append((i, ["all ports < 1024"]))
61 d[(src, protocol, perm)].append((i, ["all ports > 500 and < 1024"]))
64 d[(src, protocol, perm)].append((i, portrecs[(i, protocol)]))
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRCharStream.h32 @protocol ANTLRCharStream < ANTLRIntStream >
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_getprotocol/
H A D1-2.c10 * 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
[all...]
/external/parameter-framework/asio/include/asio/ip/
H A Dbasic_resolver_query.hpp39 /// 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
96 basic_resolver_query(const protocol_type& protocol, const std::string& service, resolver_query_base::flags resolve_flags = passive | address_configured) argument
195 basic_resolver_query(const protocol_type& protocol, const std::string& host, const std::string& service, resolver_query_base::flags resolve_flags = address_configured) argument
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/ip/
H A Dbasic_resolver_query.hpp39 /// 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
96 basic_resolver_query(const protocol_type& protocol, const std::string& service, resolver_query_base::flags resolve_flags = passive | address_configured) argument
195 basic_resolver_query(const protocol_type& protocol, const std::string& host, const std::string& service, resolver_query_base::flags resolve_flags = address_configured) argument
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DStatusLine.java15 public final Protocol protocol; field in class:StatusLine
19 public StatusLine(Protocol protocol, int code, String message) { argument
20 this.protocol = protocol;
26 return new StatusLine(response.protocol(), response.code(), response.message());
33 // Parse protocol like "HTTP/1.1" followed by a space.
35 Protocol protocol;
43 protocol = Protocol.HTTP_1_0;
45 protocol = Protocol.HTTP_1_1;
51 protocol
[all...]
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/IN/
H A DWKS.py30 @ivar protocol: the protocol
31 @type protocol: int
36 __slots__ = ['address', 'protocol', 'bitmap']
38 def __init__(self, rdclass, rdtype, address, protocol, bitmap):
41 self.protocol = protocol
52 return '%s %d %s' % (self.address, self.protocol, text)
56 protocol = tok.get_string()
57 if protocol
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTokenSource.h33 @protocol ANTLRTokenSource <NSObject, NSCopying>

Completed in 1544 milliseconds

1234567891011>>