/system/chre/platform/include/chre/platform/ |
D | atomic.h | 56 return load(); 64 bool load() const; 114 return load(); in uint32_t() 122 uint32_t load() const;
|
/system/chre/platform/linux/include/chre/target_platform/ |
D | atomic_base_impl.h | 32 inline bool AtomicBool::load() const { in load() function 33 return mAtomic.load(); in load() 52 inline uint32_t AtomicUint32::load() const { in load() function 53 return mAtomic.load(); in load()
|
/system/bt/service/client/ |
D | main.cc | 134 if (showing_prompt.load()) cout << CLEAR_LINE << "\r"; in BeginAsyncOut() 139 if (showing_prompt.load()) in EndAsyncOut() 476 if (ble_advertiser_registering.load()) { in HandleRegisterBLEAdvertiser() 481 if (ble_advertiser_id.load() != invalid_advertiser_id) { in HandleRegisterBLEAdvertiser() 504 if (ble_advertiser_id.load() == invalid_advertiser_id) { in HandleUnregisterBLEAdvertiser() 516 ble_advertiser_iface->UnregisterAdvertiser(ble_advertiser_id.load()); in HandleUnregisterBLEAdvertiser() 524 if (ble_registering.load()) { in HandleRegisterBLE() 529 if (ble_client_id.load()) { in HandleRegisterBLE() 550 if (!ble_client_id.load()) { in HandleUnregisterBLE() 562 ble_iface->UnregisterClient(ble_client_id.load()); in HandleUnregisterBLE() [all …]
|
/system/libhwbinder/ |
D | Binder.cpp | 87 Extras* e = mExtras.load(std::memory_order_acquire); in isRequestingSid() 93 Extras* e = mExtras.load(std::memory_order_acquire); in setRequestingSid() 156 Extras* e = mExtras.load(std::memory_order_acquire); in findObject() 165 Extras* e = mExtras.load(std::memory_order_acquire); in detachObject() 179 Extras* e = mExtras.load(std::memory_order_relaxed); in ~BHwBinder() 193 Extras* e = mExtras.load(std::memory_order_acquire); in getOrCreateExtras() 230 if (!(mState.load(std::memory_order_relaxed)&kRemoteAcquired)) { in ~BpHwRefBase()
|
/system/core/libutils/ |
D | RefBase.cpp | 228 addRef(&mStrongRefs, id, mStrong.load(std::memory_order_relaxed)); in addStrongRef() 237 addRef(&mStrongRefs, id, -mStrong.load(std::memory_order_relaxed)); in removeStrongRef() 249 addRef(&mWeakRefs, id, mWeak.load(std::memory_order_relaxed)); in addWeakRef() 256 addRef(&mWeakRefs, id, -mWeak.load(std::memory_order_relaxed)); in removeWeakRef() 445 int32_t flags = refs->mFlags.load(std::memory_order_relaxed); in decStrong() 493 return mRefs->mStrong.load(std::memory_order_relaxed); in getStrongCount() 521 int32_t flags = impl->mFlags.load(std::memory_order_relaxed); in decWeak() 527 if (impl->mStrong.load(std::memory_order_relaxed) in decWeak() 555 int32_t curCount = impl->mStrong.load(std::memory_order_relaxed); in attemptIncStrong() 575 int32_t flags = impl->mFlags.load(std::memory_order_relaxed); in attemptIncStrong() [all …]
|
/system/chre/platform/slpi/include/chre/target_platform/ |
D | atomic_base_impl.h | 39 inline bool AtomicBool::load() const { in load() function 63 inline uint32_t AtomicUint32::load() const { in load() function
|
/system/core/libunwindstack/tests/ |
D | UnwindTest.cpp | 77 while (!g_finish.load()) { in SignalHandler() 142 while (!g_finish.load()) { in InnerFunction() 362 if (tid.load() != 0) { in TEST_F() 367 ASSERT_NE(0, tid.load()); in TEST_F() 368 ASSERT_EQ(0, tgkill(getpid(), tid.load(), SIGUSR1)) << "Error: " << strerror(errno); in TEST_F() 373 ucontext = reinterpret_cast<void*>(g_ucontext.load()); in TEST_F()
|
/system/extras/simpleperf/ |
D | RecordReadThread.cpp | 40 size_t write_head = write_head_.load(std::memory_order_relaxed); in GetFreeSize() 41 size_t read_head = read_head_.load(std::memory_order_relaxed); in GetFreeSize() 50 size_t write_head = write_head_.load(std::memory_order_relaxed); in AllocWriteSpace() 51 size_t read_head = read_head_.load(std::memory_order_acquire); in AllocWriteSpace() 75 size_t write_head = write_head_.load(std::memory_order_relaxed); in FinishWrite() 81 size_t write_head = write_head_.load(std::memory_order_acquire); in GetCurrentRecord() 82 size_t read_head = read_head_.load(std::memory_order_relaxed); in GetCurrentRecord() 103 size_t read_head = read_head_.load(std::memory_order_relaxed); in MoveToNextRecord() 619 if (!has_data_notification_.load(std::memory_order_relaxed)) { in SendDataNotificationToMainThread()
|
/system/sepolicy/prebuilts/api/29.0/public/ |
D | vendor_misc_writer.te | 10 # load DT fstab.
|
/system/sepolicy/prebuilts/api/30.0/public/ |
D | vendor_misc_writer.te | 10 # load DT fstab.
|
/system/bt/gd/hci/ |
D | address_pybind11_type_caster.h | 40 bool load(handle src, bool) {
|
D | class_of_device_pybind11_type_caster.h | 40 bool load(handle src, bool) {
|
/system/sepolicy/public/ |
D | vendor_misc_writer.te | 10 # load DT fstab.
|
/system/apex/apexer/ |
D | conv_apex_manifest.py | 42 obj = json.load(f, object_pairs_hook=collections.OrderedDict) 57 obj = json.load(f, object_pairs_hook=collections.OrderedDict)
|
/system/chre/platform/shared/idl/ |
D | host_messages.fbs | 92 /// meaning that load requests will be processed in the order they are sent 118 /// completion/failure of a load request. 120 /// If any request fragment is lost, then the entire load request will be 122 /// process crashes), then the load request will be cancelled at CHRE and fail. 147 /// Denotes whether a load request succeeded or failed. 148 /// If any fragment of a load request fails, the entire load request for 152 /// The fragment count of the load reponse is for.
|
/system/core/libutils/include/utils/ |
D | LightRefBase.h | 47 return mCount.load(std::memory_order_relaxed); in getStrongCount()
|
D | PropertyMap.h | 81 static status_t load(const String8& filename, PropertyMap** outMap);
|
/system/core/libunwindstack/ |
D | MapInfo.cpp | 267 int64_t cur_load_bias = load_bias.load(); in GetLoadBias() 296 uintptr_t id = build_id.load(); in ~MapInfo() 303 uintptr_t id = build_id.load(); in GetBuildID()
|
D | AndroidVersions.md | 29 * Fix bug (b/109824792) that handled load bias data incorrectly when 33 load. The real fix was to use the bias from the actual section data and 39 the p\_vaddr value from the program header minus the load bias was used 41 it doesn't require any load bias manipulations. 104 * Fix bug where the load bias was set from the first PT\_LOAD program 112 * Fix bug in load bias handling. If the unwind information in the eh\_frame
|
/system/sepolicy/prebuilts/api/28.0/public/ |
D | mediaextractor.te | 35 # scan extractor library directory to dynamically load extractors 42 # Allow extractor to load media extractor plugins from update apk.
|
/system/bt/service/ |
D | low_energy_scanner.cc | 88 if (scan_started_.load()) StopScan(); in ~LowEnergyScanner() 145 if (!scan_started_.load()) return; in ScanResultCallback()
|
/system/core/shell_and_utilities/ |
D | README.md | 64 load\_policy log ls lsmod lsof md5 mkdir mount mv nandread netstat notify 76 load\_policy log ls lsmod lsof md5 mkdir mkswap mount mv nandread netstat 87 getsebool hd id ifconfig iftop insmod ioctl ionice load\_policy log ls 104 head hostname hwclock id ifconfig inotifyd insmod kill load\_policy ln 125 insmod ionice iorenice kill killall load\_policy ln logname losetup ls 147 inotifyd insmod ionice iorenice kill killall ln load\_policy log logname 173 insmod ionice iorenice kill killall ln load\_policy log logname losetup ls 201 install ionice iorenice iotop kill killall ln load\_policy log logname 233 insmod install ionice iorenice iotop kill killall ln load\_policy log
|
/system/libartpalette/ |
D | palette_android.cc | 178 if (g_assume_legacy_ashmemd.load(std::memory_order_acquire) == false) { in PaletteAshmemCreateRegion() 221 if (!g_assume_legacy_ashmemd.load(std::memory_order_acquire)) { in PaletteAshmemSetProtRegion()
|
/system/update_engine/update_manager/ |
D | update_manager.conf.example | 5 # developer mode), we attempt to load
|
/system/libfmq/include/fmq/ |
D | MessageQueueBase.h | 987 auto writePtr = mWritePtr->load(std::memory_order_relaxed); in beginWrite() 1025 auto writePtr = mWritePtr->load(std::memory_order_relaxed); in commitWrite() 1043 return mWritePtr->load(std::memory_order_acquire) - mReadPtr->load(std::memory_order_acquire); in availableToReadBytes() 1071 auto writePtr = mWritePtr->load(std::memory_order_acquire); in beginRead() 1076 auto readPtr = mReadPtr->load(std::memory_order_relaxed); in beginRead() 1127 auto readPtr = mReadPtr->load(std::memory_order_relaxed); in commitRead() 1128 auto writePtr = mWritePtr->load(std::memory_order_acquire); in commitRead()
|