/aosp12/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/ |
H A D | ProgramInfoCache.java | 108 if (chunk.purge) { in updateFromHalProgramListChunk() 122 boolean purge) { in filterAndUpdateFrom() argument 123 return filterAndUpdateFromInternal(other, purge, MAX_NUM_MODIFIED_PER_CHUNK, in filterAndUpdateFrom() 129 boolean purge, int maxNumModifiedPerChunk, int maxNumRemovedPerChunk) { in filterAndUpdateFromInternal() argument 130 if (purge) { in filterAndUpdateFromInternal() 136 purge = true; in filterAndUpdateFromInternal() 160 return buildChunks(purge, mComplete, modified, maxNumModifiedPerChunk, removed, in filterAndUpdateFromInternal() 233 private static @NonNull List<ProgramList.Chunk> buildChunks(boolean purge, boolean complete, in buildChunks() argument 237 if (purge) { in buildChunks() 281 chunks.add(new ProgramList.Chunk(purge && i == 0, complete && (i == numChunks - 1), in buildChunks()
|
/aosp12/frameworks/base/core/jni/ |
H A D | com_android_internal_os_Zygote.h | 37 bool purge = true); 53 bool purge);
|
/aosp12/packages/apps/Messaging/src/com/android/messaging/mmslib/util/ |
H A D | PduCache.java | 133 public synchronized PduCacheEntry purge(Uri uri) { in purge() method in PduCache 165 PduCacheEntry entry = super.purge(key); in purgeSingleEntry() 223 PduCacheEntry entry = super.purge(key); in purgeByMessageBox() 248 PduCacheEntry entry = super.purge(key); in purgeByThreadId()
|
H A D | AbstractCache.java | 80 public V purge(K key) { in purge() method in AbstractCache
|
/aosp12/frameworks/base/telephony/common/com/google/android/mms/util/ |
H A D | PduCache.java | 138 synchronized public PduCacheEntry purge(Uri uri) { in purge() method in PduCache 170 PduCacheEntry entry = super.purge(key); in purgeSingleEntry() 228 PduCacheEntry entry = super.purge(key); in purgeByMessageBox() 253 PduCacheEntry entry = super.purge(key); in purgeByThreadId()
|
H A D | AbstractCache.java | 88 public V purge(K key) { in purge() method in AbstractCache
|
/aosp12/frameworks/base/core/tests/BroadcastRadioTests/src/com/android/server/broadcastradio/hal2/ |
H A D | StartProgramListUpdatesFanoutTest.java | 290 private void updateHalProgramInfo(boolean purge, List<RadioManager.ProgramInfo> modified, in updateHalProgramInfo() argument 293 programListChunk.purge = purge; in updateHalProgramInfo() 309 boolean purge, List<RadioManager.ProgramInfo> modified, in verifyAidlClientReceivedChunk() argument 319 ProgramList.Chunk expectedChunk = new ProgramList.Chunk(purge, true, modifiedSet, in verifyAidlClientReceivedChunk()
|
H A D | ProgramInfoCacheTest.java | 72 chunk.purge = true; in testUpdateFromHal() 81 chunk.purge = false; in testUpdateFromHal()
|
/aosp12/frameworks/base/services/core/java/com/android/server/os/ |
H A D | NativeTombstoneManager.java | 176 public void purge(Optional<Integer> userId, Optional<Integer> appId) { in purge() method in NativeTombstoneManager 182 tombstone.purge(); in purge() 198 purge(userId, Optional.of(appId)); in purgePackage() 202 purge(Optional.of(uid), Optional.empty()); in purgeUser() 370 public void purge() { in purge() method in NativeTombstoneManager.TombstoneFile
|
/aosp12/frameworks/native/libs/binder/ |
H A D | PermissionCache.cpp | 72 void PermissionCache::purge() { in purge() function in android::PermissionCache 114 pc.purge(); in purgeCache()
|
/aosp12/frameworks/rs/tests/java_api/RsTest_11/src/com/android/rs/test/ |
H A D | RSTestCore.java | 141 mTimer.purge(); in checkAndRunNextTest() 166 mTimer.purge(); in cleanup()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
H A D | NotificationInlineImageResolver.java | 167 mImageCache.purge(); in purgeCache() 244 void purge(); in purge() method
|
H A D | NotificationInlineImageCache.java | 71 public void purge() { in purge() method in NotificationInlineImageCache
|
/aosp12/frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/ |
H A D | RSTestCore.java | 145 mTimer.purge(); in checkAndRunNextTest() 170 mTimer.purge(); in cleanup()
|
/aosp12/frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/ |
H A D | RSTestCore.java | 145 mTimer.purge(); in checkAndRunNextTest() 170 mTimer.purge(); in cleanup()
|
/aosp12/frameworks/native/cmds/installd/ |
H A D | CacheItem.h | 45 int purge();
|
H A D | CacheItem.cpp | 69 int CacheItem::purge() { in purge() function in android::installd::CacheItem
|
/aosp12/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
H A D | RSTestCore.java | 168 mTimer.purge(); in checkAndRunNextTest() 186 mTimer.purge(); in cleanup()
|
/aosp12/bionic/linker/ |
H A D | linker_block_allocator.h | 54 void purge();
|
/aosp12/frameworks/native/include/binder/ |
H A D | PermissionCache.h | 59 void purge();
|
/aosp12/frameworks/native/libs/binder/include/binder/ |
H A D | PermissionCache.h | 59 void purge();
|
/aosp12/bionic/libc/kernel/uapi/linux/ |
H A D | dlm_device.h | 61 struct dlm_purge_params purge; member
|
/aosp12/bionic/docs/ |
H A D | native_allocator.md | 56 allocator will attempt to purge and release any unused memory back to the 61 purge and release action. The amount of delay is up to the allocator 66 thread to handle the purge, so the decay is only handled when an 70 force a purge in this case. 77 When called, `mallopt(M_PURGE, 0)`, an allocator should purge and release 80 idea is that this can be called to purge memory that has not been 83 application wants to purge that memory before waiting for the next connection.
|
/aosp12/packages/services/Car/tests/obd2_app/src/com/google/android/car/obd2app/ |
H A D | MainActivity.java | 76 mTimer.purge(); in stopConnection()
|
/aosp12/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/ |
H A D | TestTimer.java | 74 public int purge() { in purge() method in TestTimer
|