/external/wayland-protocols/chromium.org/ |
D | README.chromium | 10 available in the Wayland core protocol. Such protocols either adds 12 protocol either in Wayland core, or some other protocol in 19 …-scanner code < src/unstable/xdg-shell/xdg-shell-unstable-v5.xml > protocol/xdg-shell-v5-protocol.c 20 …stable/xdg-shell/xdg-shell-unstable-v5.xml > include/protocol/xdg-shell-unstable-v5-server-protoco… 21 …stable/xdg-shell/xdg-shell-unstable-v5.xml > include/protocol/xdg-shell-unstable-v5-client-protoco… 22 …-scanner code < src/unstable/xdg-shell/xdg-shell-unstable-v6.xml > protocol/xdg-shell-v6-protocol.c 23 …stable/xdg-shell/xdg-shell-unstable-v6.xml > include/protocol/xdg-shell-unstable-v6-server-protoco… 24 …stable/xdg-shell/xdg-shell-unstable-v6.xml > include/protocol/xdg-shell-unstable-v6-client-protoco… 25 …er code < src/unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml > protocol/linux-dmabuf-protocol.c 26 …linux-dmabuf/linux-dmabuf-unstable-v1.xml > include/protocol/linux-dmabuf-unstable-v1-server-proto… [all …]
|
/external/tcpdump/tests/ |
D | hoobr_chdlc_print.out | 1 unknown CHDLC protocol (0x3030) 2 unknown CHDLC protocol (0x3030) 3 unknown CHDLC protocol (0x3030) 4 unknown CHDLC protocol (0x3030) 5 unknown CHDLC protocol (0x3030) 6 unknown CHDLC protocol (0x3030) 7 unknown CHDLC protocol (0x3030) 8 unknown CHDLC protocol (0x3030) 9 unknown CHDLC protocol (0x3030) 10 unknown CHDLC protocol (0x3030) [all …]
|
/external/v8/src/inspector/ |
D | v8-debugger-agent-impl.h | 27 using protocol::Maybe; 28 using protocol::Response; 30 class V8DebuggerAgentImpl : public protocol::Debugger::Backend { 38 V8DebuggerAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*, 39 protocol::DictionaryValue* state); 53 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations) 56 std::unique_ptr<protocol::Debugger::Location>, 58 std::unique_ptr<protocol::Debugger::Location>* actualLocation) override; 63 Response continueToLocation(std::unique_ptr<protocol::Debugger::Location>, 66 std::unique_ptr<protocol::Runtime::StackTraceId> inStackTraceId, [all …]
|
D | v8-inspector-session-impl.cc | 27 protocol::Runtime::Metainfo::commandPrefix) || in canDispatchMethod() 29 protocol::Debugger::Metainfo::commandPrefix) || in canDispatchMethod() 31 protocol::Profiler::Metainfo::commandPrefix) || in canDispatchMethod() 33 method, protocol::HeapProfiler::Metainfo::commandPrefix) || in canDispatchMethod() 35 protocol::Console::Metainfo::commandPrefix) || in canDispatchMethod() 37 protocol::Schema::Metainfo::commandPrefix); in canDispatchMethod() 71 std::unique_ptr<protocol::Value> state = in V8InspectorSessionImpl() 72 protocol::StringUtil::parseJSON(toString16(savedState)); in V8InspectorSessionImpl() 73 if (state) m_state = protocol::DictionaryValue::cast(std::move(state)); in V8InspectorSessionImpl() 74 if (!m_state) m_state = protocol::DictionaryValue::create(); in V8InspectorSessionImpl() [all …]
|
D | v8-profiler-agent-impl.cc | 44 std::unique_ptr<protocol::Array<protocol::Profiler::PositionTickInfo>> 48 auto array = protocol::Array<protocol::Profiler::PositionTickInfo>::create(); in buildInspectorObjectForPositionTicks() 52 std::unique_ptr<protocol::Profiler::PositionTickInfo> line = in buildInspectorObjectForPositionTicks() 53 protocol::Profiler::PositionTickInfo::create() in buildInspectorObjectForPositionTicks() 63 std::unique_ptr<protocol::Profiler::ProfileNode> buildInspectorObjectFor( in buildInspectorObjectFor() 68 protocol::Runtime::CallFrame::create() in buildInspectorObjectFor() 75 auto result = protocol::Profiler::ProfileNode::create() in buildInspectorObjectFor() 83 auto children = protocol::Array<int>::create(); in buildInspectorObjectFor() 99 std::unique_ptr<protocol::Array<int>> buildInspectorObjectForSamples( in buildInspectorObjectForSamples() 101 auto array = protocol::Array<int>::create(); in buildInspectorObjectForSamples() [all …]
|
D | v8-profiler-agent-impl.h | 23 using protocol::Maybe; 24 using protocol::Response; 26 class V8ProfilerAgentImpl : public protocol::Profiler::Backend { 28 V8ProfilerAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*, 29 protocol::DictionaryValue* state); 39 Response stop(std::unique_ptr<protocol::Profiler::Profile>*) override; 45 std::unique_ptr<protocol::Array<protocol::Profiler::ScriptCoverage>>* 48 std::unique_ptr<protocol::Array<protocol::Profiler::ScriptCoverage>>* 54 std::unique_ptr<protocol::Array<protocol::Profiler::ScriptTypeProfile>>* 64 std::unique_ptr<protocol::Profiler::Profile> stopProfiling( [all …]
|
D | v8-runtime-agent-impl.h | 51 using protocol::Response; 52 using protocol::Maybe; 54 class V8RuntimeAgentImpl : public protocol::Runtime::Backend { 56 V8RuntimeAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*, 57 protocol::DictionaryValue* state); 76 Maybe<protocol::Array<protocol::Runtime::CallArgument>> optionalArguments, 86 std::unique_ptr<protocol::Array<protocol::Runtime::PropertyDescriptor>>* 88 Maybe<protocol::Array<protocol::Runtime::InternalPropertyDescriptor>>* 90 Maybe<protocol::Runtime::ExceptionDetails>*) override; 99 Maybe<protocol::Runtime::ExceptionDetails>*) override; [all …]
|
/external/grpc-grpc-java/okhttp/third_party/okhttp/main/java/io/grpc/okhttp/internal/ |
D | Protocol.java | 84 private final String protocol; field in Protocol 86 Protocol(String protocol) { in Protocol() argument 87 this.protocol = protocol; in Protocol() 94 public static Protocol get(String protocol) throws IOException { in get() argument 96 if (protocol.equals(HTTP_1_0.protocol)) return HTTP_1_0; in get() 97 if (protocol.equals(HTTP_1_1.protocol)) return HTTP_1_1; in get() 98 if (protocol.equals(HTTP_2.protocol)) return HTTP_2; in get() 99 if (protocol.equals(GRPC_EXP.protocol)) return GRPC_EXP; in get() 100 if (protocol.equals(SPDY_3.protocol)) return SPDY_3; in get() 101 throw new IOException("Unexpected protocol: " + protocol); in get() [all …]
|
/external/wayland/ |
D | Makefile.am | 10 -I$(top_builddir)/protocol 19 protocol/wayland.xml \ 20 protocol/wayland.dtd 34 src/dtddata.o: protocol/wayland.dtd 72 protocol/wayland-server-protocol.h \ 73 protocol/wayland-client-protocol.h 84 protocol/wayland-server-protocol.h \ 85 protocol/wayland-protocol.c 94 protocol/wayland-client-protocol.h \ 95 protocol/wayland-protocol.c [all …]
|
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/ |
D | Protocol.java | 73 private final String protocol; field in Protocol 75 Protocol(String protocol) { in Protocol() argument 76 this.protocol = protocol; in Protocol() 83 public static Protocol get(String protocol) throws IOException { in get() argument 85 if (protocol.equals(HTTP_1_0.protocol)) return HTTP_1_0; in get() 86 if (protocol.equals(HTTP_1_1.protocol)) return HTTP_1_1; in get() 87 if (protocol.equals(HTTP_2.protocol)) return HTTP_2; in get() 88 if (protocol.equals(SPDY_3.protocol)) return SPDY_3; in get() 89 throw new IOException("Unexpected protocol: " + protocol); in get() 97 return protocol; in toString()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | Protocol.java | 71 private final String protocol; field in Protocol 73 Protocol(String protocol) { in Protocol() argument 74 this.protocol = protocol; in Protocol() 81 public static Protocol get(String protocol) throws IOException { in get() argument 83 if (protocol.equals(HTTP_1_0.protocol)) return HTTP_1_0; in get() 84 if (protocol.equals(HTTP_1_1.protocol)) return HTTP_1_1; in get() 85 if (protocol.equals(HTTP_2.protocol)) return HTTP_2; in get() 86 if (protocol.equals(SPDY_3.protocol)) return SPDY_3; in get() 87 throw new IOException("Unexpected protocol: " + protocol); in get() 95 return protocol; in toString()
|
/external/clang/test/SemaObjC/ |
D | protocol-expr-neg-1.m | 5 @protocol fproto; // expected-note {{'fproto' declared here}} 7 @protocol p1 14 Protocol *proto = @protocol(p1); 15 …Protocol *fproto = @protocol(fproto); // expected-warning {{@protocol is using a forward protocol … 16 Protocol *pp = @protocol(i); // expected-error {{cannot find protocol declaration for 'i'}} 17 Protocol *p1p = @protocol(cl); // expected-error {{cannot find protocol declaration for 'cl'}} 21 @protocol SuperProtocol; // expected-note {{'SuperProtocol' declared here}} 22 @protocol TestProtocol; // expected-note {{'TestProtocol' declared here}} 29 …return [foo conformsToProtocol:@protocol(TestProtocol)]; // expected-warning {{@protocol is using … 33 …return [foo conformsToProtocol:@protocol(SuperProtocol)]; // expected-warning {{@protocol is using…
|
D | protocols.m | 14 @protocol p1,p2,p3; 16 @protocol p1; 18 @protocol PROTO1 27 @protocol PROTO2<p1> 30 @protocol p1 @end 32 @protocol PROTO<p1> // expected-note {{previous definition is here}} 35 @protocol PROTO<p1> // expected-warning {{duplicate protocol definition of 'PROTO'}} 38 @protocol PROTO3<p1, p1> 41 @protocol p2 <p1> 44 @protocol PROTO4 <p1, p2, PROTO, PROTO3, p3> [all …]
|
D | protocols-suppress-conformance.m | 3 // Mark this protocol as requiring all of its methods and properties 6 @protocol Protocol 11 // In this example, ClassA adopts the protocol. We won't 12 // provide the implementation here, but this protocol will 48 @protocol Inherited 53 @protocol Derived <Inherited> 63 @implementation ClassD // expected-warning {{method 'foulIsFair' in protocol 'Derived' not implemen… 68 @protocol AnotherProtocol @end 70 // Cannot put the attribute on classes or other non-protocol declarations. 80 @protocol ProtocolA [all …]
|
D | class-proto-1.m | 5 @protocol p1,p2,p3; // expected-note {{protocol 'p2' has no definition}} \ 6 // expected-note {{protocol 'p3' has no definition}} 8 @protocol p1; 10 @protocol PROTO1 14 @protocol p1 @end 18 @interface E1 <p2> @end // expected-warning {{cannot find protocol definition for 'p2'}} 20 @protocol p2 @end 25 @interface E2 <p1,p2,p3> @end // expected-warning {{cannot find protocol definition for 'p3'}} 42 @protocol UndefinedParentProtocol; // expected-note {{protocol 'UndefinedParentProtocol' has no def… 44 @protocol UndefinedProtocol <UndefinedParentProtocol> [all …]
|
/external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/net/ssl/ |
D | SSLContextTest.java | 93 for (String protocol : StandardNames.SSL_CONTEXT_PROTOCOLS) { in test_SSLContext_setDefault() 96 SSLContext newContext = SSLContext.getInstance(protocol); in test_SSLContext_setDefault() 109 for (String protocol : StandardNames.SSL_CONTEXT_PROTOCOLS_WITH_DEFAULT_CONFIG) { in test_SSLContext_defaultConfiguration() 110 SSLContext sslContext = SSLContext.getInstance(protocol); in test_SSLContext_defaultConfiguration() 111 if (!protocol.equals(StandardNames.SSL_CONTEXT_PROTOCOLS_DEFAULT)) { in test_SSLContext_defaultConfiguration() 241 for (String protocol : StandardNames.SSL_CONTEXT_PROTOCOLS) { in test_SSLContext_getInstance() 242 assertNotNull(SSLContext.getInstance(protocol)); in test_SSLContext_getInstance() 243 assertNotSame(SSLContext.getInstance(protocol), SSLContext.getInstance(protocol)); in test_SSLContext_getInstance() 274 for (String protocol : StandardNames.SSL_CONTEXT_PROTOCOLS) { in test_SSLContext_getInstance() 276 SSLContext.getInstance(protocol, (String) null); in test_SSLContext_getInstance() [all …]
|
/external/conscrypt/repackaged/openjdk-integ-tests/src/test/java/com/android/org/conscrypt/javax/net/ssl/ |
D | SSLContextTest.java | 97 for (String protocol : StandardNames.SSL_CONTEXT_PROTOCOLS) { in test_SSLContext_setDefault() 100 SSLContext newContext = SSLContext.getInstance(protocol); in test_SSLContext_setDefault() 113 for (String protocol : StandardNames.SSL_CONTEXT_PROTOCOLS_WITH_DEFAULT_CONFIG) { in test_SSLContext_defaultConfiguration() 114 SSLContext sslContext = SSLContext.getInstance(protocol); in test_SSLContext_defaultConfiguration() 115 if (!protocol.equals(StandardNames.SSL_CONTEXT_PROTOCOLS_DEFAULT)) { in test_SSLContext_defaultConfiguration() 244 for (String protocol : StandardNames.SSL_CONTEXT_PROTOCOLS) { in test_SSLContext_getInstance() 245 assertNotNull(SSLContext.getInstance(protocol)); in test_SSLContext_getInstance() 246 assertNotSame(SSLContext.getInstance(protocol), SSLContext.getInstance(protocol)); in test_SSLContext_getInstance() 277 for (String protocol : StandardNames.SSL_CONTEXT_PROTOCOLS) { in test_SSLContext_getInstance() 279 SSLContext.getInstance(protocol, (String) null); in test_SSLContext_getInstance() [all …]
|
/external/apache-http/src/org/apache/http/ |
D | ProtocolVersion.java | 67 protected final String protocol; field in ProtocolVersion 83 public ProtocolVersion(String protocol, int major, int minor) { in ProtocolVersion() argument 84 if (protocol == null) { in ProtocolVersion() 96 this.protocol = protocol; in ProtocolVersion() 107 return protocol; in getProtocol() 151 return new ProtocolVersion(this.protocol, major, minor); in forVersion() 161 return this.protocol.hashCode() ^ (this.major * 100000) ^ this.minor; in hashCode() 187 return ((this.protocol.equals(that.protocol)) && in equals() 204 return (that != null) && this.protocol.equals(that.protocol); in isComparable() 229 if (!this.protocol.equals(that.protocol)) { in compareToVersion() [all …]
|
/external/parameter-framework/asio-1.10.6/include/asio/ip/ |
D | basic_resolver_query.hpp | 68 hints_.ai_socktype = endpoint.protocol().type(); in basic_resolver_query() 69 hints_.ai_protocol = endpoint.protocol().protocol(); in basic_resolver_query() 96 basic_resolver_query(const protocol_type& protocol, in basic_resolver_query() argument 104 hints_.ai_family = protocol.family(); in basic_resolver_query() 105 hints_.ai_socktype = protocol.type(); in basic_resolver_query() 106 hints_.ai_protocol = protocol.protocol(); in basic_resolver_query() 153 hints_.ai_socktype = endpoint.protocol().type(); in basic_resolver_query() 154 hints_.ai_protocol = endpoint.protocol().protocol(); in basic_resolver_query() 195 basic_resolver_query(const protocol_type& protocol, in basic_resolver_query() argument 203 hints_.ai_family = protocol.family(); in basic_resolver_query() [all …]
|
/external/linux-kselftest/tools/testing/selftests/net/forwarding/ |
D | tc_flower.sh | 40 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \ 42 tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \ 54 tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower 55 tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower 66 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \ 68 tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \ 80 tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower 81 tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower 90 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \ 92 tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \ [all …]
|
/external/wayland-protocols/freedesktop.org/ |
D | README | 5 available in the Wayland core protocol. Such protocols either add 7 protocol either in Wayland core, or some other protocol in 10 A protocol in wayland-protocols consists of a directory containing a set 11 of XML files containing the protocol specification, and a README file 17 and protocol names as well as place in the directory tree will reflect 20 A stable protocol is a protocol which has been declared stable by 24 An unstable protocol is a protocol currently under development and this 25 will be reflected in the protocol and interface names. See <<Unstable 28 A deprecated protocol is a protocol that has either been replaced by some 29 other protocol, or declared undesirable for some other reason. No more [all …]
|
/external/linux-kselftest/tools/testing/selftests/drivers/net/mlxsw/spectrum-2/ |
D | tc_flower.sh | 48 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \ 57 tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \ 72 tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower 80 tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower 94 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \ 96 tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \ 105 tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower 113 tc filter add dev $h2 ingress protocol ip pref 3 handle 103 flower \ 122 tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower 130 tc filter del dev $h2 ingress protocol ip pref 3 handle 103 flower [all …]
|
/external/clang/test/ARCMT/ |
D | objcmt-protocol-conformance.m.result | 2 // RUN: %clang_cc1 -objcmt-migrate-protocol-conformance -mt-migrate-directory %t %s -x objective-c … 8 @protocol P 12 @interface Test1<P> // Test for no super class and no protocol list 19 @protocol P1 @end 20 @protocol P2 @end 22 @interface Test2 <P1, P2, P> // Test for no super class and with protocol list 33 @interface Test3 : NSObject<P> { // Test for Super class and no protocol list 42 @interface Test4 : NSObject <P1, P2, P> // Test for Super class and protocol list 50 @protocol P3 54 @protocol P4 [all …]
|
D | objcmt-protocol-conformance.m | 2 // RUN: %clang_cc1 -objcmt-migrate-protocol-conformance -mt-migrate-directory %t %s -x objective-c … 8 @protocol P 12 @interface Test1 // Test for no super class and no protocol list 19 @protocol P1 @end 20 @protocol P2 @end 22 @interface Test2 <P1, P2> // Test for no super class and with protocol list 33 @interface Test3 : NSObject { // Test for Super class and no protocol list 42 @interface Test4 : NSObject <P1, P2> // Test for Super class and protocol list 50 @protocol P3 54 @protocol P4 [all …]
|
/external/curl/tests/libtest/ |
D | lib1535.c | 31 long protocol; in test() local 41 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol); in test() 47 if(protocol != 0) { in test() 49 __FILE__, __LINE__, protocol); in test() 66 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol); in test() 72 if(protocol != CURLPROTO_HTTP) { in test() 75 __FILE__, __LINE__, CURLPROTO_HTTP, protocol); in test() 91 res = curl_easy_getinfo(dupe, CURLINFO_PROTOCOL, &protocol); in test() 97 if(protocol != 0) { in test() 99 __FILE__, __LINE__, protocol); in test() [all …]
|