Home
last modified time | relevance | path

Searched defs:domain (Results 1 – 25 of 2527) sorted by relevance

12345678910>>...102

/aosp_15_r20/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/domainselection/
DEmergencySmsDomainSelectionConnectionTest.java126 future.thenAcceptAsync((domain) -> { in testOnWlanSelected() argument
127 assertEquals(Integer.valueOf(NetworkRegistrationInfo.DOMAIN_PS), domain); in testOnWlanSelected() local
147 future.thenAcceptAsync((domain) -> { in testOnWlanSelectedWithDifferentTransportType() argument
148 assertEquals(Integer.valueOf(NetworkRegistrationInfo.DOMAIN_PS), domain); in testOnWlanSelectedWithDifferentTransportType() local
185 future.thenAcceptAsync((domain) -> { in testOnWlanSelectedWithDifferentTransportTypeAndImsPdn() argument
186 assertEquals(Integer.valueOf(NetworkRegistrationInfo.DOMAIN_PS), domain); in testOnWlanSelectedWithDifferentTransportTypeAndImsPdn() local
210 future.thenAcceptAsync((domain) -> { in testOnWlanSelectedWithDifferentTransportTypeWhilePreferredTransportChanged() argument
211 assertEquals(Integer.valueOf(NetworkRegistrationInfo.DOMAIN_PS), domain); in testOnWlanSelectedWithDifferentTransportTypeWhilePreferredTransportChanged() local
260 future.thenAcceptAsync((domain) -> { in testOnDomainSelectedPs() argument
261 assertEquals(Integer.valueOf(NetworkRegistrationInfo.DOMAIN_PS), domain); in testOnDomainSelectedPs() local
[all …]
DSmsDomainSelectionConnectionTest.java123 future.thenAcceptAsync((domain) -> { in testOnWlanSelected() argument
124 assertEquals(Integer.valueOf(NetworkRegistrationInfo.DOMAIN_PS), domain); in testOnWlanSelected() local
151 future.thenAcceptAsync((domain) -> { in testOnDomainSelectedPs() argument
152 assertEquals(Integer.valueOf(NetworkRegistrationInfo.DOMAIN_PS), domain); in testOnDomainSelectedPs() local
168 future.thenAcceptAsync((domain) -> { in testOnDomainSelectedCs() argument
169 assertEquals(Integer.valueOf(NetworkRegistrationInfo.DOMAIN_CS), domain); in testOnDomainSelectedCs() local
185 future.thenAcceptAsync((domain) -> { in testFinishSelection() argument
186 assertEquals(Integer.valueOf(NetworkRegistrationInfo.DOMAIN_PS), domain); in testFinishSelection() local
202 future.thenAcceptAsync((domain) -> { in testCancelSelection() argument
203 assertEquals(Integer.valueOf(NetworkRegistrationInfo.DOMAIN_PS), domain); in testCancelSelection() local
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/net/
H A DInternetDomainNameTest.java252 final InternetDomainName domain = InternetDomainName.from(name); in testPublicSuffix() local
261 final InternetDomainName domain = InternetDomainName.from(name); in testPublicSuffix() local
270 final InternetDomainName domain = InternetDomainName.from(name); in testPublicSuffix() local
279 final InternetDomainName domain = InternetDomainName.from(name); in testUnderPublicSuffix() local
288 final InternetDomainName domain = InternetDomainName.from(name); in testTopPrivateDomain() local
299 final InternetDomainName domain = InternetDomainName.from(name); in testUnderPrivateDomain() local
309 final InternetDomainName domain = InternetDomainName.from(name); in testRegistrySuffix() local
318 final InternetDomainName domain = InternetDomainName.from(name); in testRegistrySuffix() local
327 final InternetDomainName domain = InternetDomainName.from(name); in testRegistrySuffix() local
336 final InternetDomainName domain = InternetDomainName.from(name); in testUnderRegistrySuffix() local
[all …]
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/net/
H A DInternetDomainNameTest.java252 final InternetDomainName domain = InternetDomainName.from(name); in testPublicSuffix() local
261 final InternetDomainName domain = InternetDomainName.from(name); in testPublicSuffix() local
270 final InternetDomainName domain = InternetDomainName.from(name); in testPublicSuffix() local
279 final InternetDomainName domain = InternetDomainName.from(name); in testUnderPublicSuffix() local
288 final InternetDomainName domain = InternetDomainName.from(name); in testTopPrivateDomain() local
299 final InternetDomainName domain = InternetDomainName.from(name); in testUnderPrivateDomain() local
309 final InternetDomainName domain = InternetDomainName.from(name); in testRegistrySuffix() local
318 final InternetDomainName domain = InternetDomainName.from(name); in testRegistrySuffix() local
327 final InternetDomainName domain = InternetDomainName.from(name); in testRegistrySuffix() local
336 final InternetDomainName domain = InternetDomainName.from(name); in testUnderRegistrySuffix() local
[all …]
/aosp_15_r20/external/guava/guava/src/com/google/common/collect/
H A DCut.java49 abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain); in withLowerBoundType()
51 abstract Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain); in withUpperBoundType()
58 abstract C leastValueAbove(DiscreteDomain<C> domain); in leastValueAbove()
61 abstract C greatestValueBelow(DiscreteDomain<C> domain); in greatestValueBelow()
67 Cut<C> canonical(DiscreteDomain<C> domain) { in canonical()
158 BoundType boundType, DiscreteDomain<Comparable<?>> domain) { in withLowerBoundType()
164 BoundType boundType, DiscreteDomain<Comparable<?>> domain) { in withUpperBoundType()
179 Comparable<?> leastValueAbove(DiscreteDomain<Comparable<?>> domain) { in leastValueAbove()
184 Comparable<?> greatestValueBelow(DiscreteDomain<Comparable<?>> domain) { in greatestValueBelow()
189 Cut<Comparable<?>> canonical(DiscreteDomain<Comparable<?>> domain) { in canonical()
[all …]
/aosp_15_r20/external/guava/android/guava/src/com/google/common/collect/
H A DCut.java49 abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain); in withLowerBoundType()
51 abstract Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain); in withUpperBoundType()
58 abstract C leastValueAbove(DiscreteDomain<C> domain); in leastValueAbove()
61 abstract C greatestValueBelow(DiscreteDomain<C> domain); in greatestValueBelow()
67 Cut<C> canonical(DiscreteDomain<C> domain) { in canonical()
158 BoundType boundType, DiscreteDomain<Comparable<?>> domain) { in withLowerBoundType()
164 BoundType boundType, DiscreteDomain<Comparable<?>> domain) { in withUpperBoundType()
179 Comparable<?> leastValueAbove(DiscreteDomain<Comparable<?>> domain) { in leastValueAbove()
184 Comparable<?> greatestValueBelow(DiscreteDomain<Comparable<?>> domain) { in greatestValueBelow()
189 Cut<Comparable<?>> canonical(DiscreteDomain<Comparable<?>> domain) { in canonical()
[all …]
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/StatementService/StatementService/android_common/kotlin_headers/
DStatementService.jar ... domainGroupsDao () } com/android/statementservice/domain/ com/android/statementservice/domain/BaseDomainVerificationReceiver
/aosp_15_r20/external/fastrpc/src/
H A Dfastrpc_apps_user.c575 static int get_domain_from_handle(remote_handle64 local, int *domain) { in get_domain_from_handle()
591 int domain = DEFAULT_DOMAIN_ID; in get_domain_from_name() local
614 static int alloc_handle(int domain, remote_handle64 remote, struct handle_info **info) { in alloc_handle()
636 static int is_last_handle(int domain) { in is_last_handle()
693 void set_thread_context(int domain) { in set_thread_context()
700 int domain; in get_domain_id() local
713 int domain, nErr = 0; in is_smmu_enabled() local
749 int remote_handle_invoke_domain(int domain, remote_handle handle, uint32_t sc, remote_arg* pra) { in remote_handle_invoke_domain()
804 int domain = DEFAULT_DOMAIN_ID, nErr = AEE_SUCCESS; in remote_handle_invoke() local
825 int nErr = AEE_SUCCESS, domain = DEFAULT_DOMAIN_ID; in remote_handle64_invoke() local
[all …]
/aosp_15_r20/external/openscreen/discovery/dnssd/impl/
H A Dconversion_layer.cc25 const std::string& domain, in AddServiceInfoToLabels()
35 const std::string& domain) { in GetPtrDomainName()
43 const std::string& domain) { in GetInstanceDomainName()
56 const DomainName& domain) { in CreatePtrRecord()
65 const DomainName& domain) { in CreateSrvRecord()
73 const DomainName& domain) { in CreateARecords()
87 const DomainName& domain) { in CreateAAAARecords()
102 const DomainName& domain) { in CreateTxtRecord()
162 auto domain = GetPtrDomainName(key.service_id(), key.domain_id()); in GetPtrQueryInfo() local
170 bool HasValidDnsRecordAddress(const DomainName& domain) { in HasValidDnsRecordAddress()
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/proto/include/boost/proto/
Ddomain.hpp96 struct domain struct
99 typedef Generator proto_generator;
100 typedef Grammar proto_grammar;
101 typedef Super proto_super_domain;
102 typedef domain proto_base_domain;
105 typedef void proto_is_domain_;
132 struct as_expr
145 struct as_expr<T, typename T::proto_is_expr_, proto::callable>
176 struct as_child
189 struct as_child<T, typename T::proto_is_expr_, proto::callable>
/aosp_15_r20/external/libbrillo/brillo/errors/
H A Derror.cc17 const std::string& domain, in LogError()
34 const std::string& domain, in Create()
41 const std::string& domain, in Create()
52 const std::string& domain, in AddTo()
66 const std::string& domain, in AddToPrintf()
87 bool Error::HasError(const std::string& domain, const std::string& code) const { in HasError() argument
99 const std::string& domain, in Error()
111 const std::string& domain) { in FindErrorOfDomain()
121 const std::string& domain, in FindError()
/aosp_15_r20/external/pigweed/pw_tokenizer/public/pw_tokenizer/
H A Dtokenize.h79 #define PW_TOKENIZE_STRING_DOMAIN(domain, string_literal) \ argument
84 #define PW_TOKENIZE_STRING_DOMAIN_EXPR(domain, string_literal) \ argument
94 #define PW_TOKENIZE_STRING_MASK(domain, mask, string_literal) \ argument
106 #define PW_TOKENIZE_STRING_MASK_EXPR(domain, mask, string_literal) \ argument
156 domain, buffer, buffer_size_pointer, format, ...) \ argument
163 domain, mask, buffer, buffer_size_pointer, format, ...) \ argument
248 #define PW_TOKENIZE_FORMAT_STRING(domain, mask, format, ...) \ argument
270 #define PW_TOKENIZE_FORMAT_STRING_ANY_ARG_COUNT(domain, mask, format, ...) \ argument
294 #define PW_TOKENIZER_DEFINE_TOKEN(token, domain, string) \ argument
/aosp_15_r20/external/selinux/mcstrans/src/
H A Dmcstrans.c102 typedef struct domain { struct
112 struct domain *next; argument
360 destroy_domain(domain_t *domain) { in destroy_domain()
405 domain_t *domain = calloc(1, sizeof(domain_t)); in create_domain() local
603 add_base_classification(domain_t *domain, char *raw, char *trans) { in add_base_classification()
630 add_cache(domain_t *domain, char *raw, char *trans) { in add_cache()
730 static domain_t *domain; in process_trans() local
942 find_in_hashtable(const char *range, domain_t *domain, context_map_node_t **table) { in find_in_hashtable()
992 build_regexps(domain_t *domain) { in build_regexps()
1096 compute_raw_from_trans(const char *level, domain_t *domain) { in compute_raw_from_trans()
[all …]
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/StatementService/StatementService/android_common/kotlin/
DStatementService.jar ... > () } com/android/statementservice/domain/ com/android/statementservice/domain/BaseDomainVerificationReceiver ...
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/StatementService/StatementService/android_common/repackaged-jarjar/kotlinc/
DStatementService.jarcom/android/statementservice/utils/StatementUtils.class StatementUtils.kt package com.android. ...
/aosp_15_r20/external/coreboot/src/soc/amd/common/block/data_fabric/
H A Ddomain.c14 void amd_pci_domain_scan_bus(struct device *domain) in amd_pci_domain_scan_bus()
79 static void report_data_fabric_mmio(struct device *domain, unsigned long idx, in report_data_fabric_mmio()
90 static void add_data_fabric_mmio_regions(struct device *domain, unsigned long *idx) in add_data_fabric_mmio_regions()
141 static void report_data_fabric_io(struct device *domain, unsigned long idx, in report_data_fabric_io()
152 static void add_data_fabric_io_regions(struct device *domain, unsigned long *idx) in add_data_fabric_io_regions()
192 static void add_pci_cfg_resources(struct device *domain, unsigned long *idx) in add_pci_cfg_resources()
198 void amd_pci_domain_read_resources(struct device *domain) in amd_pci_domain_read_resources()
/aosp_15_r20/external/python/cpython2/Lib/
Dgettext.py497 def find(domain, localedir=None, languages=None, all=0): argument
537 def translation(domain, localedir=None, languages=None, argument
568 def install(domain, localedir=None, unicode=False, codeset=None, names=None): argument
582 def textdomain(domain=None): argument
589 def bindtextdomain(domain, localedir=None): argument
596 def bind_textdomain_codeset(domain, codeset=None): argument
603 def dgettext(domain, message): argument
611 def ldgettext(domain, message): argument
619 def dngettext(domain, msgid1, msgid2, n): argument
630 def ldngettext(domain, msgid1, msgid2, n): argument
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_sharding_metadata.cc99 const DomainMetadata::Domain& domain) { in LocatePassThroughDomainLinks()
123 Status FixupPassThroughDomainLinks(const DomainMetadata::Domain& domain, in FixupPassThroughDomainLinks()
155 Status ApplyDomainSingleSharding(const DomainMetadata::Domain& domain, in ApplyDomainSingleSharding()
236 const DomainMetadata::Domain& domain, in ApplyShardingFromUsers()
319 StatusOr<int64_t> ApplyDomainShardingPass(const DomainMetadata::Domain& domain, in ApplyDomainShardingPass()
344 Status ApplyDomainSharding(const DomainMetadata::Domain& domain, in ApplyDomainSharding()
448 const DomainMetadata::Domain& domain, const DomainMetadata* metadata) { in NormalizeShardingDomain()
510 HloInstruction* domain = in operator ()() local
/aosp_15_r20/frameworks/base/services/tests/timetests/src/com/android/server/timezonedetector/location/
H A DHandlerThreadingDomainTest.java62 ThreadingDomain domain = new HandlerThreadingDomain(mTestHandler); in getLockObject() local
68 ThreadingDomain domain = new HandlerThreadingDomain(mTestHandler); in assertCurrentThread() local
91 ThreadingDomain domain = new HandlerThreadingDomain(mTestHandler); in assertNotCurrentThread() local
113 ThreadingDomain domain = new HandlerThreadingDomain(mTestHandler); in post() local
126 ThreadingDomain domain = new HandlerThreadingDomain(mTestHandler); in postDelayed() local
165 ThreadingDomain domain = new HandlerThreadingDomain(mTestHandler); in postAndWait() local
192 ThreadingDomain domain = new HandlerThreadingDomain(mTestHandler); in singleRunnableQueue_runDelayed() local
/aosp_15_r20/external/tensorflow/tensorflow/core/profiler/backends/gpu/
H A Drocm_tracer.cc57 const char* GetActivityDomainName(uint32_t domain) { in GetActivityDomainName()
80 string GetActivityDomainOpName(uint32_t domain, uint32_t op) { in GetActivityDomainOpName()
107 inline void DumpApiCallbackData(uint32_t domain, uint32_t cbid, in DumpApiCallbackData()
252 const char* GetRocmTracerEventDomainName(const RocmTracerEventDomain& domain) { in GetRocmTracerEventDomainName()
310 Status RocmApiCallbackImpl::operator()(uint32_t domain, uint32_t cbid, in operator ()()
1400 void ApiCallback(uint32_t domain, uint32_t cbid, const void* cbdata, in ApiCallback()
1406 void RocmTracer::ApiCallbackHandler(uint32_t domain, uint32_t cbid, in ApiCallbackHandler()
1416 activity_domain_t domain = iter.first; in EnableApiTracing() local
1442 activity_domain_t domain = iter.first; in DisableApiTracing() local
1507 activity_domain_t domain = iter.first; in EnableActivityTracing() local
[all …]
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/net/
H A Dmsg_zerocopy.c183 static bool do_sendmsg(int fd, struct msghdr *msg, bool do_zerocopy, int domain) in do_sendmsg()
294 static void setup_sockaddr(int domain, const char *str_addr, in setup_sockaddr()
322 static int do_setup_tx(int domain, int type, int protocol) in do_setup_tx()
392 static bool do_recv_completion(int fd, int domain) in do_recv_completion()
460 static void do_recv_completions(int fd, int domain) in do_recv_completions()
466 static void do_recv_remaining_completions(int fd, int domain) in do_recv_remaining_completions()
481 static void do_tx(int domain, int type, int protocol) in do_tx()
570 static int do_setup_rx(int domain, int type, int protocol) in do_setup_rx()
651 static void do_rx(int domain, int type, int protocol) in do_rx()
676 static void do_test(int domain, int type, int protocol) in do_test()
/aosp_15_r20/external/python/cpython3/Lib/
Dgettext.py467 def find(domain, localedir=None, languages=None, all=False): argument
507 def translation(domain, localedir=None, languages=None, argument
541 def install(domain, localedir=None, *, names=None): argument
552 def textdomain(domain=None): argument
559 def bindtextdomain(domain, localedir=None): argument
566 def dgettext(domain, message): argument
574 def dngettext(domain, msgid1, msgid2, n): argument
585 def dpgettext(domain, context, message): argument
593 def dnpgettext(domain, context, msgid1, msgid2, n): argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/
Dgettext.py467 def find(domain, localedir=None, languages=None, all=False): argument
507 def translation(domain, localedir=None, languages=None, argument
541 def install(domain, localedir=None, *, names=None): argument
552 def textdomain(domain=None): argument
559 def bindtextdomain(domain, localedir=None): argument
566 def dgettext(domain, message): argument
574 def dngettext(domain, msgid1, msgid2, n): argument
585 def dpgettext(domain, context, message): argument
593 def dnpgettext(domain, context, msgid1, msgid2, n): argument
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/
H A Dgettext.py467 def find(domain, localedir=None, languages=None, all=False): argument
507 def translation(domain, localedir=None, languages=None, argument
541 def install(domain, localedir=None, *, names=None): argument
552 def textdomain(domain=None): argument
559 def bindtextdomain(domain, localedir=None): argument
566 def dgettext(domain, message): argument
574 def dngettext(domain, msgid1, msgid2, n): argument
585 def dpgettext(domain, context, message): argument
593 def dnpgettext(domain, context, msgid1, msgid2, n): argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/
Dgettext.py467 def find(domain, localedir=None, languages=None, all=False): argument
507 def translation(domain, localedir=None, languages=None, argument
541 def install(domain, localedir=None, *, names=None): argument
552 def textdomain(domain=None): argument
559 def bindtextdomain(domain, localedir=None): argument
566 def dgettext(domain, message): argument
574 def dngettext(domain, msgid1, msgid2, n): argument
585 def dpgettext(domain, context, message): argument
593 def dnpgettext(domain, context, msgid1, msgid2, n): argument

12345678910>>...102