Home
last modified time | relevance | path

Searched refs:garbage (Results 1 – 25 of 42) sorted by relevance

12

/aosp12/art/runtime/gc/accounting/
H A Dspace_bitmap.cc184 uintptr_t garbage = in SweepWalk() local
186 buffer_size += POPCOUNT(garbage); in SweepWalk()
194 uintptr_t garbage = in SweepWalk() local
196 if (UNLIKELY(garbage != 0)) { in SweepWalk()
199 const size_t shift = CTZ(garbage); in SweepWalk()
200 garbage ^= (static_cast<uintptr_t>(1)) << shift; in SweepWalk()
202 } while (garbage != 0); in SweepWalk()
/aosp12/frameworks/compile/slang/tests/P_reduce_general_result/
H A DScriptC_reduce_general_result.java.expect127 mOut = null; // make Java object eligible for garbage collection
163 mOut = null; // make Java object eligible for garbage collection
204 mOut = null; // make Java object eligible for garbage collection
245 mOut = null; // make Java object eligible for garbage collection
281 mOut = null; // make Java object eligible for garbage collection
322 mOut = null; // make Java object eligible for garbage collection
363 mOut = null; // make Java object eligible for garbage collection
399 mOut = null; // make Java object eligible for garbage collection
440 mOut = null; // make Java object eligible for garbage collection
481 mOut = null; // make Java object eligible for garbage collection
[all …]
/aosp12/hardware/interfaces/health/storage/1.0/
H A DIStorage.hal27 * Start garbage collection on the driver of storage devices.
32 * When garbage collection finishes or encounters an error before the
36 * If garbage collection does not finish within the specified timeout,
37 * the implementation must stop garbage collection, and must not call
H A DIGarbageCollectCallback.hal23 * When garbage collection has finished, the implementation must
24 * invoke this function to indicate the result of the garbage collection.
/aosp12/frameworks/av/services/mediametrics/
H A DTransactionLog.h94 std::vector<std::any> garbage; // objects destroyed after lock. in put() local
97 (void)gc(garbage); in put()
222 bool gc(std::vector<std::any>& garbage) REQUIRES(mLock) { in gc() argument
255 garbage.emplace_back(std::move(keyHist)); // directly move keyhist to garbage in gc()
267 garbage.emplace_back(std::move(stale)); in gc()
H A DTimeMachine.h282 std::vector<std::any> garbage; variable
289 (void)gc(garbage);
501 bool gc(std::vector<std::any>& garbage) REQUIRES(mLock) { in gc() argument
535 garbage.emplace_back(std::move(accessList)); in gc()
536 garbage.emplace_back(std::move(stale)); in gc()
/aosp12/art/test/175-alloc-big-bignums/
H A Dinfo.txt3 the garbage collector often enough to prevent us from running out of memory.
7 triggered by Java garbage collection.
/aosp12/frameworks/compile/slang/tests/P_reduce_general_examples_halter/
H A DScriptC_reduce_general_examples_halter.java.expect58 mOut = null; // make Java object eligible for garbage collection
64 mTempIns = null; // make Java objects eligible for garbage collection
94 mOut = null; // make Java object eligible for garbage collection
100 mTempIns = null; // make Java objects eligible for garbage collection
/aosp12/frameworks/compile/slang/tests/P_reduce_general_examples_explicit/
H A DScriptC_reduce_general_examples_explicit.java.expect67 mOut = null; // make Java object eligible for garbage collection
73 mTempIns = null; // make Java objects eligible for garbage collection
103 mOut = null; // make Java object eligible for garbage collection
109 mTempIns = null; // make Java objects eligible for garbage collection
139 mOut = null; // make Java object eligible for garbage collection
145 mTempIns = null; // make Java objects eligible for garbage collection
/aosp12/frameworks/compile/slang/tests/P_reduce_general_examples/
H A DScriptC_reduce_general_examples.java.expect69 mOut = null; // make Java object eligible for garbage collection
75 mTempIns = null; // make Java objects eligible for garbage collection
105 mOut = null; // make Java object eligible for garbage collection
111 mTempIns = null; // make Java objects eligible for garbage collection
141 mOut = null; // make Java object eligible for garbage collection
147 mTempIns = null; // make Java objects eligible for garbage collection
177 mOut = null; // make Java object eligible for garbage collection
183 mTempIns = null; // make Java objects eligible for garbage collection
/aosp12/frameworks/compile/slang/tests/P_reduce_general_examples_backward/
H A DScriptC_reduce_general_examples_backward.java.expect69 mOut = null; // make Java object eligible for garbage collection
75 mTempIns = null; // make Java objects eligible for garbage collection
105 mOut = null; // make Java object eligible for garbage collection
111 mTempIns = null; // make Java objects eligible for garbage collection
141 mOut = null; // make Java object eligible for garbage collection
147 mTempIns = null; // make Java objects eligible for garbage collection
177 mOut = null; // make Java object eligible for garbage collection
183 mTempIns = null; // make Java objects eligible for garbage collection
/aosp12/art/test/074-gc-thrash/
H A Dinfo.txt1 This thrashes the memory allocator and garbage collector for a brief period.
/aosp12/frameworks/compile/slang/tests/P_reduce_general_struct/
H A DScriptC_reduce_general_struct.java.expect58 mOut = null; // make Java object eligible for garbage collection
64 mTempIns = null; // make Java objects eligible for garbage collection
/aosp12/art/test/072-reachability-fence/
H A Dinfo.txt1 Check that reachabilityFence() prevents garbage collection of objects only referred to by a dead
/aosp12/art/test/109-suspend-check/
H A Dinfo.txt1 To support garbage collection, debugging and profiling the VM must be able to send all threads
/aosp12/art/test/1945-proxy-method-arguments/
H A Dinfo.txt6 object may have been moved by the garbage collector, but the stack
/aosp12/art/runtime/
H A Dmutator_gc_coord.md4 Most garbage collection work can proceed concurrently with the client or
6 thread stacks, the garbage collector needs to ensure that Java data processed
8 should not hold references to the heap that are invisible to the garbage
33 logically releases the mutator lock. When the garbage collector needs mutator
/aosp12/frameworks/compile/slang/tests/P_reduce_general_duplicate_array/
H A DScriptC_reduce_general_duplicate_array.java.expect56 mOut = null; // make Java object eligible for garbage collection
62 mTempIns = null; // make Java objects eligible for garbage collection
/aosp12/system/extras/tests/workloads/
H A Dpwrtest.sh171 ((garbage=hz*60*garbageminutes))
172 ((remaining=totalSamples-garbage))
/aosp12/frameworks/compile/mclinker/tools/mcld/
H A DOptions.td73 HelpText<"Enable garbage collection of unused input sections">;
77 HelpText<"Disable garbage collection of unused input sections">;
81 HelpText<"List all sections removed by garbage collection">;
85 HelpText<"Do not list sections removed by garbage collection">;
/aosp12/art/test/109-suspend-check/src/
H A DMain.java210 byte[] garbage = new byte[100000]; in run()
/aosp12/system/sepolicy/prebuilts/api/30.0/public/
H A Dpostinstall.te38 # Allow postinstall scripts to trigger f2fs garbage collection
/aosp12/system/sepolicy/prebuilts/api/29.0/public/
H A Dpostinstall.te38 # Allow postinstall scripts to trigger f2fs garbage collection
/aosp12/system/sepolicy/prebuilts/api/31.0/public/
H A Dpostinstall.te38 # Allow postinstall scripts to trigger f2fs garbage collection
/aosp12/system/sepolicy/prebuilts/api/32.0/public/
H A Dpostinstall.te38 # Allow postinstall scripts to trigger f2fs garbage collection

12