Lines Matching full:callback
94 * Visits set bits in address order. The callback is not permitted to
97 void dvmHeapBitmapWalk(const HeapBitmap *bitmap, BitmapCallback *callback,
102 assert(callback != NULL);
112 (*callback)(obj, arg);
120 * Similar to dvmHeapBitmapWalk but the callback routine is permitted
124 * The callback is invoked with a finger argument. The finger is a
126 * callback sets a bit for an address at or above the finger, this
127 * address will be visited by the traversal. If the callback sets a
132 BitmapScanCallback *callback, void *arg)
136 assert(callback != NULL);
148 (*callback)(obj, finger, arg);
159 * <callback> zero or more times with lists of these object pointers.
161 * The callback is not permitted to increase the max of either bitmap.
165 BitmapSweepCallback *callback, void *callbackArg)
173 assert(callback != NULL);
201 (*callback)(pb - pointerBuf, pointerBuf, callbackArg);
207 (*callback)(pb - pointerBuf, pointerBuf, callbackArg);