Lines Matching refs:arg

522 void MarkSweep::MarkRootParallelCallback(const Object* root, void* arg) {
524 DCHECK(arg != NULL);
525 reinterpret_cast<MarkSweep*>(arg)->MarkObjectNonNullParallel(root);
528 void MarkSweep::MarkObjectCallback(const Object* root, void* arg) {
530 DCHECK(arg != NULL);
531 MarkSweep* mark_sweep = reinterpret_cast<MarkSweep*>(arg);
535 void MarkSweep::ReMarkObjectVisitor(const Object* root, void* arg) {
537 DCHECK(arg != NULL);
538 MarkSweep* mark_sweep = reinterpret_cast<MarkSweep*>(arg);
542 void MarkSweep::VerifyRootCallback(const Object* root, void* arg, size_t vreg,
544 reinterpret_cast<MarkSweep*>(arg)->VerifyRoot(root, vreg, visitor);
593 void MarkSweep::VerifyImageRootVisitor(Object* root, void* arg) {
595 DCHECK(arg != NULL);
596 MarkSweep* mark_sweep = reinterpret_cast<MarkSweep*>(arg);
993 bool MarkSweep::IsMarkedCallback(const Object* object, void* arg) {
994 return reinterpret_cast<MarkSweep*>(arg)->IsMarked(object);
1008 void MarkSweep::SweepJniWeakGlobals(IsMarkedTester is_marked, void* arg) {
1009 Runtime::Current()->GetJavaVM()->SweepWeakGlobals(is_marked, arg);
1018 bool MarkSweep::IsMarkedArrayCallback(const Object* object, void* arg) {
1019 ArrayMarkedCheck* array_check = reinterpret_cast<ArrayMarkedCheck*>(arg);
1039 bool MarkSweep::VerifyIsLiveCallback(const Object* obj, void* arg) {
1040 reinterpret_cast<MarkSweep*>(arg)->VerifyIsLive(obj);
1113 void MarkSweep::SweepCallback(size_t num_ptrs, Object** ptrs, void* arg) {
1114 SweepCallbackContext* context = static_cast<SweepCallbackContext*>(arg);
1131 void MarkSweep::ZygoteSweepCallback(size_t num_ptrs, Object** ptrs, void* arg) {
1132 SweepCallbackContext* context = static_cast<SweepCallbackContext*>(arg);