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

  /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 257 * @param geofenceId The id associated with the geofence.
267 public boolean addGeofence(int geofenceId, int monitoringType, GeofenceHardwareRequest
273 new GeofenceHardwareRequestParcelable(geofenceId, geofenceRequest),
300 * @param geofenceId The id of the geofence.
305 public boolean removeGeofence(int geofenceId, int monitoringType) {
307 return mService.removeGeofence(geofenceId, monitoringType);
330 * @param geofenceId The id of the geofence.
335 public boolean pauseGeofence(int geofenceId, int monitoringType) {
337 return mService.pauseGeofence(geofenceId, monitoringType);
360 * @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...]
  /frameworks/base/services/core/java/com/android/server/location/
FlpHardwareProvider.java 214 int geofenceId,
222 geofenceId,
258 private void onGeofenceAdd(int geofenceId, int result) {
260 geofenceId,
264 private void onGeofenceRemove(int geofenceId, int result) {
266 geofenceId,
270 private void onGeofencePause(int geofenceId, int result) {
272 geofenceId,
276 private void onGeofenceResume(int geofenceId, int result) {
278 geofenceId,
    [all...]
GpsLocationProvider.java     [all...]
  /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_FlpHardwareProvider.cpp 617 int32_t geofenceId,
638 geofenceId,
678 static void GeofenceAddCallback(int32_t geofenceId, int32_t result) {
683 sCallbackEnv->CallVoidMethod(sCallbacksObj, sOnGeofenceAdd, geofenceId, result);
687 static void GeofenceRemoveCallback(int32_t geofenceId, int32_t result) {
695 geofenceId,
701 static void GeofencePauseCallback(int32_t geofenceId, int32_t result) {
709 geofenceId,
715 static void GeofenceResumeCallback(int32_t geofenceId, int32_t result) {
723 geofenceId,
    [all...]
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 

Completed in 662 milliseconds