/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
H A D | Protocol.java | 28 * 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 D | complete-protocols.m | 4 @protocol Protocol1 7 @protocol Protocol2; 11 @protocol Protocol0; 12 @protocol NewProtocol
|
H A D | index-suppress-refs.h | 8 @protocol P
|
/external/clang/test/PCH/ |
H A D | chain-predecl.h | 3 @protocol Pro;
|
/external/clang/test/Modules/Inputs/ |
H A D | redecl-merge-top.h | 9 @protocol P1; 11 @protocol P2; 12 @protocol P2;
|
H A D | redecl-merge-bottom.h | 5 @protocol P4; 6 @protocol P4; 7 @protocol P4; 14 @protocol P1;
|
H A D | category_top.h | 16 @protocol P1 19 @protocol P2 22 @protocol P3, P4;
|
H A D | 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/ |
H A D | 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);
|
H A D | 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 ! [all...] |
/external/v8/src/inspector/ |
H A D | 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;
|
H A D | 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();
|
H A D | 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;
|
H A D | 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 [all...] |
H A D | v8-heap-profiler-agent-impl.h | 9 #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 D | 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 [all...] |
/external/apache-http/src/org/apache/http/protocol/ |
H A D | 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;
|
/external/apache-http/src/org/apache/http/ |
H A D | 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 versio 83 ProtocolVersion(String protocol, int major, int minor) argument [all...] |
/external/selinux/python/sepolicy/sepolicy/ |
H A D | network.py | 36 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/curl/tests/libtest/ |
H A D | 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 o [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
H A D | ANTLRCharStream.h | 32 @protocol ANTLRCharStream < ANTLRIntStream >
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_getprotocol/ |
H A D | 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 [all...] |
/external/parameter-framework/asio/include/asio/ip/ |
H A D | 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 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 D | 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 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/wayland/tests/ |
H A D | headers-protocol-test.c | 26 #include "wayland-client-protocol.h" 27 #include "wayland-server-protocol.h" 30 #error including wayland-client-protocol.h did not include wayland-client.h! 33 #error including wayland-server-protocol.h did not include wayland-server.h!
|