Home | History | Annotate | Download | only in location

Lines Matching refs:Reaper

53     private final ArrayList<Reaper> mReapers = new ArrayList<Reaper>();
616 // Remove the reaper associated with this binder.
618 for (Iterator<Reaper> iterator = mReapers.iterator();
620 Reaper reaper = iterator.next();
621 if (reaper.mCallback != null &&
622 reaper.mCallback.asBinder() == callbackBinder) {
624 reaper.unlinkToDeath();
625 if (DEBUG) Log.d(TAG, String.format("Removed reaper %s " +
627 reaper, callbackBinder));
761 Reaper r;
770 r = new Reaper(callback, monitoringType);
783 r = new Reaper(monitorCallback, monitoringType);
793 r = (Reaper) msg.obj;
839 class Reaper implements IBinder.DeathRecipient {
844 Reaper(IGeofenceHardwareCallback c, int monitoringType) {
849 Reaper(IGeofenceHardwareMonitorCallback c, int monitoringType) {
885 Reaper rhs = (Reaper) obj;