| /external/wayland-protocols/freedesktop.org/ |
| D | GOVERNANCE.md | 1 # wayland-protocols governance 3 This document governs the maintenance of wayland-protocols and serves to outline 9 Membership in wayland-protocols is offered to stakeholders in the Wayland 17 protocols (e.g. compositors, GUI toolkits, etc), rather than special-purpose 32 4. A 14 day discussion period for comments from wayland-protocols members will 51 ## 2. Protocols 58 2. Protocols in a namespace may optionally use the namespace followed by a dash 60 3. The "xdg" namespace is established for protocols letting clients 63 4. The "wp" namespace is established for protocols generally useful to Wayland 64 implementations (i.e. "plumbing" protocols). [all …]
|
| D | README | 1 Wayland protocols 4 wayland-protocols contains Wayland protocols that add functionality not 5 available in the Wayland core protocol. Such protocols either add 8 wayland-protocols. 10 A protocol in wayland-protocols consists of a directory containing a set 16 Protocols may be 'stable', 'unstable' or 'deprecated', and the interface 21 the maintainers. Changes to such protocols will always be backward 33 is placed within the toplevel directory containing the protocols with the 34 same state. Stable protocols are placed in the +stable/+ directory, 35 unstable protocols are placed in the +unstable/+ directory, and [all …]
|
| D | README.md | 1 # Wayland protocols 3 wayland-protocols contains Wayland protocols that add functionality not 4 available in the Wayland core protocol. Such protocols either add 7 wayland-protocols. 9 A protocol in wayland-protocols consists of a directory containing a set 15 Protocols may be "stable", "unstable" or "deprecated", and the interface 20 the maintainers. Changes to such protocols will always be backward 32 is placed within the toplevel directory containing the protocols with the 33 same state. Stable protocols are placed in the `stable/` directory, 34 unstable protocols are placed in the `unstable/` directory, and [all …]
|
| D | METADATA | 1 name: "freedesktop.org.wayland-protocols" 3 "wayland-protocols contains Wayland protocols that add functionality not " 4 "available in the Wayland core protocol. Such protocols either add " 7 "wayland-protocols." 12 value: "https://gitlab.freedesktop.org/wayland/wayland-protocols.git"
|
| /external/curl/docs/cmdline-opts/ |
| D | proto.md | 5 Arg: <protocols> 6 Help: Enable/disable PROTOCOLS 19 Limit what protocols to allow for transfers. Protocols are evaluated left to 24 Permit this protocol in addition to protocols already permitted (this is 28 Deny this protocol, removing it from the list of protocols already permitted. 37 For example: --proto -ftps uses the default protocols, but disables ftps 43 Unknown and disabled protocols produce a warning. This allows scripts to 44 safely rely on being able to disable potentially dangerous protocols, without 48 as concatenating the protocols into one instance of the option.
|
| D | proto-redir.md | 5 Arg: <protocols> 6 Help: Enable/disable PROTOCOLS on redirect 18 Limit what protocols to allow on redirects. Protocols denied by --proto are 19 not overridden by this option. See --proto for how protocols are represented. 26 7.65.2). Specifying *all* or *+all* enables all protocols on redirects, which
|
| /external/wayland-protocols/ |
| D | README.android | 9 `git clone git://anongit.freedesktop.org/wayland/wayland-protocols`, 16 `meld freedesktop.org/ /path/to/freedesktop.org/wayland-protocols/` 33 src/third_party/wayland-protocols from your checkout. In particular these 35 * chromium.org/unstable/ and src/third_party/wayland-protocols/unstable/ 36 * chromium.org/LICENSE and src/third_party/wayland-protocols/LICENSE 37 * chromium.org/README.chromium and src/third_party/wayland-protocols/README.chromium 39 * src/third_party/wayland-protocols/include/ and 40 src/third_party/wayland-protocols/protocol both contain source code 42 * src/third_party/wayland-protocols/src (if you have it) is itself a clone 44 * src/third_party/wayland-protocols/OWNERS causes trouble with Android [all …]
|
| /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
| D | SSLUtils.java | 384 * Decodes the given list of protocols into {@link String}s. 385 * @param protocols the encoded protocol list 386 * @return the decoded protocols or {@link EmptyArray#BYTE} if {@code protocols} is 388 * @throws NullPointerException if protocols is {@code null}. 390 static String[] decodeProtocols(byte[] protocols) { in decodeProtocols() argument 391 if (protocols.length == 0) { in decodeProtocols() 396 for (int i = 0; i < protocols.length;) { in decodeProtocols() 397 int protocolLength = protocols[i]; in decodeProtocols() 398 if (protocolLength < 0 || protocolLength > protocols.length - i) { in decodeProtocols() 401 + "): " + (protocols.length < 50 in decodeProtocols() [all …]
|
| D | SSLParametersImpl.java | 46 * about enabled cipher suites and protocols, 75 // protocols enabled for SSL connection 77 // set to indicate when obsolete protocols are filtered 126 ServerSessionContext serverSessionContext, String[] protocols) in SSLParametersImpl() argument 148 // initialize the list of cipher suites and protocols enabled by default in SSLParametersImpl() 149 if (protocols == null) { in SSLParametersImpl() 153 filterFromProtocols(protocols, Arrays.asList(!Platform.isTlsV1Filtered() in SSLParametersImpl() 160 isEnabledProtocolsFiltered = protocols.length != filteredProtocols.length; in SSLParametersImpl() 286 * @return the set of enabled protocols 293 * Sets the list of available protocols for use in SSL connection. [all …]
|
| /external/conscrypt/common/src/main/java/org/conscrypt/ |
| D | SSLUtils.java | 383 * Decodes the given list of protocols into {@link String}s. 384 * @param protocols the encoded protocol list 385 * @return the decoded protocols or {@link EmptyArray#BYTE} if {@code protocols} is 387 * @throws NullPointerException if protocols is {@code null}. 389 static String[] decodeProtocols(byte[] protocols) { in decodeProtocols() argument 390 if (protocols.length == 0) { in decodeProtocols() 395 for (int i = 0; i < protocols.length;) { in decodeProtocols() 396 int protocolLength = protocols[i]; in decodeProtocols() 397 if (protocolLength < 0 || protocolLength > protocols.length - i) { in decodeProtocols() 400 + "): " + (protocols.length < 50 in decodeProtocols() [all …]
|
| D | SSLParametersImpl.java | 45 * about enabled cipher suites and protocols, 74 // protocols enabled for SSL connection 76 // set to indicate when obsolete protocols are filtered 125 ServerSessionContext serverSessionContext, String[] protocols) in SSLParametersImpl() argument 147 // initialize the list of cipher suites and protocols enabled by default in SSLParametersImpl() 148 if (protocols == null) { in SSLParametersImpl() 152 filterFromProtocols(protocols, Arrays.asList(!Platform.isTlsV1Filtered() in SSLParametersImpl() 159 isEnabledProtocolsFiltered = protocols.length != filteredProtocols.length; in SSLParametersImpl() 283 * @return the set of enabled protocols 290 * Sets the list of available protocols for use in SSL connection. [all …]
|
| /external/owasp/sanitizer/src/main/org/owasp/html/ |
| D | FilterUrlByProtocolAttributePolicy.java | 40 * URLs with protocols must match the protocol set passed to the constructor. 41 * URLs without protocols but which specify an origin different from the 59 private final ImmutableSet<String> protocols; field in FilterUrlByProtocolAttributePolicy 62 Iterable<? extends String> protocols) { in FilterUrlByProtocolAttributePolicy() argument 63 this.protocols = ImmutableSet.copyOf(protocols); in FilterUrlByProtocolAttributePolicy() 74 // or the protocols by which HTML is normally served are OK. in apply() 81 if (!protocols.contains(protocol)) { return null; } in apply() 89 return protocols.contains("http") && protocols.contains("https"); in allowProtocolRelativeUrls() 154 && protocols.equals(((FilterUrlByProtocolAttributePolicy) o).protocols); in equals() 159 return protocols.hashCode(); in hashCode()
|
| /external/aws-sdk-java-v2/core/protocols/aws-xml-protocol/src/main/java/software/amazon/awssdk/protocols/xml/ |
| D | AwsXmlProtocolFactory.java | 16 package software.amazon.awssdk.protocols.xml; 38 import software.amazon.awssdk.protocols.core.ExceptionMetadata; 39 import software.amazon.awssdk.protocols.core.OperationInfo; 40 import software.amazon.awssdk.protocols.core.OperationMetadataAttribute; 41 import software.amazon.awssdk.protocols.core.ProtocolMarshaller; 42 import software.amazon.awssdk.protocols.query.unmarshall.AwsXmlErrorProtocolUnmarshaller; 43 import software.amazon.awssdk.protocols.query.unmarshall.XmlElement; 44 import software.amazon.awssdk.protocols.xml.internal.marshall.XmlGenerator; 45 import software.amazon.awssdk.protocols.xml.internal.marshall.XmlProtocolMarshaller; 46 import software.amazon.awssdk.protocols.xml.internal.unmarshall.AwsXmlErrorTransformer; [all …]
|
| /external/conscrypt/testing/src/main/java/org/conscrypt/java/security/ |
| D | StandardNames.java | 35 * This class defines expected string names for protocols, key types, 177 // Deprecated TLS protocols... May or may not be present or enabled. 411 * Asserts that the protocols array is non-null and that it all of 412 * its contents are protocols known to this implementation. As a 413 * convenience, returns any unenabled protocols in a test for 414 * those that want to verify separately that all protocols were 417 private static Set<String> assertValidProtocols(Set<String> expected, String[] protocols) { in assertValidProtocols() argument 418 assertNotNull(protocols); in assertValidProtocols() 419 assertTrue(protocols.length != 0); in assertValidProtocols() 421 // Make sure all protocols names are expected in assertValidProtocols() [all …]
|
| /external/curl/docs/libcurl/opts/ |
| D | CURLOPT_REDIR_PROTOCOLS.md | 18 CURLOPT_REDIR_PROTOCOLS - protocols allowed to redirect to 32 control all available protocols! 35 limits what protocols libcurl may use in a transfer that it follows to in a 37 limit specific transfers to only be allowed to use a subset of protocols in 40 Protocols denied by CURLOPT_PROTOCOLS(3) are not overridden by this 44 *CURLPROTO_ALL* enables all protocols on redirect, including those 83 Older versions defaulted to all protocols except FILE, SCP and since 7.40.0 108 Added in 7.19.4, before then it would follow all protocols. Deprecated
|
| D | CURLOPT_PROTOCOLS_STR.md | 19 CURLOPT_PROTOCOLS_STR - allowed protocols 34 protocols but still limit specific transfers to only be allowed to use a 35 subset of them. By default, libcurl accepts all protocols it was built with 41 These are the available protocols: 47 You can set "ALL" as a short-cut to enable all protocols. Note that by setting 48 all, you may enable protocols that were not supported the day you write this 52 protocols in the current libcurl. CURLINFO_SCHEME(3) is the recommended 57 All protocols built-in
|
| D | CURLOPT_REDIR_PROTOCOLS_STR.md | 19 CURLOPT_REDIR_PROTOCOLS_STR - protocols allowed to redirect to 33 insensitive protocol names (URL schemes). That list limits what protocols 36 limit specific transfers to only be allowed to use a subset of protocols in 39 Protocols denied by CURLOPT_PROTOCOLS_STR(3) are not overridden by this 45 These are the available protocols: 51 You can set "ALL" as a short-cut to enable all protocols. Note that by setting 52 all, you may enable protocols that were not supported the day you write this 62 Older versions defaulted to all protocols except FILE, SCP and since 7.40.0
|
| /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
| D | OkHttpClient.java | 123 private List<Protocol> protocols; field in OkHttpClient 157 this.protocols = okHttpClient.protocols; in OkHttpClient() 484 * Configure the protocols used by this client to communicate with remote 486 * available, falling back to more ubiquitous protocols. Applications should 490 * <p>The following protocols are currently supported: 492 * <li><a href="http://www.w3.org/Protocols/rfc2616/rfc2616.html">http/1.1</a> 498 * support for transitional protocols. The http/1.1 transport will never be 501 * <p>If multiple protocols are specified, <a 509 * @param protocols the protocols to use, in order of preference. The list 513 public OkHttpClient setProtocols(List<Protocol> protocols) { in setProtocols() argument [all …]
|
| /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/ |
| D | OkHttpClient.java | 126 private List<Protocol> protocols; field in OkHttpClient 163 this.protocols = okHttpClient.protocols; in OkHttpClient() 497 * Configure the protocols used by this client to communicate with remote 499 * available, falling back to more ubiquitous protocols. Applications should 503 * <p>The following protocols are currently supported: 505 * <li><a href="http://www.w3.org/Protocols/rfc2616/rfc2616.html">http/1.1</a> 511 * support for transitional protocols. The http/1.1 transport will never be 514 * <p>If multiple protocols are specified, <a 522 * @param protocols the protocols to use, in order of preference. The list 527 public OkHttpClient setProtocols(List<Protocol> protocols) { in setProtocols() argument [all …]
|
| /external/aws-sdk-java-v2/core/protocols/aws-cbor-protocol/src/main/java/software/amazon/awssdk/protocols/cbor/ |
| D | AwsCborProtocolFactory.java | 16 package software.amazon.awssdk.protocols.cbor; 25 import software.amazon.awssdk.protocols.cbor.internal.AwsStructuredCborFactory; 26 import software.amazon.awssdk.protocols.json.AwsJsonProtocolFactory; 27 import software.amazon.awssdk.protocols.json.BaseAwsJsonProtocolFactory; 28 import software.amazon.awssdk.protocols.json.DefaultJsonContentTypeResolver; 29 import software.amazon.awssdk.protocols.json.JsonContentTypeResolver; 30 import software.amazon.awssdk.protocols.json.StructuredJsonFactory; 33 …* Protocol factory for AWS/CBOR protocols. Supports both JSON RPC and REST JSON versions of CBOR. … 74 …is for timestamps rather than epoch seconds with millisecond decimal precision like JSON protocols.
|
| /external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/java/security/ |
| D | StandardNames.java | 35 * This class defines expected string names for protocols, key types, 178 // Deprecated TLS protocols... May or may not be present or enabled. 412 * Asserts that the protocols array is non-null and that it all of 413 * its contents are protocols known to this implementation. As a 414 * convenience, returns any unenabled protocols in a test for 415 * those that want to verify separately that all protocols were 418 private static Set<String> assertValidProtocols(Set<String> expected, String[] protocols) { in assertValidProtocols() argument 419 assertNotNull(protocols); in assertValidProtocols() 420 assertTrue(protocols.length != 0); in assertValidProtocols() 422 // Make sure all protocols names are expected in assertValidProtocols() [all …]
|
| /external/mesa3d/subprojects/ |
| D | wayland-protocols.wrap | 2 directory = wayland-protocols-1.32 3 … = https://gitlab.freedesktop.org/wayland/wayland-protocols/-/releases/1.32/downloads/wayland-prot… 4 source_filename = wayland-protocols-1.32.tar.xz 6 …thub.com/mesonbuild/wrapdb/releases/download/wayland-protocols_1.32-1/wayland-protocols-1.32.tar.xz 10 wayland-protocols = wayland_protocols
|
| /external/curl/tests/ |
| D | devtest.pl | 87 # Parse and store the protocols in curl's Protocols: line 93 @protocols = split(' ', lc($line)); 99 push @protocols, map(("$_-ipv6", "$_-unix"), @protocols); 102 push @protocols, 'http-proxy'; 105 push @protocols, 'none'; 110 # Initialize @protocols from the curl binary under test 114 if(m/^Protocols: (.*)$/) { 145 print " protocols *|X[,Y...]\n"; 167 elsif($ARGV[0] eq "protocols") { 173 @protocols = split(",", $ARGV[0]); [all …]
|
| /external/tcpdump/tests/ |
| D | lacp-ev.out | 1 …1 04:02:10.267147 00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), lengt… 11 …2 04:02:11.184592 00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), lengt… 21 …3 04:02:12.147802 00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), lengt… 31 …4 04:02:18.675985 00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), lengt… 41 …5 04:02:18.690253 00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), lengt… 51 …6 04:02:39.216272 00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), lengt… 61 …7 04:03:05.733028 00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), lengt… 71 …8 04:03:31.389243 00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), lengt… 81 …9 04:03:35.229252 00:0e:83:16:f5:10 > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), lengt… 91 …10 04:03:35.244788 00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), leng… [all …]
|
| /external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/ |
| D | SSLUtilsTest.java | 65 byte[][] protocols = new byte[][]{ in encodeProtocolsShouldSucceed() 70 byte[] expected = getExpectedEncodedBytes(protocols); in encodeProtocolsShouldSucceed() 71 byte[] actual = SSLUtils.encodeProtocols(toStrings(protocols)); in encodeProtocolsShouldSucceed() 87 byte[][] protocols = new byte[][]{ in decodeProtocolsShouldSucceed() 92 byte[] encoded = getExpectedEncodedBytes(protocols); in decodeProtocolsShouldSucceed() 94 assertArrayEquals(toStrings(protocols), strings); in decodeProtocolsShouldSucceed() 216 private static String[] toStrings(byte[][] protocols) { in toStrings() argument 217 int numProtocols = protocols.length; in toStrings() 220 out[i] = new String(protocols[i], UTF_8); in toStrings() 225 private static byte[] getExpectedEncodedBytes(byte[][] protocols) { in getExpectedEncodedBytes() argument [all …]
|