/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowMediaStore.java | 116 ContentResolver resolver, String authority, String currentMediaCollectionId) { in notifyCloudMediaChangedEvent() 136 public static CloudMediaChangedEvent create(String authority, String currentMediaCollectionId) { in create() 141 public abstract String authority(); in authority() method in ShadowMediaStore.CloudMediaChangedEvent 148 @Nonnull ContentResolver resolver, @Nonnull String authority) { in isSupportedCloudMediaProviderAuthority() 167 @Nonnull ContentResolver resolver, @Nonnull String authority) { in isCurrentCloudMediaProviderAuthority() 172 public static void setCurrentCloudMediaProviderAuthority(@Nullable String authority) { in setCurrentCloudMediaProviderAuthority()
|
D | EnforcingAdminFactory.java | 25 UserHandle userHandle, String packageName, Authority authority) { in create() 45 void setAuthority(Authority authority); in setAuthority()
|
D | ShadowContentResolver.java | 521 String authority, ArrayList<ContentProviderOperation> operations) in applyBatch() 533 protected static void requestSync(Account account, String authority, Bundle extras) { in requestSync() 541 protected static void cancelSync(Account account, String authority) { in cancelSync() 556 protected static boolean isSyncActive(Account account, String authority) { in isSyncActive() 580 protected static void setIsSyncable(Account account, String authority, int syncable) { in setIsSyncable() 585 protected static int getIsSyncable(Account account, String authority) { in getIsSyncable() 590 protected static boolean getSyncAutomatically(Account account, String authority) { in getSyncAutomatically() 595 protected static void setSyncAutomatically(Account account, String authority, boolean sync) { in setSyncAutomatically() 601 Account account, String authority, Bundle extras, long pollFrequency) { in addPeriodicSync() 610 protected static void removePeriodicSync(Account account, String authority, Bundle extras) { in removePeriodicSync() [all …]
|
/external/grpc-grpc-java/gcp-observability/src/main/java/io/grpc/gcp/observability/interceptors/ |
D | InternalLoggingServerInterceptor.java | 90 final String authority = call.getAuthority(); in interceptCall() local 115 authority, in interceptCall() local 213 authority, in interceptCall() local 234 authority, in interceptCall() local 252 authority, in interceptCall() local
|
D | InternalLoggingChannelInterceptor.java | 92 final String authority = next.authority(); in interceptCall() local 123 authority, in interceptCall() local 218 authority, in interceptCall() local 239 authority, in interceptCall() local 257 authority, in interceptCall() local
|
D | LogHelper.java | 85 String authority, in logClientHeader() 129 String authority, in logServerHeader() 171 String authority, in logTrailer() 222 String authority, in logRpcMessage() 278 String authority, in logHalfClose() 305 String authority, in logCancel()
|
/external/mobly-bundled-snippets/src/main/java/com/google/android/mobly/snippet/bundled/ |
D | AccountSnippet.java | 198 private boolean isAdapterAllowListed(String username, String authority) { in isAdapterAllowListed() 225 private void updateSync(Account account, String authority, boolean sync) { in updateSync() 253 public void startSync(String username, String authority) throws AccountSnippetException { in startSync() 288 public void stopSync(String username, String authority) throws AccountSnippetException { in stopSync()
|
/external/grpc-grpc-java/core/src/main/java/io/grpc/inprocess/ |
D | InProcessTransport.java | 88 private final String authority; field in InProcessTransport 137 private InProcessTransport(SocketAddress address, int maxInboundMetadataSize, String authority, in InProcessTransport() 157 SocketAddress address, int maxInboundMetadataSize, String authority, String userAgent, in InProcessTransport() 164 String name, int maxInboundMetadataSize, String authority, String userAgent, in InProcessTransport()
|
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/ |
D | UdsNameResolver.java | 32 private final String authority; field in UdsNameResolver 34 UdsNameResolver(String authority, String targetPath) { in UdsNameResolver()
|
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/ |
D | ServerCallInfoImpl.java | 31 private final String authority; field in ServerCallInfoImpl 36 @Nullable String authority) { in ServerCallInfoImpl()
|
D | OobChannel.java | 74 private final String authority; field in OobChannel 105 String authority, ObjectPool<? extends Executor> executorPool, in OobChannel() 212 public String authority() { in authority() method in OobChannel
|
D | ManagedChannelImplBuilder.java | 281 public ManagedChannelImplBuilder(SocketAddress directServerAddress, String authority, in ManagedChannelImplBuilder() 296 public ManagedChannelImplBuilder(SocketAddress directServerAddress, String authority, in ManagedChannelImplBuilder() 408 public ManagedChannelImplBuilder overrideAuthority(String authority) { in overrideAuthority() 604 String checkAuthority(String authority) { in checkAuthority() 719 final String authority; field in ManagedChannelImplBuilder.DirectAddressNameResolverFactory 721 DirectAddressNameResolverFactory(SocketAddress address, String authority) { in DirectAddressNameResolverFactory()
|
D | ClientTransportFactory.java | 84 private String authority = "unknown-authority"; field in ClientTransportFactory.ClientTransportOptions 103 public ClientTransportOptions setAuthority(String authority) { in setAuthority()
|
/external/rust/android-crates-io/crates/http/src/uri/ |
D | mod.rs | 43 mod authority; module 98 authority: Authority, field 111 pub authority: Option<Authority>, field 260 let authority = match src.authority { in from_parts() localVariable 320 let authority = Authority::from_shared(s)?; in from_shared() localVariable 548 pub fn authority(&self) -> Option<&Authority> { in authority() method 808 let authority = if src.authority.data.is_empty() { in from() localVariable 855 let authority = Authority { in parse_full() localVariable 871 let authority = s.split_to(authority_end); in parse_full() localVariable 872 let authority = Authority { in parse_full() localVariable
|
D | authority.rs | 559 let authority: Authority = "example.com".parse().unwrap(); in equates_with_a_str() localVariable 568 let authority = Authority::from_static("example.com"); in from_static_equates_with_a_str() localVariable 574 let authority: Authority = "example.com".parse().unwrap(); in not_equal_with_a_str_of_a_different_authority() localVariable 583 let authority: Authority = "example.com".parse().unwrap(); in equates_with_a_string() localVariable 590 let authority: Authority = "example.com".parse().unwrap(); in equates_with_a_string_of_a_different_authority() localVariable 605 let authority: Authority = "def.com".parse().unwrap(); in compares_with_a_str() localVariable 621 let authority: Authority = "def.com".parse().unwrap(); in compares_with_a_string() localVariable 631 let authority: Authority = authority_str.parse().unwrap(); in allows_percent_in_userinfo() localVariable
|
/external/rust/android-crates-io/extra_versions/crates/http/src/uri/ |
D | mod.rs | 43 mod authority; module 98 authority: Authority, field 111 pub authority: Option<Authority>, field 260 let authority = match src.authority { in from_parts() localVariable 320 let authority = Authority::from_shared(s)?; in from_shared() localVariable 548 pub fn authority(&self) -> Option<&Authority> { in authority() method 808 let authority = if src.authority.data.is_empty() { in from() localVariable 855 let authority = Authority { in parse_full() localVariable 871 let authority = s.split_to(authority_end); in parse_full() localVariable 872 let authority = Authority { in parse_full() localVariable
|
D | authority.rs | 559 let authority: Authority = "example.com".parse().unwrap(); in equates_with_a_str() localVariable 568 let authority = Authority::from_static("example.com"); in from_static_equates_with_a_str() localVariable 574 let authority: Authority = "example.com".parse().unwrap(); in not_equal_with_a_str_of_a_different_authority() localVariable 583 let authority: Authority = "example.com".parse().unwrap(); in equates_with_a_string() localVariable 590 let authority: Authority = "example.com".parse().unwrap(); in equates_with_a_string_of_a_different_authority() localVariable 605 let authority: Authority = "def.com".parse().unwrap(); in compares_with_a_str() localVariable 621 let authority: Authority = "def.com".parse().unwrap(); in compares_with_a_string() localVariable 631 let authority: Authority = authority_str.parse().unwrap(); in allows_percent_in_userinfo() localVariable
|
/external/robolectric/resources/src/main/java/org/robolectric/manifest/ |
D | ContentProviderData.java | 12 private final String authority; field in ContentProviderData 19 String authority, in ContentProviderData()
|
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/ |
D | ForwardingManagedChannelTest.java | 97 public void authority() { in authority() method in ForwardingManagedChannelTest 98 String authority = "authority5678"; in authority() local
|
/external/cronet/stable/net/third_party/quiche/src/quiche/quic/tools/ |
D | quic_client_interop_test_bin.cc | 166 const std::string& authority) { in AttemptResumption() 199 QuicSocketAddress addr, std::string authority, QuicServerId server_id, in AttemptRequest() 332 const std::string& authority) { in ConstructHeaderBlock() 375 std::string authority = absl::StrCat(url_host, ":", port); in ServerSupport() local
|
D | connect_tunnel.cc | 78 const QuicServerId& authority, in ValidateAuthority() 114 std::optional<QuicServerId> authority = in OpenTunnel() local
|
/external/cronet/tot/net/third_party/quiche/src/quiche/quic/tools/ |
D | quic_client_interop_test_bin.cc | 166 const std::string& authority) { in AttemptResumption() 199 QuicSocketAddress addr, std::string authority, QuicServerId server_id, in AttemptRequest() 332 const std::string& authority) { in ConstructHeaderBlock() 375 std::string authority = absl::StrCat(url_host, ":", port); in ServerSupport() local
|
/external/grpc-grpc-java/core/src/main/java/io/grpc/util/ |
D | ForwardingLoadBalancerHelper.java | 50 public ManagedChannel createOobChannel(EquivalentAddressGroup eag, String authority) { in createOobChannel() 55 public ManagedChannel createOobChannel(List<EquivalentAddressGroup> eag, String authority) { in createOobChannel()
|
/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/uri/ |
D | uri_parser.cc | 231 std::string authority; in Parse() local 289 absl::StatusOr<URI> URI::Create(std::string scheme, std::string authority, in Create() 301 URI::URI(std::string scheme, std::string authority, std::string path, in URI()
|
/external/grpc-grpc/src/core/lib/uri/ |
D | uri_parser.cc | 230 std::string authority; in Parse() local 288 absl::StatusOr<URI> URI::Create(std::string scheme, std::string authority, in Create() 300 URI::URI(std::string scheme, std::string authority, std::string path, in URI()
|