Home | History | Annotate | Download | only in location

Lines Matching refs:reaper

52     private final ArrayList<Reaper> mReapers = new ArrayList<Reaper>();
577 // Remove the reaper associated with this binder.
579 for (Iterator<Reaper> iterator = mReapers.iterator();
581 Reaper reaper = iterator.next();
582 if (reaper.mCallback != null &&
583 reaper.mCallback.asBinder() == callbackBinder) {
585 reaper.unlinkToDeath();
586 if (DEBUG) Log.d(TAG, String.format("Removed reaper %s " +
588 reaper, callbackBinder));
722 Reaper r;
731 r = new Reaper(callback, monitoringType);
744 r = new Reaper(monitorCallback, monitoringType);
754 r = (Reaper) msg.obj;
800 class Reaper implements IBinder.DeathRecipient {
805 Reaper(IGeofenceHardwareCallback c, int monitoringType) {
810 Reaper(IGeofenceHardwareMonitorCallback c, int monitoringType) {
846 Reaper rhs = (Reaper) obj;