Lines Matching refs:mGnssGeofencingCbIface
29 sp<IGnssGeofenceCallback> GnssGeofencing::mGnssGeofencingCbIface = nullptr; member in android::hardware::gnss::V1_0::implementation::GnssGeofencing
57 if (mGnssGeofencingCbIface == nullptr) { in gnssGfTransitionCb()
68 auto ret = mGnssGeofencingCbIface->gnssGeofenceTransitionCb( in gnssGfTransitionCb()
79 if (mGnssGeofencingCbIface == nullptr) { in gnssGfStatusCb()
92 auto ret = mGnssGeofencingCbIface->gnssGeofenceStatusCb( in gnssGfStatusCb()
100 if (mGnssGeofencingCbIface == nullptr) { in gnssGfAddCb()
105 auto ret = mGnssGeofencingCbIface->gnssGeofenceAddCb( in gnssGfAddCb()
113 if (mGnssGeofencingCbIface == nullptr) { in gnssGfRemoveCb()
118 auto ret = mGnssGeofencingCbIface->gnssGeofenceRemoveCb( in gnssGfRemoveCb()
126 if (mGnssGeofencingCbIface == nullptr) { in gnssGfPauseCb()
131 auto ret = mGnssGeofencingCbIface->gnssGeofencePauseCb( in gnssGfPauseCb()
139 if (mGnssGeofencingCbIface == nullptr) { in gnssGfResumeCb()
144 auto ret = mGnssGeofencingCbIface->gnssGeofenceResumeCb( in gnssGfResumeCb()
157 mGnssGeofencingCbIface = callback; in setCallback()