/packages/modules/NeuralNetworks/shim_and_sl/include/ |
D | SupportLibrary.h | 49 NnApiSupportLibrary(const NnApiSLDriverImplFL5& impl, void* libHandle) in NnApiSupportLibrary() 50 : libHandle(libHandle), impl(impl) {} in NnApiSupportLibrary() 55 NnApiSupportLibrary(const NnApiSLDriverImplFL8& impl, void* libHandle) in NnApiSupportLibrary() 56 : libHandle(libHandle), impl(impl) {} in NnApiSupportLibrary() 67 [](auto&& impl) { return reinterpret_cast<const NnApiSLDriverImplFL5*>(&impl); }, in getFL5() 68 impl); in getFL5() 73 [](auto&& impl) { return reinterpret_cast<const NnApiSLDriverImplFL6*>(&impl); }, in getFL6() 74 impl); in getFL6() 79 [](auto&& impl) { return reinterpret_cast<const NnApiSLDriverImplFL7*>(&impl); }, in getFL7() 80 impl); in getFL7() [all …]
|
/packages/modules/AdServices/adservices/tests/endtoends/src/com/android/adservices/measurement/ |
D | MeasurementManagerTest.java | 471 MeasurementCompatibleManager impl = mock(MeasurementCompatibleManager.class); in testRegisterSource() local 472 MeasurementManager mm = new MeasurementManager(impl); in testRegisterSource() 479 verify(impl).registerSource(eq(uri), isNull(), isNull(), isNull()); in testRegisterSource() 480 verifyNoMoreInteractions(impl); in testRegisterSource() 486 MeasurementCompatibleManager impl = mock(MeasurementCompatibleManager.class); in testRegisterSource_SPlus() local 487 MeasurementManager mm = new MeasurementManager(impl); in testRegisterSource_SPlus() 494 verify(impl).registerSource(eq(uri), isNull(), isNull(), isNull()); in testRegisterSource_SPlus() 495 verifyNoMoreInteractions(impl); in testRegisterSource_SPlus() 500 MeasurementCompatibleManager impl = mock(MeasurementCompatibleManager.class); in testRegisterSource_propagatesExecutor() local 501 MeasurementManager mm = new MeasurementManager(impl); in testRegisterSource_propagatesExecutor() [all …]
|
/packages/apps/Car/DebuggingRestrictionController/libs/ |
D | httpclient-4.5.12.jar | ... cookie/params/
org/apache/http/impl/
org/apache/http/impl/client ... |
/packages/modules/RuntimeI18n/apex/hiddenapi/ |
D | hiddenapi-max-target-o-low-priority.txt | 1 Landroid/icu/impl/BMPSet;->bmpBlockBits:[I 2 Landroid/icu/impl/BMPSet;->containsSlow(III)Z 3 Landroid/icu/impl/BMPSet;->findCodePoint(III)I 4 Landroid/icu/impl/BMPSet;->initBits()V 5 Landroid/icu/impl/BMPSet;->latin1Contains:[Z 6 Landroid/icu/impl/BMPSet;->list4kStarts:[I 7 Landroid/icu/impl/BMPSet;->list:[I 8 Landroid/icu/impl/BMPSet;->listLength:I 9 Landroid/icu/impl/BMPSet;->set32x64Bits([III)V 10 Landroid/icu/impl/BMPSet;->table7FF:[I [all …]
|
/packages/modules/NeuralNetworks/shim_and_sl/ |
D | SupportLibrary.cpp | 50 NnApiSLDriverImpl* impl = getSlDriverImpl(); in loadNnApiSupportLibrary() local 51 if (impl == nullptr) { in loadNnApiSupportLibrary() 56 if (impl->implFeatureLevel < ANEURALNETWORKS_FEATURE_LEVEL_5) { in loadNnApiSupportLibrary() 57 LOG(ERROR) << "Unsupported NnApiSLDriverImpl->implFeatureLevel: " << impl->implFeatureLevel; in loadNnApiSupportLibrary() 61 if (impl->implFeatureLevel == ANEURALNETWORKS_FEATURE_LEVEL_5) { in loadNnApiSupportLibrary() 62 return std::make_unique<NnApiSupportLibrary>(*reinterpret_cast<NnApiSLDriverImplFL5*>(impl), in loadNnApiSupportLibrary() 65 if (impl->implFeatureLevel == ANEURALNETWORKS_FEATURE_LEVEL_6) { in loadNnApiSupportLibrary() 66 return std::make_unique<NnApiSupportLibrary>(*reinterpret_cast<NnApiSLDriverImplFL6*>(impl), in loadNnApiSupportLibrary() 69 if (impl->implFeatureLevel == ANEURALNETWORKS_FEATURE_LEVEL_7) { in loadNnApiSupportLibrary() 70 return std::make_unique<NnApiSupportLibrary>(*reinterpret_cast<NnApiSLDriverImplFL7*>(impl), in loadNnApiSupportLibrary() [all …]
|
/packages/modules/Bluetooth/system/gd/neighbor/ |
D | scan.cc | 33 struct ScanModule::impl { struct in bluetooth::neighbor::ScanModule 34 impl(ScanModule& module); 62 neighbor::ScanModule::impl::impl(neighbor::ScanModule& module) in impl() function in bluetooth::neighbor::neighbor::ScanModule::impl 65 void neighbor::ScanModule::impl::OnCommandComplete(hci::CommandCompleteView view) { in OnCommandComplete() 90 void neighbor::ScanModule::impl::WriteScanEnable() { in WriteScanEnable() 105 …hci_layer_->EnqueueCommand(std::move(packet), handler_->BindOnceOn(this, &impl::OnCommandComplete)… in WriteScanEnable() 110 …hci_layer_->EnqueueCommand(std::move(packet), handler_->BindOnceOn(this, &impl::OnCommandComplete)… in WriteScanEnable() 114 void neighbor::ScanModule::impl::ReadScanEnable(hci::ScanEnable scan_enable) { in ReadScanEnable() 138 void neighbor::ScanModule::impl::SetInquiryScan(bool enabled) { in SetInquiryScan() 143 void neighbor::ScanModule::impl::SetPageScan(bool enabled) { in SetPageScan() [all …]
|
D | name_db.cc | 43 struct NameDbModule::impl { struct in bluetooth::neighbor::NameDbModule 50 impl(const NameDbModule& module); 70 neighbor::NameDbModule::impl::impl(const neighbor::NameDbModule& module) : module_(module) {} in impl() function in bluetooth::neighbor::neighbor::NameDbModule::impl 72 void neighbor::NameDbModule::impl::ReadRemoteNameRequest( in ReadRemoteNameRequest() 96 handler_->BindOnceOn(this, &NameDbModule::impl::OnRemoteNameResponse, address)); in ReadRemoteNameRequest() 99 void neighbor::NameDbModule::impl::OnRemoteNameResponse( in OnRemoteNameResponse() 115 bool neighbor::NameDbModule::impl::IsNameCached(hci::Address address) const { in IsNameCached() 119 RemoteName neighbor::NameDbModule::impl::ReadCachedRemoteName(hci::Address address) const { in ReadCachedRemoteName() 127 neighbor::NameDbModule::NameDbModule() : pimpl_(std::make_unique<impl>(*this)) {} in NameDbModule() 136 &NameDbModule::impl::ReadRemoteNameRequest, in ReadRemoteNameRequest() [all …]
|
/packages/apps/Dialer/ |
D | Android.bp | 23 // the manifest files in java/com/android/incallui/calllocation/impl/ 24 // and /java/com/android/incallui/maps/impl/ 30 // --grpc-java_out=lite:"packages/apps/Dialer/java/com/android/voicemail/impl/" 31 …pps/Dialer/java/com/android/voicemail/impl/transcribe/grpc/" "packages/apps/Dialer/java/com/androi… 73 "--extra-packages com.android.dialer.glidephotomanager.impl", 78 "--extra-packages com.android.dialer.main.impl", 79 "--extra-packages com.android.dialer.main.impl.toolbar", 80 "--extra-packages com.android.dialer.main.impl.bottomnav", 86 "--extra-packages com.android.dialer.precall.impl", 88 "--extra-packages com.android.dialer.preferredsim.impl", [all …]
|
/packages/modules/Bluetooth/system/bta/le_audio/ |
D | mock_codec_interface.cc | 33 impl = new Impl(codec_id); in CodecInterface() 35 CodecInterface::~CodecInterface() { delete impl; } in ~CodecInterface() 36 bool CodecInterface::IsReady() { return impl->IsReady(); }; in IsReady() 40 return impl->InitEncoder(pcm_config, codec_config); in InitEncoder() 45 return impl->InitDecoder(codec_config, pcm_config); in InitDecoder() 48 return impl->GetDecodedSamples(); in GetDecodedSamples() 51 return impl->Decode(data, size); in Decode() 57 return impl->Encode(data, stride, out_size, out_buffer, out_offset); in Encode() 59 void CodecInterface::Cleanup() { return impl->Cleanup(); } in Cleanup() 62 return impl->GetNumOfSamplesPerChannel(); in GetNumOfSamplesPerChannel() [all …]
|
/packages/modules/StatsD/statsd/src/utils/ |
D | Regex.cpp | 28 Regex::Regex(regex_t impl) : mImpl(std::move(impl)) { in Regex() argument 36 regex_t impl; in create() local 37 int status = regcomp(&impl, pattern.c_str(), REG_EXTENDED); in create() 41 size_t errBufSize = regerror(status, &impl, nullptr, 0); in create() 45 regerror(status, &impl, errBuf, errBufSize); in create() 48 regfree(&impl); in create() 50 } else if (impl.re_nsub > 0) { in create() 52 regfree(&impl); in create() 55 return std::make_unique<Regex>(impl); in create()
|
/packages/modules/Uwb/androidx_backend/tests/src/androidx/core/uwb/backend/impl/ |
D | UwbControleeClientTest.java | 17 package androidx.core.uwb.backend.impl; 19 import static androidx.core.uwb.backend.impl.internal.RangingCapabilities.DEFAULT_SUPPORTED_RANGING… 20 import static androidx.core.uwb.backend.impl.internal.RangingCapabilities.DEFAULT_SUPPORTED_SLOT_DU… 21 import static androidx.core.uwb.backend.impl.internal.RangingCapabilities.DEFAULT_SUPPORTS_RANGING_… 22 import static androidx.core.uwb.backend.impl.internal.RangingCapabilities.FIRA_DEFAULT_RANGING_INTE… 23 import static androidx.core.uwb.backend.impl.internal.RangingCapabilities.FIRA_DEFAULT_SUPPORTED_CH… 24 import static androidx.core.uwb.backend.impl.internal.RangingCapabilities.FIRA_DEFAULT_SUPPORTED_CO… 25 import static androidx.core.uwb.backend.impl.internal.Utils.RANGE_DATA_NTF_DISABLE; 26 import static androidx.core.uwb.backend.impl.internal.Utils.RANGE_DATA_NTF_ENABLE; 27 import static androidx.core.uwb.backend.impl.internal.Utils.RANGE_DATA_NTF_ENABLE_PROXIMITY_EDGE_TR… [all …]
|
/packages/modules/Uwb/androidx_backend/src/androidx/core/uwb/backend/impl/ |
D | UwbControllerClient.java | 17 package androidx.core.uwb.backend.impl; 19 import static androidx.core.uwb.backend.impl.internal.Utils.STATUS_OK; 20 import static androidx.core.uwb.backend.impl.internal.Utils.TAG; 31 import androidx.core.uwb.backend.impl.internal.RangingController; 32 import androidx.core.uwb.backend.impl.internal.UwbServiceImpl; 46 androidx.core.uwb.backend.impl.internal.UwbComplexChannel channel = in getComplexChannel() 75 androidx.core.uwb.backend.impl.internal.UwbAddress uwbAddress = in addControlee() 76 androidx.core.uwb.backend.impl.internal.UwbAddress.fromBytes(address.address); in addControlee() 87 androidx.core.uwb.backend.impl.internal.UwbAddress uwbAddress = in addControleeWithSessionParams() 88 androidx.core.uwb.backend.impl.internal.UwbAddress in addControleeWithSessionParams() [all …]
|
D | UwbClient.java | 17 package androidx.core.uwb.backend.impl; 19 import static androidx.core.uwb.backend.impl.internal.Utils.DURATION_2_MS; 20 import static androidx.core.uwb.backend.impl.internal.Utils.STATUS_OK; 21 import static androidx.core.uwb.backend.impl.internal.Utils.TAG; 32 import androidx.core.uwb.backend.impl.internal.RangingDevice; 33 import androidx.core.uwb.backend.impl.internal.RangingPosition; 34 import androidx.core.uwb.backend.impl.internal.RangingSessionCallback; 35 import androidx.core.uwb.backend.impl.internal.UwbDevice; 36 import androidx.core.uwb.backend.impl.internal.UwbRangeDataNtfConfig; 37 import androidx.core.uwb.backend.impl.internal.UwbServiceImpl; [all …]
|
/packages/apps/Dialer/java/com/android/voicemail/impl/sms/ |
D | OmtpMessageReceiver.java | 16 package com.android.voicemail.impl.sms; 29 import com.android.voicemail.impl.ActivationTask; 30 import com.android.voicemail.impl.OmtpConstants; 31 import com.android.voicemail.impl.OmtpService; 32 import com.android.voicemail.impl.OmtpVvmCarrierConfigHelper; 33 import com.android.voicemail.impl.Voicemail; 34 import com.android.voicemail.impl.Voicemail.Builder; 35 import com.android.voicemail.impl.VvmLog; 36 import com.android.voicemail.impl.protocol.VisualVoicemailProtocol; 37 import com.android.voicemail.impl.settings.VisualVoicemailSettingsUtil; [all …]
|
/packages/apps/ThemePicker/tests/module/src/com/android/wallpaper/ |
D | ThemePickerTestModule.kt | 62 @Binds @Singleton abstract fun bindInjector(impl: TestCustomizationInjector): Injector in bindInjector() 64 @Binds @Singleton abstract fun bindUserEventLogger(impl: TestUserEventLogger): UserEventLogger in bindInjector() 66 @Binds @Singleton abstract fun bindFakeRequester(impl: FakeDefaultRequester): Requester in bindInjector() 70 abstract fun bindThemesUserEventLogger(impl: TestThemesUserEventLogger): ThemesUserEventLogger in bindInjector() 74 abstract fun bindWallpaperPrefs(impl: TestDefaultCustomizationPreferences): WallpaperPreferences in bindInjector() 80 abstract fun bindCustomizationInjector(impl: TestCustomizationInjector): CustomizationInjector in bindInjector() 85 impl: TestDefaultCustomizationPreferences in bindInjector() 91 impl: DefaultWallpaperModelFactory in bindInjector() 97 impl: FakeLiveWallpaperDownloader in bindInjector() 102 abstract fun providePartnerProvider(impl: TestPartnerProvider): PartnerProvider in bindInjector() [all …]
|
/packages/apps/WallpaperPicker2/tests/common/src/com/android/wallpaper/di/modules/ |
D | SharedTestModule.kt | 62 @Binds @Singleton abstract fun bindUiModeManager(impl: FakeUiModeManager): UiModeManagerWrapper in bindUiModeManager() 66 abstract fun bindNetworkStatusNotifier(impl: TestNetworkStatusNotifier): NetworkStatusNotifier in bindUiModeManager() 70 abstract fun bindWallpaperXMLParser(impl: FakeWallpaperParser): WallpaperParser in bindUiModeManager() 74 abstract fun bindCategoryFactory(impl: FakeDefaultCategoryFactory): CategoryFactory in bindUiModeManager() 76 @Binds @Singleton abstract fun bindWallpaperClient(impl: FakeWallpaperClient): WallpaperClient in bindUiModeManager() 86 abstract fun bindMainDispatcher(impl: TestDispatcher): CoroutineDispatcher in bindUiModeManager() 89 @Binds @Singleton @MainDispatcher abstract fun bindMainScope(impl: TestScope): CoroutineScope in bindUiModeManager() 96 abstract fun bindBackgroundDispatcher(impl: TestDispatcher): CoroutineDispatcher in bindUiModeManager() 100 abstract fun bindCategoryInteractor(impl: FakeCategoryInteractor): CategoryInteractor in bindUiModeManager() 105 impl: FakeCreativeWallpaperInteractor in bindUiModeManager() [all …]
|
/packages/modules/Bluetooth/system/gd/shim/ |
D | dumpsys.cc | 48 struct Dumpsys::impl { struct in bluetooth::shim::Dumpsys 53 impl(const Dumpsys& dumpsys_module, const dumpsys::ReflectionSchema& reflection_schema); 54 ~impl() = default; 72 Dumpsys::impl::impl(const Dumpsys& dumpsys_module, const dumpsys::ReflectionSchema& reflection_sche… in impl() function in bluetooth::shim::Dumpsys::impl 75 int Dumpsys::impl::GetNumberOfBundledSchemas() const { in GetNumberOfBundledSchemas() 79 bool Dumpsys::impl::IsDebuggable() const { in IsDebuggable() 83 void Dumpsys::impl::FilterSchema(std::string* dumpsys_data) const { in FilterSchema() 88 std::string Dumpsys::impl::PrintAsJson(std::string* dumpsys_data) const { in PrintAsJson() 134 void Dumpsys::impl::DumpWithArgsAsync(int fd, const char** args) const { in DumpWithArgsAsync() 149 void Dumpsys::impl::DumpWithArgsSync(int fd, const char** args, std::promise<void> promise) { in DumpWithArgsSync() [all …]
|
/packages/apps/Dialer/java/com/android/voicemail/impl/protocol/ |
D | Vvm3Protocol.java | 17 package com.android.voicemail.impl.protocol; 31 import com.android.voicemail.impl.ActivationTask; 32 import com.android.voicemail.impl.OmtpConstants; 33 import com.android.voicemail.impl.OmtpEvents; 34 import com.android.voicemail.impl.OmtpVvmCarrierConfigHelper; 35 import com.android.voicemail.impl.VisualVoicemailPreferences; 36 import com.android.voicemail.impl.VoicemailStatus; 37 import com.android.voicemail.impl.VvmLog; 38 import com.android.voicemail.impl.imap.ImapHelper; 39 import com.android.voicemail.impl.imap.ImapHelper.InitializingException; [all …]
|
D | VisualVoicemailProtocol.java | 17 package com.android.voicemail.impl.protocol; 24 import com.android.voicemail.impl.ActivationTask; 25 import com.android.voicemail.impl.DefaultOmtpEventHandler; 26 import com.android.voicemail.impl.OmtpConstants; 27 import com.android.voicemail.impl.OmtpEvents; 28 import com.android.voicemail.impl.OmtpVvmCarrierConfigHelper; 29 import com.android.voicemail.impl.VoicemailStatus; 30 import com.android.voicemail.impl.sms.OmtpMessageSender; 31 import com.android.voicemail.impl.sms.StatusMessage;
|
/packages/modules/Connectivity/staticlibs/testutils/hostdevice/com/android/testutils/ |
D | PacketFilter.kt | 77 private val impl = OffsetFilter(ETHER_TYPE_OFFSET, 0x08, 0x00 /* IPv4 */).and( constant 80 override fun test(t: ByteArray) = impl.test(t) in test() 90 private val impl = OffsetFilter(ETHER_TYPE_OFFSET, 0x86.toByte(), 0xdd.toByte() /* IPv6 */).and( in test() constant 93 override fun test(t: ByteArray) = impl.test(t) in test() 100 private val impl = OffsetFilter(IPV4_DST_OFFSET, *dst.address) constant 101 override fun test(t: ByteArray) = impl.test(t) in test() 108 private val impl = OffsetFilter(ETHER_TYPE_OFFSET, 0x08, 0x06 /* ARP */) in test() constant in ArpRequestFilter 110 override fun test(t: ByteArray) = impl.test(t) in test() 114 private val impl = OffsetFilter(ETHER_TYPE_OFFSET, 0x86.toByte(), 0xdd.toByte() /* IPv6 */).and( constant in Icmpv6Filter 116 override fun test(t: ByteArray) = impl.test(t) in test() [all …]
|
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/ui/enrollment/collection/ |
D | GaUxEnrollmentChannelCollection.java | 24 import com.android.adservices.service.ui.enrollment.impl.AlreadyEnrolledChannel; 25 import com.android.adservices.service.ui.enrollment.impl.ConsentNotificationDebugChannel; 26 import com.android.adservices.service.ui.enrollment.impl.ConsentNotificationResetChannel; 27 import com.android.adservices.service.ui.enrollment.impl.FirstConsentNotificationChannel; 28 import com.android.adservices.service.ui.enrollment.impl.GaGraduationChannel; 29 import com.android.adservices.service.ui.enrollment.impl.PasFirstConsentNotificationChannel; 30 import com.android.adservices.service.ui.enrollment.impl.PasReconsentNotificationChannel; 31 import com.android.adservices.service.ui.enrollment.impl.ReconsentNotificationChannel; 32 import com.android.adservices.service.ui.enrollment.impl.RvcPostOTAChannel;
|
/packages/modules/Connectivity/remoteauth/tests/unit/src/com/android/server/remoteauth/ranging/ |
D | RangingParametersTest.java | 18 import static androidx.core.uwb.backend.impl.internal.RangingDevice.SESSION_ID_UNSET; 19 import static androidx.core.uwb.backend.impl.internal.Utils.CONFIG_PROVISIONED_UNICAST_DS_TWR; 20 import static androidx.core.uwb.backend.impl.internal.Utils.DURATION_1_MS; 21 import static androidx.core.uwb.backend.impl.internal.Utils.NORMAL; 27 import androidx.core.uwb.backend.impl.internal.UwbAddress; 28 import androidx.core.uwb.backend.impl.internal.UwbComplexChannel; 29 import androidx.core.uwb.backend.impl.internal.UwbRangeDataNtfConfig; 43 private static final androidx.core.uwb.backend.impl.internal.RangingParameters 45 new androidx.core.uwb.backend.impl.internal.RangingParameters(
|
/packages/apps/Dialer/java/com/android/voicemail/impl/imap/ |
D | ImapHelper.java | 16 package com.android.voicemail.impl.imap; 27 import com.android.voicemail.impl.OmtpConstants; 28 import com.android.voicemail.impl.OmtpEvents; 29 import com.android.voicemail.impl.OmtpVvmCarrierConfigHelper; 30 import com.android.voicemail.impl.VisualVoicemailPreferences; 31 import com.android.voicemail.impl.Voicemail; 32 import com.android.voicemail.impl.VoicemailStatus; 33 import com.android.voicemail.impl.VoicemailStatus.Editor; 34 import com.android.voicemail.impl.VvmLog; 35 import com.android.voicemail.impl.fetch.VoicemailFetchedCallback; [all …]
|
/packages/apps/WallpaperPicker2/tests/module/src/com/android/wallpaper/ |
D | WallpaperPicker2TestModule.kt | 52 @Binds @Singleton abstract fun bindInjector(impl: TestInjector): Injector 54 @Binds @Singleton abstract fun bindUserEventLogger(impl: TestUserEventLogger): UserEventLogger 56 @Binds @Singleton abstract fun bindFakeRequester(impl: FakeDefaultRequester): Requester 61 impl: FakeDefaultWallpaperModelFactory 66 abstract fun bindWallpaperPreferences(impl: TestWallpaperPreferences): WallpaperPreferences 71 impl: FakeLiveWallpaperDownloader 76 abstract fun providePartnerProvider(impl: TestPartnerProvider): PartnerProvider 81 impl: DefaultImageEffectDialogUtil 86 abstract fun bindEffectsController(impl: FakeEffectsController): EffectsController 91 impl: DefaultCustomizationOptionsBinder
|
/packages/apps/Dialer/java/com/android/voicemail/impl/sync/ |
D | OmtpVvmSyncService.java | 16 package com.android.voicemail.impl.sync; 29 import com.android.voicemail.impl.ActivationTask; 30 import com.android.voicemail.impl.Assert; 31 import com.android.voicemail.impl.OmtpEvents; 32 import com.android.voicemail.impl.OmtpVvmCarrierConfigHelper; 33 import com.android.voicemail.impl.Voicemail; 34 import com.android.voicemail.impl.VoicemailStatus; 35 import com.android.voicemail.impl.VvmLog; 36 import com.android.voicemail.impl.fetch.VoicemailFetchedCallback; 37 import com.android.voicemail.impl.imap.ImapHelper; [all …]
|