/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/broadcast/ |
D | PendingRemovalStoreTest.kt | 28 private lateinit var store: PendingRemovalStore variable in com.android.systemui.broadcast.PendingRemovalStoreTest 34 store = PendingRemovalStore(logger) in setUp() 40 store.tagForRemoval(receiverOne, 10) in testTagForRemoval_logged() 48 store.clearPendingRemoval(receiverOne, user) in testClearedPendingRemoval_logged() 56 store.tagForRemoval(receiverOne, user) in testTaggedReceiverMarkedAsPending_specificUser() 58 assertThat(store.isPendingRemoval(receiverOne, user)).isTrue() in testTaggedReceiverMarkedAsPending_specificUser() 59 assertThat(store.isPendingRemoval(receiverOne, user + 1)).isFalse() in testTaggedReceiverMarkedAsPending_specificUser() 60 assertThat(store.isPendingRemoval(receiverOne, UserHandle.USER_ALL)).isFalse() in testTaggedReceiverMarkedAsPending_specificUser() 66 store.tagForRemoval(receiverOne, UserHandle.USER_ALL) in testTaggedReceiverMarkedAsPending_allUsers() 68 assertThat(store.isPendingRemoval(receiverOne, user)).isTrue() in testTaggedReceiverMarkedAsPending_allUsers() [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/ |
D | CustomIconCacheTest.kt | 58 customIconCache.store(TEST_COMPONENT1, CONTROL_ID_1, icon1) in testIconStoredCorrectly() 65 customIconCache.store(TEST_COMPONENT1, CONTROL_ID_1, icon1) in testIconNotStoredReturnsNull() 72 customIconCache.store(TEST_COMPONENT1, CONTROL_ID_1, icon1) in testWrongComponentReturnsNull() 79 customIconCache.store(TEST_COMPONENT1, CONTROL_ID_1, icon1) in testChangeComponentOldComponentIsRemoved() 80 customIconCache.store(TEST_COMPONENT2, CONTROL_ID_2, icon2) in testChangeComponentOldComponentIsRemoved() 88 customIconCache.store(TEST_COMPONENT1, CONTROL_ID_1, icon1) in testChangeComponentCorrectIconRetrieved() 89 customIconCache.store(TEST_COMPONENT2, CONTROL_ID_1, icon2) in testChangeComponentCorrectIconRetrieved() 96 customIconCache.store(TEST_COMPONENT1, CONTROL_ID_1, icon1) in testStoreNull() 97 customIconCache.store(TEST_COMPONENT1, CONTROL_ID_1, null) in testStoreNull()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/domain/interactor/ |
D | ActiveNotificationsInteractor.kt | 42 .map { store -> in <lambda>() method 43 store.renderList.map { key -> in <lambda>() 45 store[key] in <lambda>() 62 repository.activeNotifications.map { store -> store.individuals } in <lambda>() method 66 repository.activeNotifications.map { store -> store.individuals.size } in <lambda>() method 96 repository.activeNotifications.map { store -> store.rankingsMap } in <lambda>() method
|
/frameworks/av/media/codec2/hal/services/ |
D | vendor.cpp | 185 std::shared_ptr<IComponentStore> store; in runAidlService() local 191 store = ::ndk::SharedRefBase::make<utils::ComponentStore>( in runAidlService() 194 if (store == nullptr) { in runAidlService() 200 store->asBinder().get(), serviceName.c_str()); in runAidlService() 226 sp<IComponentStore> store; in runHidlService() local 232 store = new utils::ComponentStore( in runHidlService() 235 if (store == nullptr) { in runHidlService() 239 if (store->registerAsService(serviceName) != OK) { in runHidlService()
|
/frameworks/compile/libbcc/tests/libbcc/ |
D | test_reduce_general_cleanup.ll | 55 store i32 %2, i32* %accum, align 4, !tbaa !22 64 store float %3, float* %accum, align 4, !tbaa !26 73 store float %3, float* %accum, align 4, !tbaa !26 81 store i32 %1, i32* %2, align 4, !tbaa !26 83 store i32 -1, i32* %3, align 4, !tbaa !22 87 store i32 %4, i32* %6, align 4, !tbaa !26 89 store i32 -1, i32* %7, align 4, !tbaa !22 101 store float %in, float* %1, align 4 103 store i32 %x, i32* %5, align 4 113 store float %in, float* %7, align 4 [all …]
|
D | test_reduce_general_metadata.ll | 52 store i32 %2, i32* %accum, align 4, !tbaa !18 58 store i32 1, i32* %accum, align 4, !tbaa !18 66 store i32 %2, i32* %accum, align 4, !tbaa !18 75 store float %3, float* %accum, align 4, !tbaa !22 84 store float %3, float* %accum, align 4, !tbaa !22 106 store float %in, float* %1, align 4 108 store i32 %x, i32* %5, align 4 118 store float %in, float* %7, align 4 120 store i32 %x, i32* %11, align 4 148 store <2 x i32> %4, <2 x i32>* %result, align 8 [all …]
|
/frameworks/libs/binary_translation/runtime_primitives/ |
D | translation_cache.cc | 86 entry->host_code->store(kEntryTranslating); in LockForTranslationUnsafe() 110 entry->host_code->store(kEntryNotTranslated); in SetTranslatedAndUnlock() 120 entry->host_code->store(code.code); in SetTranslatedAndUnlock() 161 entry->host_code->store(kEntryNotTranslated); in SetWrappedAndUnlock() 171 entry->host_code->store(code.code); in SetWrappedAndUnlock() 198 host_code_ptr->store(host_code_piece.code); in AddUnsafe() 250 entry->host_code->store(kEntryInvalidating); in InvalidateEntriesBeingTranslatedUnsafe() 295 entry->host_code->store(kEntryInvalidating); in InvalidateGuestRange() 298 entry->host_code->store(kEntryNotTranslated); in InvalidateGuestRange()
|
/frameworks/av/media/libaaudio/src/legacy/ |
D | AudioStreamLegacy.cpp | 71 mCallbackEnabled.store(false); in onNewIAudioTrack() 127 mCallbackEnabled.store(false); in onMoreData() 132 mCallbackEnabled.store(false); in onMoreData() 192 mCallbackEnabled.store(false); in onMoreData() 197 mCallbackEnabled.store(false); in onMoreData() 208 mCallbackEnabled.store(false); in checkForDisconnectRequest()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/qs/pipeline/data/repository/ |
D | UserAutoAddRepositoryTest.kt | 66 store(value) in settingsChange_noChanges() 73 store(newValue) in settingsChange_noChanges() 82 store(specs) in noInvalidTileSpecs() 121 store(specs) in unmarkAdded() 135 store(specs) in restore_addsRestoredTiles() 150 private fun store(specs: String) { in store() method
|
/frameworks/rs/driver/runtime/ll32/ |
D | allocation.ll | 11 ; a char or uchar load/store is special as it can alias with about everything. 25 ; does not alias with a load/store accessing something not part of a RenderScript 38 store i8 %val, i8* %1, align 1, !tbaa !21 52 store <2 x i8> %val, <2 x i8>* %2, align 2, !tbaa !22 68 store <4 x i8> %2, <4 x i8>* %3, align 4, !tbaa !23 84 store <4 x i8> %val, <4 x i8>* %2, align 4, !tbaa !24 98 store i8 %val, i8* %1, align 1, !tbaa !25 112 store <2 x i8> %val, <2 x i8>* %2, align 2, !tbaa !26 128 store <4 x i8> %2, <4 x i8>* %3, align 4, !tbaa !27 144 store <4 x i8> %val, <4 x i8>* %2, align 4, !tbaa !28 [all …]
|
/frameworks/rs/driver/runtime/ll64/ |
D | allocation.ll | 13 ; a char or uchar load/store is special as it can alias with about everything. 27 ; does not alias with a load/store accessing something not part of a RenderScript 40 store i8 %val, i8* %1, align 1, !tbaa !21 55 store <2 x i8> %3, <2 x i8>* %2, align 2, !tbaa !22 72 store <4 x i8> %3, <4 x i8>* %4, align 4, !tbaa !23 89 store <4 x i8> %3, <4 x i8>* %2, align 4, !tbaa !24 103 store i8 %val, i8* %1, align 1, !tbaa !25 118 store <2 x i8> %3, <2 x i8>* %2, align 2, !tbaa !26 135 store <4 x i8> %3, <4 x i8>* %4, align 4, !tbaa !27 152 store <4 x i8> %3, <4 x i8>* %2, align 4, !tbaa !28 [all …]
|
/frameworks/av/media/tests/benchmark/src/native/common/ |
D | BenchmarkC2Common.cpp | 30 std::shared_ptr<C2AllocatorStore> store = android::GetCodec2PlatformAllocatorStore(); in setupCodec2() local 31 if (!store) return -1; in setupCodec2() 33 c2_status_t status = store->fetchAllocator(C2AllocatorStore::DEFAULT_LINEAR, &mLinearAllocator); in setupCodec2() 39 status = store->fetchAllocator(C2AllocatorStore::DEFAULT_GRAPHIC, &mGraphicAllocator); in setupCodec2()
|
/frameworks/av/media/module/codecserviceregistrant/fuzzer/ |
D | codecServiceRegistrant_fuzzer.cpp | 58 shared_ptr<C2ComponentStore> store = in initH2C2ComponentStore() local 60 if (!store) { in initH2C2ComponentStore() 67 new V1_2::utils::ComponentStore(store); in initH2C2ComponentStore() 73 new V1_1::utils::ComponentStore(store); in initH2C2ComponentStore() 79 new V1_0::utils::ComponentStore(store); in initH2C2ComponentStore()
|
/frameworks/av/media/libaaudio/tests/ |
D | test_return_stop.cpp | 53 framesRead.store(0); in reset() 54 startingFramesRead.store(0); in reset() 55 framesCalled.store(0); in reset() 56 callbackCount.store(0); in reset() 57 callbackCountAfterStop.store(0); in reset() 79 engine->startingFramesRead.store(engine->framesRead.load()); in s_myDataCallbackProc()
|
/frameworks/av/media/module/codecserviceregistrant/ |
D | CodecServiceRegistrant.cpp | 78 explicit H2C2ComponentStore(sp<HidlComponentStore> const& store) in H2C2ComponentStore() argument 79 : mHidlStore{store}, in H2C2ComponentStore() 80 mHidlConfigurable{[store]() -> sp<HidlConfigurable>{ in __anonac301a9d0202() 81 if (!store) { in __anonac301a9d0202() 85 store->getConfigurable(); in __anonac301a9d0202() 95 explicit H2C2ComponentStore(std::shared_ptr<AidlComponentStore> const& store) in H2C2ComponentStore() argument 96 : mAidlStore{store}, in H2C2ComponentStore() 97 mAidlConfigurable{[store]() -> std::shared_ptr<AidlConfigurable>{ in __anonac301a9d0302() 98 if (!store) { in __anonac301a9d0302() 102 ScopedAStatus status = store->getConfigurable(&configurable); in __anonac301a9d0302() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/complication/ |
D | ComplicationViewModelProvider.java | 30 public ComplicationViewModelProvider(ViewModelStore store, ComplicationViewModel viewModel) { in ComplicationViewModelProvider() argument 31 super(store, new DaggerViewModelProviderFactory(() -> viewModel)); in ComplicationViewModelProvider()
|
/frameworks/av/media/codec2/hal/aidl/ |
D | fuzzer.cpp | 29 std::shared_ptr<C2ComponentStore> store = ::android::GetCodec2PlatformComponentStore(); in LLVMFuzzerTestOneInput() local 30 std::shared_ptr<ComponentStore> binder = SharedRefBase::make<ComponentStore>(store); in LLVMFuzzerTestOneInput()
|
D | ComponentStore.cpp | 64 StoreIntf(const std::shared_ptr<C2ComponentStore>& store) in StoreIntf() 65 : ConfigurableC2Intf{store ? store->getName() : "", 0}, in StoreIntf() 66 mStore{store} { 121 StoreParameterCache(ComponentStore* store): mStore{store} { in StoreParameterCache() 137 ComponentStore::ComponentStore(const std::shared_ptr<C2ComponentStore>& store) in ComponentStore() argument 138 : mConfigurable{SharedRefBase::make<CachedConfigurable>(std::make_unique<StoreIntf>(store))}, in ComponentStore() 140 mStore{store} { 144 ::android::SetPreferredCodec2ComponentStore(store);
|
/frameworks/av/services/audioflinger/fastpath/ |
D | FastMixer.h | 42 virtual void setMasterMono(bool mono) { mMasterMono.store(mono); /* memory_order_seq_cst */ } in setMasterMono() 43 virtual void setMasterBalance(float balance) { mMasterBalance.store(balance); } in setMasterBalance() 46 mBoottimeOffset.store(boottimeOffset); /* memory_order_seq_cst */ in setBoottimeOffset()
|
/frameworks/av/media/codec2/vndk/ |
D | C2Store.cpp | 80 void setComponentStore(std::shared_ptr<C2ComponentStore> store); 195 std::shared_ptr<C2ComponentStore> store) { in UseComponentStoreForIonAllocator() argument 207 c2_status_t res = store->querySupportedValues_sm(query); in UseComponentStoreForIonAllocator() 226 mapper = [store](C2MemoryUsage usage, size_t capacity, in UseComponentStoreForIonAllocator() 233 c2_status_t res = store->config_sm({&usageInfo}, &failures); in UseComponentStoreForIonAllocator() 247 std::shared_ptr<C2ComponentStore> store) { in UseComponentStoreForDmaBufAllocator() argument 263 c2_status_t res = store->querySupportedValues_sm(query); in UseComponentStoreForDmaBufAllocator() 282 mapper = [store](C2MemoryUsage usage, size_t capacity, C2String* heapName, in UseComponentStoreForDmaBufAllocator() 292 c2_status_t res = store->config_sm({&*usageInfo}, &failures); in UseComponentStoreForDmaBufAllocator() 307 void C2PlatformAllocatorStoreImpl::setComponentStore(std::shared_ptr<C2ComponentStore> store) { in setComponentStore() argument [all …]
|
/frameworks/av/media/libaaudio/src/fifo/ |
D | FifoController.h | 46 mReadCounter.store(n, std::memory_order_release); in setReadCounter() 52 mWriteCounter.store(n, std::memory_order_release); in setWriteCounter()
|
D | FifoControllerIndirect.h | 55 mReadCounterAddress->store(count, std::memory_order_release); in setReadCounter() 63 mWriteCounterAddress->store(count, std::memory_order_release); in setWriteCounter()
|
/frameworks/av/media/module/codecs/amrwb/enc/src/asm/ARMV7/ |
D | scale_sig_neon.s | 64 VST1.S16 {Q8, Q9}, [r0]! @store 16 Word16 x[] 84 VST1.S16 {Q8, Q9}, [r0]! @store 16 Word16 x[] 99 VST1.S16 {Q8, Q9}, [r0]! @store 16 Word16 x[] 113 VST1.S16 {Q8, Q9}, [r0]! @store 16 Word16 x[] 127 VST1.S16 {Q8, Q9}, [r0]! @store 16 Word16 x[]
|
/frameworks/av/media/codec2/hal/hidl/1.0/utils/ |
D | ComponentStore.cpp | 60 StoreIntf(const std::shared_ptr<C2ComponentStore>& store) in StoreIntf() 61 : ConfigurableC2Intf{store ? store->getName() : "", 0}, in StoreIntf() 62 mStore{store} { 117 StoreParameterCache(ComponentStore* store): mStore{store} { in StoreParameterCache() 133 ComponentStore::ComponentStore(const std::shared_ptr<C2ComponentStore>& store) in ComponentStore() argument 134 : mConfigurable{new CachedConfigurable(std::make_unique<StoreIntf>(store))}, in ComponentStore() 136 mStore{store} { 139 SetPreferredCodec2ComponentStore(store);
|
/frameworks/rs/script_api/ |
D | rs_graphics.spec | 880 summary: Get program store blend destination function 882 Get program store blend destination function 892 summary: Get program store blend source function 894 Get program store blend source function 904 summary: Get program store depth function 906 Get program store depth function 916 summary: Get program store alpha component color mask 918 Get program store alpha component color mask 928 summary: Get program store blur component color mask 930 Get program store blur component color mask [all …]
|