/aosp_15_r20/external/sdv/vsomeip/third_party/boost/atomic/include/boost/atomic/detail/ |
D | extra_ops_gcc_x86.hpp | 48 "lock; cmpxchgb %b2, %[storage]\n\t"\ 50 : [orig] "+a" (original), [storage] "+m" (storage), "=&q" (result)\ 55 …static BOOST_FORCEINLINE storage_type fetch_negate(storage_type volatile& storage, memory_order) B… in fetch_negate() 57 storage_type original = storage; in fetch_negate() 63 …static BOOST_FORCEINLINE storage_type fetch_complement(storage_type volatile& storage, memory_orde… in fetch_complement() 65 storage_type original = storage; in fetch_complement() 71 …static BOOST_FORCEINLINE storage_type negate(storage_type volatile& storage, memory_order) BOOST_N… in negate() 73 storage_type original = storage; in negate() 79 …static BOOST_FORCEINLINE storage_type bitwise_complement(storage_type volatile& storage, memory_or… in bitwise_complement() 81 storage_type original = storage; in bitwise_complement() [all …]
|
D | core_arch_ops_gcc_aarch64.hpp | 59 …static BOOST_FORCEINLINE void store(storage_type volatile& storage, storage_type v, memory_order o… in store() 65 "stlrb %w[value], %[storage]\n\t" in store() 66 : [storage] "=Q" (storage) in store() 73 storage = v; in store() 77 …static BOOST_FORCEINLINE storage_type load(storage_type const volatile& storage, memory_order orde… in load() 87 "ldaprb %w[value], %[storage]\n\t" in load() 89 : [storage] "Q" (storage) in load() 98 "ldarb %w[value], %[storage]\n\t" in load() 100 : [storage] "Q" (storage) in load() 107 v = storage; in load() [all …]
|
D | extra_ops_gcc_aarch64.hpp | 48 …static BOOST_FORCEINLINE void opaque_negate(storage_type volatile& storage, memory_order order) BO… in opaque_negate() 50 base_type::negate(storage, order); in opaque_negate() 53 …static BOOST_FORCEINLINE void opaque_complement(storage_type volatile& storage, memory_order order… in opaque_complement() 55 base_type::bitwise_complement(storage, order); in opaque_complement() 58 …static BOOST_FORCEINLINE void opaque_add(storage_type volatile& storage, storage_type v, memory_or… in opaque_add() 60 base_type::add(storage, v, order); in opaque_add() 63 …static BOOST_FORCEINLINE void opaque_sub(storage_type volatile& storage, storage_type v, memory_or… in opaque_sub() 65 base_type::sub(storage, v, order); in opaque_sub() 68 …static BOOST_FORCEINLINE void opaque_and(storage_type volatile& storage, storage_type v, memory_or… in opaque_and() 70 base_type::bitwise_and(storage, v, order); in opaque_and() [all …]
|
D | core_arch_ops_gcc_arm.hpp | 70 …static BOOST_FORCEINLINE void store(storage_type volatile& storage, storage_type v, memory_order o… in store() 73 storage = v; in store() 77 …static BOOST_FORCEINLINE storage_type load(storage_type const volatile& storage, memory_order orde… in load() 79 storage_type v = storage; in load() 84 …static BOOST_FORCEINLINE storage_type exchange(storage_type volatile& storage, storage_type v, mem… in exchange() 93 "ldrex %[original], %[storage]\n\t" // load the original value in exchange() 94 … "strex %[tmp], %[value], %[storage]\n\t" // store the replacement, tmp = store failed in exchange() 98 : [tmp] "=&l" (tmp), [original] "=&r" (original), [storage] "+Q" (storage) in exchange() 107 …storage_type volatile& storage, storage_type& expected, storage_type desired, memory_order success… in compare_exchange_weak() 118 "ldrex %[original], %[storage]\n\t" // original = *(&storage) in compare_exchange_weak() [all …]
|
D | extra_ops_gcc_arm.hpp | 45 …static BOOST_FORCEINLINE void opaque_negate(storage_type volatile& storage, memory_order order) BO… in opaque_negate() 47 base_type::fetch_negate(storage, order); in opaque_negate() 50 …static BOOST_FORCEINLINE void opaque_complement(storage_type volatile& storage, memory_order order… in opaque_complement() 52 base_type::fetch_complement(storage, order); in opaque_complement() 55 …static BOOST_FORCEINLINE bool negate_and_test(storage_type volatile& storage, memory_order order) … in negate_and_test() 57 return !!base_type::negate(storage, order); in negate_and_test() 60 …static BOOST_FORCEINLINE bool add_and_test(storage_type volatile& storage, storage_type v, memory_… in add_and_test() 62 return !!base_type::add(storage, v, order); in add_and_test() 65 …static BOOST_FORCEINLINE bool sub_and_test(storage_type volatile& storage, storage_type v, memory_… in sub_and_test() 67 return !!base_type::sub(storage, v, order); in sub_and_test() [all …]
|
D | extra_ops_gcc_aarch32.hpp | 46 …static BOOST_FORCEINLINE void opaque_negate(storage_type volatile& storage, memory_order order) BO… in opaque_negate() 48 base_type::negate(storage, order); in opaque_negate() 51 …static BOOST_FORCEINLINE void opaque_complement(storage_type volatile& storage, memory_order order… in opaque_complement() 53 base_type::bitwise_complement(storage, order); in opaque_complement() 56 …static BOOST_FORCEINLINE void opaque_add(storage_type volatile& storage, storage_type v, memory_or… in opaque_add() 58 base_type::add(storage, v, order); in opaque_add() 61 …static BOOST_FORCEINLINE void opaque_sub(storage_type volatile& storage, storage_type v, memory_or… in opaque_sub() 63 base_type::sub(storage, v, order); in opaque_sub() 66 …static BOOST_FORCEINLINE void opaque_and(storage_type volatile& storage, storage_type v, memory_or… in opaque_and() 68 base_type::bitwise_and(storage, v, order); in opaque_and() [all …]
|
D | core_arch_ops_gcc_aarch32.hpp | 63 …static BOOST_FORCEINLINE void store(storage_type volatile& storage, storage_type v, memory_order o… in store() 69 "stlb %[value], %[storage]\n\t" in store() 70 : [storage] "=Q" (storage) in store() 77 storage = v; in store() 81 …static BOOST_FORCEINLINE storage_type load(storage_type const volatile& storage, memory_order orde… in load() 88 "ldab %[value], %[storage]\n\t" in load() 90 : [storage] "Q" (storage) in load() 96 v = storage; in load() 102 …static BOOST_FORCEINLINE storage_type exchange(storage_type volatile& storage, storage_type v, mem… in exchange() 110 "ld" ld_mo "exb %[original], %[storage]\n\t"\ in exchange() [all …]
|
D | core_arch_ops_msvc_arm.hpp | 130 …static BOOST_FORCEINLINE storage_type fetch_sub(storage_type volatile& storage, storage_type v, me… in fetch_sub() 133 …return Derived::fetch_add(storage, static_cast< storage_type >(-static_cast< signed_storage_type >… in fetch_sub() 137 …storage_type volatile& storage, storage_type& expected, storage_type desired, memory_order success… in compare_exchange_weak() 139 … return Derived::compare_exchange_strong(storage, expected, desired, success_order, failure_order); in compare_exchange_weak() 142 …static BOOST_FORCEINLINE bool test_and_set(storage_type volatile& storage, memory_order order) BOO… in test_and_set() 144 return !!Derived::exchange(storage, (storage_type)1, order); in test_and_set() 147 …static BOOST_FORCEINLINE void clear(storage_type volatile& storage, memory_order order) BOOST_NOEX… in clear() 149 Derived::store(storage, (storage_type)0, order); in clear() 160 …static BOOST_FORCEINLINE void store(storage_type volatile& storage, storage_type v, memory_order o… in store() 163 BOOST_ATOMIC_DETAIL_ARM_STORE8(&storage, v); in store() [all …]
|
D | extra_ops_msvc_x86.hpp | 43 …static BOOST_FORCEINLINE storage_type fetch_negate(storage_type volatile& storage, memory_order or… in fetch_negate() 49 mov ecx, storage in fetch_negate() 63 …static BOOST_FORCEINLINE storage_type negate(storage_type volatile& storage, memory_order order) B… in negate() 69 mov ecx, storage in negate() 83 …static BOOST_FORCEINLINE bool negate_and_test(storage_type volatile& storage, memory_order order) … in negate_and_test() 89 mov ecx, storage in negate_and_test() 104 …static BOOST_FORCEINLINE void opaque_negate(storage_type volatile& storage, memory_order order) BO… in opaque_negate() 109 mov ecx, storage in opaque_negate() 121 …static BOOST_FORCEINLINE storage_type bitwise_and(storage_type volatile& storage, storage_type v, … in bitwise_and() 126 mov edi, storage in bitwise_and() [all …]
|
/aosp_15_r20/prebuilts/tools/common/google-api-services-storage/1.24.1/ |
HD | google-api-services-storage-v1-rev155-1.24.1.jar | ... )
}
com/google/api/services/storage/Storage$BucketAccessControls$Get.class
Storage. ... |
/aosp_15_r20/packages/services/Car/tests/BugReportApp/libs/ |
D | google-api-services-storage-v1-rev158-1.25.0.jar | ... )
}
com/google/api/services/storage/Storage$BucketAccessControls$Get.class
Storage. ... |
/aosp_15_r20/out/soong/.intermediates/packages/modules/GeoTZ/s2storage/s2storage_ro/android_common/javac/ |
D | s2storage_ro.jar | ... com/
com/android/
com/android/storage/
com/android/storage/block/
com ... |
/aosp_15_r20/out/soong/.intermediates/packages/modules/GeoTZ/s2storage/s2storage_ro/android_common/turbine/ |
D | s2storage_ro.jar | ... .storage.s2
public final com.android.storage.s2.S2CellOrdering extends java.lang.Object ... |
/aosp_15_r20/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/consent/ |
D | ConsentCompositeStorage.java | 48 * <p>Every source of truth should have its own dedicated storage class that implements the 51 * <p>By default, when caller set value to the storage, CompositeStorage will iterate through every 67 * @param consentStorageList storage implementation instance list. 71 throw new IllegalArgumentException("consent storage list can not be empty!"); in ConsentCompositeStorage() 83 for (IConsentStorage storage : getConsentStorageList()) { in clearAllAppConsentData() 85 storage.clearAllAppConsentData(); in clearAllAppConsentData() 88 "Skip current storage manager %s. Defer to next one", in clearAllAppConsentData() 89 storage.getClass().getSimpleName()); in clearAllAppConsentData() 107 for (IConsentStorage storage : getConsentStorageList()) { in clearConsentForUninstalledApp() 109 storage.clearConsentForUninstalledApp(packageName); in clearConsentForUninstalledApp() [all …]
|
/aosp_15_r20/out/soong/.intermediates/build/make/tools/aconfig/aconfig_storage_file/aconfig_storage_file_java/android_common/javac/ |
D | aconfig_storage_file_java.jar | ... android/
android/aconfig/
android/aconfig/storage/
android/aconfig/storage/AconfigStorageException.class |
/aosp_15_r20/out/soong/.intermediates/build/make/tools/aconfig/aconfig_storage_file/aconfig_storage_file_java/android_common_apex34/javac/ |
D | aconfig_storage_file_java.jar | ... android/
android/aconfig/
android/aconfig/storage/
android/aconfig/storage/AconfigStorageException.class |
/aosp_15_r20/external/angle/src/common/ |
H A D | FixedVector.h | 7 // A vector class with a maximum size and fixed storage. 21 template <class T, size_t N, class Storage = std::array<T, N>> 25 using value_type = typename Storage::value_type; 26 using size_type = typename Storage::size_type; 27 using reference = typename Storage::reference; 28 using const_reference = typename Storage::const_reference; 29 using pointer = typename Storage::pointer; 30 using const_pointer = typename Storage::const_pointer; 31 using iterator = typename Storage::iterator; 32 using const_iterator = typename Storage::const_iterator; [all …]
|
/aosp_15_r20/prebuilts/abi-dumps/vndk/33/64/arm_arm64/source-based/ |
D | android.hardware.health.storage-V1-ndk.so.lsdump | 582 "name" : "aidl::android::hardware::health::storage::Result::SUCCESS" 586 "name" : "aidl::android::hardware::health::storage::Result::IO_ERROR" 590 "name" : "aidl::android::hardware::health::storage::Result::UNKNOWN_ERROR" 594 "name" : "aidl::android::hardware::health::storage::Result", 598 …ware/interfaces/health/storage/aidl/android.hardware.health.storage-V1-ndk-source/gen/include/aidl… 632 …"function_name" : "ndk::BnCInterface<aidl::android::hardware::health::storage::IGarbageCollectCall… 645 …"function_name" : "ndk::BnCInterface<aidl::android::hardware::health::storage::IStorage>::asBinder… 658 …"function_name" : "ndk::BpCInterface<aidl::android::hardware::health::storage::IGarbageCollectCall… 671 …"function_name" : "ndk::BpCInterface<aidl::android::hardware::health::storage::IStorage>::asBinder… 684 "function_name" : "aidl::android::hardware::health::storage::IStorageDefault::garbageCollect", [all …]
|
/aosp_15_r20/prebuilts/abi-dumps/vndk/33/64/arm64/source-based/ |
D | android.hardware.health.storage-V1-ndk.so.lsdump | 592 "name" : "aidl::android::hardware::health::storage::Result::SUCCESS" 596 "name" : "aidl::android::hardware::health::storage::Result::IO_ERROR" 600 "name" : "aidl::android::hardware::health::storage::Result::UNKNOWN_ERROR" 604 "name" : "aidl::android::hardware::health::storage::Result", 608 …ware/interfaces/health/storage/aidl/android.hardware.health.storage-V1-ndk-source/gen/include/aidl… 642 …"function_name" : "ndk::BnCInterface<aidl::android::hardware::health::storage::IGarbageCollectCall… 655 …"function_name" : "ndk::BnCInterface<aidl::android::hardware::health::storage::IStorage>::asBinder… 668 …"function_name" : "ndk::BpCInterface<aidl::android::hardware::health::storage::IGarbageCollectCall… 681 …"function_name" : "ndk::BpCInterface<aidl::android::hardware::health::storage::IStorage>::asBinder… 694 "function_name" : "aidl::android::hardware::health::storage::IStorageDefault::garbageCollect", [all …]
|
/aosp_15_r20/prebuilts/abi-dumps/vndk/33/64/x86_x86_64/source-based/ |
D | android.hardware.health.storage-V1-ndk.so.lsdump | 581 "name" : "aidl::android::hardware::health::storage::Result::SUCCESS" 585 "name" : "aidl::android::hardware::health::storage::Result::IO_ERROR" 589 "name" : "aidl::android::hardware::health::storage::Result::UNKNOWN_ERROR" 593 "name" : "aidl::android::hardware::health::storage::Result", 597 …ware/interfaces/health/storage/aidl/android.hardware.health.storage-V1-ndk-source/gen/include/aidl… 631 …"function_name" : "ndk::BnCInterface<aidl::android::hardware::health::storage::IGarbageCollectCall… 644 …"function_name" : "ndk::BnCInterface<aidl::android::hardware::health::storage::IStorage>::asBinder… 657 …"function_name" : "ndk::BpCInterface<aidl::android::hardware::health::storage::IGarbageCollectCall… 670 …"function_name" : "ndk::BpCInterface<aidl::android::hardware::health::storage::IStorage>::asBinder… 683 "function_name" : "aidl::android::hardware::health::storage::IStorageDefault::garbageCollect", [all …]
|
/aosp_15_r20/prebuilts/abi-dumps/vndk/33/64/x86/source-based/ |
D | android.hardware.health.storage-V1-ndk.so.lsdump | 581 "name" : "aidl::android::hardware::health::storage::Result::SUCCESS" 585 "name" : "aidl::android::hardware::health::storage::Result::IO_ERROR" 589 "name" : "aidl::android::hardware::health::storage::Result::UNKNOWN_ERROR" 593 "name" : "aidl::android::hardware::health::storage::Result", 597 …ware/interfaces/health/storage/aidl/android.hardware.health.storage-V1-ndk-source/gen/include/aidl… 631 …"function_name" : "ndk::BnCInterface<aidl::android::hardware::health::storage::IGarbageCollectCall… 644 …"function_name" : "ndk::BnCInterface<aidl::android::hardware::health::storage::IStorage>::asBinder… 657 …"function_name" : "ndk::BpCInterface<aidl::android::hardware::health::storage::IGarbageCollectCall… 670 …"function_name" : "ndk::BpCInterface<aidl::android::hardware::health::storage::IStorage>::asBinder… 683 "function_name" : "aidl::android::hardware::health::storage::IStorageDefault::garbageCollect", [all …]
|
/aosp_15_r20/prebuilts/abi-dumps/vndk/33/64/arm/source-based/ |
D | android.hardware.health.storage-V1-ndk.so.lsdump | 582 "name" : "aidl::android::hardware::health::storage::Result::SUCCESS" 586 "name" : "aidl::android::hardware::health::storage::Result::IO_ERROR" 590 "name" : "aidl::android::hardware::health::storage::Result::UNKNOWN_ERROR" 594 "name" : "aidl::android::hardware::health::storage::Result", 598 …ware/interfaces/health/storage/aidl/android.hardware.health.storage-V1-ndk-source/gen/include/aidl… 632 …"function_name" : "ndk::BnCInterface<aidl::android::hardware::health::storage::IGarbageCollectCall… 645 …"function_name" : "ndk::BnCInterface<aidl::android::hardware::health::storage::IStorage>::asBinder… 658 …"function_name" : "ndk::BpCInterface<aidl::android::hardware::health::storage::IGarbageCollectCall… 671 …"function_name" : "ndk::BpCInterface<aidl::android::hardware::health::storage::IStorage>::asBinder… 684 "function_name" : "aidl::android::hardware::health::storage::IStorageDefault::garbageCollect", [all …]
|
/aosp_15_r20/prebuilts/abi-dumps/vndk/33/64/x86_64/source-based/ |
D | android.hardware.health.storage-V1-ndk.so.lsdump | 591 "name" : "aidl::android::hardware::health::storage::Result::SUCCESS" 595 "name" : "aidl::android::hardware::health::storage::Result::IO_ERROR" 599 "name" : "aidl::android::hardware::health::storage::Result::UNKNOWN_ERROR" 603 "name" : "aidl::android::hardware::health::storage::Result", 607 …ware/interfaces/health/storage/aidl/android.hardware.health.storage-V1-ndk-source/gen/include/aidl… 641 …"function_name" : "ndk::BnCInterface<aidl::android::hardware::health::storage::IGarbageCollectCall… 654 …"function_name" : "ndk::BnCInterface<aidl::android::hardware::health::storage::IStorage>::asBinder… 667 …"function_name" : "ndk::BpCInterface<aidl::android::hardware::health::storage::IGarbageCollectCall… 680 …"function_name" : "ndk::BpCInterface<aidl::android::hardware::health::storage::IStorage>::asBinder… 693 "function_name" : "aidl::android::hardware::health::storage::IStorageDefault::garbageCollect", [all …]
|
/aosp_15_r20/out/soong/.intermediates/packages/services/Telephony/utils/satellite/s2storage/satellite-s2storage-ro/android_common/turbine-combined/ |
D | satellite-s2storage-ro.jar | ... .storage.s2
public final com.android.storage.s2.S2CellOrdering extends java.lang.Object ... |
/aosp_15_r20/out/soong/.intermediates/packages/services/Telephony/utils/satellite/s2storage/satellite-s2storage-ro/android_common/repackaged-jarjar/turbine/ |
D | satellite-s2storage-ro.jar | ... public void <init> (com.android.storage.block.read.TypedData, com.android ... |