Home
last modified time | relevance | path

Searched refs:mGnssGeofencingCbIface (Results 1 – 6 of 6) sorted by relevance

/hardware/interfaces/gnss/1.0/default/
DGnssGeofencing.cpp29 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()
[all …]
DGnssGeofencing.h86 static sp<IGnssGeofenceCallback> mGnssGeofencingCbIface; member
/hardware/qcom/gps/msm8998/android/location_api/
DGeofenceAPIClient.cpp48 mGnssGeofencingCbIface(callback) in GeofenceAPIClient()
59 if (mGnssGeofencingCbIface != nullptr) { in GeofenceAPIClient()
142 if (mGnssGeofencingCbIface != nullptr) { in onGeofenceBreachCb()
158 mGnssGeofencingCbIface->gnssGeofenceTransitionCb( in onGeofenceBreachCb()
168 if (mGnssGeofencingCbIface != nullptr) { in onGeofenceStatusCb()
176 mGnssGeofencingCbIface->gnssGeofenceStatusCb(status, gnssLocation); in onGeofenceStatusCb()
183 if (mGnssGeofencingCbIface != nullptr) { in onAddGeofencesCb()
191 mGnssGeofencingCbIface->gnssGeofenceAddCb(ids[i], status); in onAddGeofencesCb()
199 if (mGnssGeofencingCbIface != nullptr) { in onRemoveGeofencesCb()
207 mGnssGeofencingCbIface->gnssGeofenceRemoveCb(ids[i], status); in onRemoveGeofencesCb()
[all …]
DGeofenceAPIClient.h68 sp<IGnssGeofenceCallback> mGnssGeofencingCbIface;
/hardware/qcom/gps/msm8998/android/
DGnssGeofencing.cpp65 if (mGnssGeofencingCbIface != nullptr) { in setCallback()
66 mGnssGeofencingCbIface->unlinkToDeath(mGnssGeofencingDeathRecipient); in setCallback()
68 mGnssGeofencingCbIface = callback; in setCallback()
69 if (mGnssGeofencingCbIface != nullptr) { in setCallback()
70 mGnssGeofencingCbIface->linkToDeath(mGnssGeofencingDeathRecipient, 0 /*cookie*/); in setCallback()
DGnssGeofencing.h81 sp<IGnssGeofenceCallback> mGnssGeofencingCbIface = nullptr; member