HomeSort by relevance Sort by last modified time
    Searched refs:geofenceId (Results 1 - 25 of 28) sorted by null

1 2

  /frameworks/base/location/java/android/location/
IGpsGeofenceHardware.aidl 27 boolean addCircularHardwareGeofence(int geofenceId, double latitude, double
30 boolean removeHardwareGeofence(int geofenceId);
31 boolean pauseHardwareGeofence(int geofenceId);
32 boolean resumeHardwareGeofence(int geofenceId, int monitorTransition);
IFusedGeofenceHardware.aidl 56 * @param geofenceId The geofence to pause monitoring.
58 void pauseMonitoringGeofence(in int geofenceId);
63 * @param geofenceid The geofence to resume monitoring.
69 void resumeMonitoringGeofence(in int geofenceId, in int monitorTransitions);
75 * @param geofenceId The geofence to modify.
87 in int geofenceId,
  /frameworks/base/core/java/android/hardware/location/
IGeofenceHardwareCallback.aidl 23 void onGeofenceTransition(int geofenceId, int transition, in Location location,
25 void onGeofenceAdd(int geofenceId, int status);
26 void onGeofenceRemove(int geofenceId, int status);
27 void onGeofencePause(int geofenceId, int status);
28 void onGeofenceResume(int geofenceId, int status);
GeofenceHardwareCallback.java 33 * @param geofenceId The geofence ID of the geofence
41 public void onGeofenceTransition(int geofenceId, int transition, Location location,
48 * @param geofenceId The ID of the geofence.
55 public void onGeofenceAdd(int geofenceId, int status) {
61 * @param geofenceId The ID of the geofence.
66 public void onGeofenceRemove(int geofenceId, int status) {
72 * @param geofenceId The ID of the geofence.
77 public void onGeofencePause(int geofenceId, int status) {
83 * @param geofenceId The ID of the geofence.
89 public void onGeofenceResume(int geofenceId, int status)
    [all...]
GeofenceHardware.java 258 * @param geofenceId The id associated with the geofence.
268 public boolean addGeofence(int geofenceId, int monitoringType, GeofenceHardwareRequest
274 new GeofenceHardwareRequestParcelable(geofenceId, geofenceRequest),
301 * @param geofenceId The id of the geofence.
306 public boolean removeGeofence(int geofenceId, int monitoringType) {
308 return mService.removeGeofence(geofenceId, monitoringType);
331 * @param geofenceId The id of the geofence.
336 public boolean pauseGeofence(int geofenceId, int monitoringType) {
338 return mService.pauseGeofence(geofenceId, monitoringType);
361 * @param geofenceId The id of the geofence
    [all...]
GeofenceHardwareImpl.java 258 int geofenceId = request.getId();
276 mGeofences.put(geofenceId, callback);
319 mGeofences.remove(geofenceId);
327 public boolean removeGeofence(int geofenceId, int monitoringType) {
330 if (DEBUG) Log.d(TAG, "Remove Geofence: GeofenceId: " + geofenceId);
334 if (mGeofences.get(geofenceId) == null) {
335 throw new IllegalArgumentException("Geofence " + geofenceId + " not registered.");
342 result = mGpsService.removeHardwareGeofence(geofenceId);
353 mFusedService.removeGeofences(new int[] { geofenceId });
    [all...]
  /hardware/interfaces/gnss/1.0/
IGnssGeofencing.hal 34 * @param geofenceId The id for the geofence. If a geofence with this id
56 addGeofence(int32_t geofenceId, double latitudeDegrees, double longitudeDegrees,
65 * @param geofenceId The id for the geofence.
67 pauseGeofence(int32_t geofenceId);
72 * @param geofenceId - The id for the geofence.
78 resumeGeofence(int32_t geofenceId,
85 * @param geofenceId The id of the geofence.
87 removeGeofence(int32_t geofenceId);
IGnssGeofenceCallback.hal 128 * @param geofenceId The id associated with the addGeofenceArea.
134 gnssGeofenceTransitionCb(int32_t geofenceId, GnssLocation location,
151 * @param geofenceId Id of the geofence.
160 gnssGeofenceAddCb(int32_t geofenceId, GeofenceStatus status);
165 * @param geofenceId Id of the geofence.
170 gnssGeofenceRemoveCb(int32_t geofenceId, GeofenceStatus status);
175 * @param geofenceId Id of the geofence.
181 gnssGeofencePauseCb(int32_t geofenceId, GeofenceStatus status);
186 * @param geofenceId - Id of the geofence.
190 gnssGeofenceResumeCb(int32_t geofenceId, GeofenceStatus status)
    [all...]
  /frameworks/base/services/core/java/com/android/server/location/
GnssGeofenceProvider.java 26 public int geofenceId;
59 boolean added = mNative.addGeofence(entry.geofenceId, entry.latitude,
65 mNative.pauseGeofence(entry.geofenceId);
88 public boolean addCircularHardwareGeofence(int geofenceId, double latitude,
92 boolean added = mNative.addGeofence(geofenceId, latitude, longitude, radius,
97 entry.geofenceId = geofenceId;
105 mGeofenceEntries.put(geofenceId, entry);
112 public boolean removeHardwareGeofence(int geofenceId) {
114 boolean removed = mNative.removeGeofence(geofenceId);
    [all...]
GnssLocationProvider.java     [all...]
  /hardware/interfaces/gnss/1.0/default/
GnssGeofencing.cpp 53 void GnssGeofencing::gnssGfTransitionCb(int32_t geofenceId,
69 geofenceId,
99 void GnssGeofencing::gnssGfAddCb(int32_t geofenceId, int32_t status) {
106 geofenceId, static_cast<IGnssGeofenceCallback::GeofenceStatus>(status));
112 void GnssGeofencing::gnssGfRemoveCb(int32_t geofenceId, int32_t status) {
119 geofenceId, static_cast<IGnssGeofenceCallback::GeofenceStatus>(status));
125 void GnssGeofencing::gnssGfPauseCb(int32_t geofenceId, int32_t status) {
132 geofenceId, static_cast<IGnssGeofenceCallback::GeofenceStatus>(status));
138 void GnssGeofencing::gnssGfResumeCb(int32_t geofenceId, int32_t status) {
145 geofenceId, static_cast<IGnssGeofenceCallback::GeofenceStatus>(status))
    [all...]
GnssGeofencing.h 53 Return<void> addGeofence(int32_t geofenceId,
62 Return<void> pauseGeofence(int32_t geofenceId) override;
63 Return<void> resumeGeofence(int32_t geofenceId, int32_t monitorTransitions) override;
64 Return<void> removeGeofence(int32_t geofenceId) override;
  /hardware/qcom/gps/msm8909w_3100/android/
GnssGeofencing.cpp 77 int32_t geofenceId,
89 geofenceId,
101 Return<void> GnssGeofencing::pauseGeofence(int32_t geofenceId) {
105 mApi->geofencePause(geofenceId);
110 Return<void> GnssGeofencing::resumeGeofence(int32_t geofenceId, int32_t monitorTransitions) {
114 mApi->geofenceResume(geofenceId, monitorTransitions);
119 Return<void> GnssGeofencing::removeGeofence(int32_t geofenceId) {
123 mApi->geofenceRemove(geofenceId);
GnssGeofencing.h 51 Return<void> addGeofence(int32_t geofenceId,
60 Return<void> pauseGeofence(int32_t geofenceId) override;
61 Return<void> resumeGeofence(int32_t geofenceId, int32_t monitorTransitions) override;
62 Return<void> removeGeofence(int32_t geofenceId) override;
  /hardware/qcom/gps/msm8998/android/
GnssGeofencing.cpp 77 int32_t geofenceId,
89 geofenceId,
101 Return<void> GnssGeofencing::pauseGeofence(int32_t geofenceId) {
105 mApi->geofencePause(geofenceId);
110 Return<void> GnssGeofencing::resumeGeofence(int32_t geofenceId, int32_t monitorTransitions) {
114 mApi->geofenceResume(geofenceId, monitorTransitions);
119 Return<void> GnssGeofencing::removeGeofence(int32_t geofenceId) {
123 mApi->geofenceRemove(geofenceId);
GnssGeofencing.h 51 Return<void> addGeofence(int32_t geofenceId,
60 Return<void> pauseGeofence(int32_t geofenceId) override;
61 Return<void> resumeGeofence(int32_t geofenceId, int32_t monitorTransitions) override;
62 Return<void> removeGeofence(int32_t geofenceId) override;
  /developers/build/prebuilts/gradle/Geofencing/Application/src/main/java/com/example/android/wearable/geofencing/
SimpleGeofence.java 35 * @param geofenceId The Geofence's request ID.
42 public SimpleGeofence(String geofenceId, double latitude, double longitude, float radius,
45 this.mId = geofenceId;
  /developers/samples/android/wearable/wear/Geofencing/Application/src/main/java/com/example/android/wearable/geofencing/
SimpleGeofence.java 35 * @param geofenceId The Geofence's request ID.
42 public SimpleGeofence(String geofenceId, double latitude, double longitude, float radius,
45 this.mId = geofenceId;
  /development/samples/browseable/Geofencing/Application/src/com.example.android.wearable.geofencing/
SimpleGeofence.java 35 * @param geofenceId The Geofence's request ID.
42 public SimpleGeofence(String geofenceId, double latitude, double longitude, float radius,
45 this.mId = geofenceId;
  /developers/build/prebuilts/gradle/Geofencing/Wearable/src/main/java/com/example/android/wearable/geofencing/
HomeListenerService.java 77 String geofenceId = DataMap.fromByteArray(event.getDataItem().getData())
79 postNotificationForGeofenceId(geofenceId, event.getDataItem().getUri());
98 * @param geofenceId The geofence id that the user has triggered.
102 private void postNotificationForGeofenceId(String geofenceId, Uri dataItemUri) {
103 // Use the geofenceId to determine the title and background of the check-in notification.
107 if (ANDROID_BUILDING_ID.equals(geofenceId)) {
111 } else if (YERBA_BUENA_ID.equals(geofenceId)) {
116 Log.e(TAG, "Unrecognized geofence id: " + geofenceId);
  /developers/samples/android/wearable/wear/Geofencing/Wearable/src/main/java/com/example/android/wearable/geofencing/
HomeListenerService.java 77 String geofenceId = DataMap.fromByteArray(event.getDataItem().getData())
79 postNotificationForGeofenceId(geofenceId, event.getDataItem().getUri());
98 * @param geofenceId The geofence id that the user has triggered.
102 private void postNotificationForGeofenceId(String geofenceId, Uri dataItemUri) {
103 // Use the geofenceId to determine the title and background of the check-in notification.
107 if (ANDROID_BUILDING_ID.equals(geofenceId)) {
111 } else if (YERBA_BUENA_ID.equals(geofenceId)) {
116 Log.e(TAG, "Unrecognized geofence id: " + geofenceId);
  /development/samples/browseable/Geofencing/Wearable/src/com.example.android.wearable.geofencing/
HomeListenerService.java 77 String geofenceId = DataMap.fromByteArray(event.getDataItem().getData())
79 postNotificationForGeofenceId(geofenceId, event.getDataItem().getUri());
98 * @param geofenceId The geofence id that the user has triggered.
102 private void postNotificationForGeofenceId(String geofenceId, Uri dataItemUri) {
103 // Use the geofenceId to determine the title and background of the check-in notification.
107 if (ANDROID_BUILDING_ID.equals(geofenceId)) {
111 } else if (YERBA_BUENA_ID.equals(geofenceId)) {
116 Log.e(TAG, "Unrecognized geofence id: " + geofenceId);
  /frameworks/base/services/core/jni/
com_android_server_location_GnssLocationProvider.cpp 588 int32_t geofenceId,
595 Return<void> gnssGeofenceAddCb(int32_t geofenceId,
597 Return<void> gnssGeofenceRemoveCb(int32_t geofenceId,
599 Return<void> gnssGeofencePauseCb(int32_t geofenceId,
601 Return<void> gnssGeofenceResumeCb(int32_t geofenceId,
606 int32_t geofenceId,
616 geofenceId,
642 Return<void> GnssGeofenceCallback::gnssGeofenceAddCb(int32_t geofenceId,
651 geofenceId,
657 Return<void> GnssGeofenceCallback::gnssGeofenceRemoveCb(int32_t geofenceId,
    [all...]
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/18/
android.jar 

Completed in 303 milliseconds

1 2