/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/ |
D | Handshake.java | 60 ? Util.immutableList(peerCertificates) in get() 65 ? Util.immutableList(localCertificates) in get() 74 return new Handshake(cipherSuite, Util.immutableList(peerCertificates), in get() 75 Util.immutableList(localCertificates)); in get()
|
D | OkHttpClient.java | 57 private static final List<Protocol> DEFAULT_PROTOCOLS = Util.immutableList( 60 private static final List<ConnectionSpec> DEFAULT_CONNECTION_SPECS = Util.immutableList( 528 protocols = Util.immutableList(protocols); in setProtocols() 538 this.protocols = Util.immutableList(protocols); in setProtocols() 547 this.connectionSpecs = Util.immutableList(connectionSpecs); in setConnectionSpecs()
|
D | Address.java | 73 this.protocols = Util.immutableList(protocols); in Address() 76 this.connectionSpecs = Util.immutableList(connectionSpecs); in Address()
|
D | MultipartBuilder.java | 211 this.partHeaders = Util.immutableList(partHeaders); in MultipartRequestBody() 212 this.partBodies = Util.immutableList(partBodies); in MultipartRequestBody()
|
D | ConnectionSpec.java | 108 return Util.immutableList(result); in cipherSuites() 122 return Util.immutableList(result); in tlsVersions()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | Handshake.java | 58 ? Util.immutableList(peerCertificates) in get() 63 ? Util.immutableList(localCertificates) in get() 72 return new Handshake(cipherSuite, Util.immutableList(peerCertificates), in get() 73 Util.immutableList(localCertificates)); in get()
|
D | OkHttpClient.java | 54 private static final List<Protocol> DEFAULT_PROTOCOLS = Util.immutableList( 57 private static final List<ConnectionSpec> DEFAULT_CONNECTION_SPECS = Util.immutableList( 514 protocols = Util.immutableList(protocols); in setProtocols() 524 this.protocols = Util.immutableList(protocols); in setProtocols() 533 this.connectionSpecs = Util.immutableList(connectionSpecs); in setConnectionSpecs()
|
D | Address.java | 71 this.protocols = Util.immutableList(protocols); in Address() 74 this.connectionSpecs = Util.immutableList(connectionSpecs); in Address()
|
D | MultipartBuilder.java | 209 this.partHeaders = Util.immutableList(partHeaders); in MultipartRequestBody() 210 this.partBodies = Util.immutableList(partBodies); in MultipartRequestBody()
|
D | ConnectionSpec.java | 106 return Util.immutableList(result); in cipherSuites() 120 return Util.immutableList(result); in tlsVersions()
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
D | AddressTest.java | 32 private List<Protocol> protocols = Util.immutableList(Protocol.HTTP_1_1); 33 private List<ConnectionSpec> connectionSpecs = Util.immutableList(ConnectionSpec.MODERN_TLS);
|
D | WebPlatformUrlTest.java | 53 = Util.immutableList("http", "https"); 54 private static final List<String> KNOWN_FAILURES = Util.immutableList(
|
/external/javapoet/src/main/java/com/squareup/javapoet/ |
D | TypeSpec.java | 63 this.annotations = Util.immutableList(builder.annotations); in TypeSpec() 65 this.typeVariables = Util.immutableList(builder.typeVariables); in TypeSpec() 67 this.superinterfaces = Util.immutableList(builder.superinterfaces); in TypeSpec() 69 this.fieldSpecs = Util.immutableList(builder.fieldSpecs); in TypeSpec() 72 this.methodSpecs = Util.immutableList(builder.methodSpecs); in TypeSpec() 73 this.typeSpecs = Util.immutableList(builder.typeSpecs); in TypeSpec() 80 this.originatingElements = Util.immutableList(originatingElementsMutable); in TypeSpec()
|
D | Util.java | 43 result.put(entry.getKey(), immutableList(entry.getValue())); in immutableMultimap() 65 static <T> List<T> immutableList(Collection<T> collection) { in immutableList() method in Util
|
D | WildcardTypeName.java | 42 this.upperBounds = Util.immutableList(upperBounds); in WildcardTypeName() 43 this.lowerBounds = Util.immutableList(lowerBounds); in WildcardTypeName()
|
D | MethodSpec.java | 67 this.annotations = Util.immutableList(builder.annotations); in MethodSpec() 69 this.typeVariables = Util.immutableList(builder.typeVariables); in MethodSpec() 71 this.parameters = Util.immutableList(builder.parameters); in MethodSpec() 73 this.exceptions = Util.immutableList(builder.exceptions); in MethodSpec()
|
D | CodeBlock.java | 75 this.formatParts = Util.immutableList(builder.formatParts); in CodeBlock() 76 this.args = Util.immutableList(builder.args); in CodeBlock()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
D | Http2xStream.java | 63 private static final List<ByteString> SPDY_3_SKIPPED_REQUEST_HEADERS = Util.immutableList( 75 private static final List<ByteString> SPDY_3_SKIPPED_RESPONSE_HEADERS = Util.immutableList( 83 private static final List<ByteString> HTTP_2_SKIPPED_REQUEST_HEADERS = Util.immutableList( 98 private static final List<ByteString> HTTP_2_SKIPPED_RESPONSE_HEADERS = Util.immutableList(
|
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/http/ |
D | Http2xStream.java | 65 private static final List<ByteString> SPDY_3_SKIPPED_REQUEST_HEADERS = Util.immutableList( 77 private static final List<ByteString> SPDY_3_SKIPPED_RESPONSE_HEADERS = Util.immutableList( 85 private static final List<ByteString> HTTP_2_SKIPPED_REQUEST_HEADERS = Util.immutableList( 100 private static final List<ByteString> HTTP_2_SKIPPED_RESPONSE_HEADERS = Util.immutableList(
|
/external/grpc-grpc-java/okhttp/third_party/okhttp/main/java/io/grpc/okhttp/internal/ |
D | Util.java | 214 public static <T> List<T> immutableList(List<T> list) { in immutableList() method in Util 219 public static <T> List<T> immutableList(T[] elements) { in immutableList() method in Util
|
D | ConnectionSpec.java | 109 return Util.immutableList(result); in cipherSuites() 117 return Util.immutableList(result); in tlsVersions()
|
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/ |
D | Util.java | 214 public static <T> List<T> immutableList(List<T> list) { in immutableList() method in Util 219 public static <T> List<T> immutableList(T... elements) { in immutableList() method in Util
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/ |
D | Util.java | 208 public static <T> List<T> immutableList(List<T> list) { in immutableList() method in Util 213 public static <T> List<T> immutableList(T... elements) { in immutableList() method in Util
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/ |
D | ExternalSpdyExample.java | 37 .setProtocols(Util.immutableList(Protocol.SPDY_3, Protocol.HTTP_1_1)); in main()
|
D | ExternalHttp2Example.java | 37 .setProtocols(Util.immutableList(Protocol.HTTP_2, Protocol.HTTP_1_1)); in main()
|