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

  /frameworks/base/services/core/jni/
com_android_server_location_FlpHardwareProvider.cpp 937 ALOGE("Invalid Geofences to add: %p", geofenceRequestsArray);
950 Geofence* geofences = new Geofence[geofenceRequestsCount]; local
951 if (geofences == NULL) {
956 geofences[i].data = new GeofenceData();
957 geofences[i].options = new GeofenceOptions();
960 TranslateGeofenceFromGeofenceHardwareRequestParcelable(env, geofenceObject, geofences[i]);
964 sFlpGeofencingInterface->add_geofences(geofenceRequestsCount, &geofences);
965 if (geofences != NULL) {
967 delete geofences[i].data;
968 delete geofences[i].options
    [all...]
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Application/src/main/java/com/example/android/xyztouristattractions/service/
UtilityService.java 149 * Add geofences using Play Services
180 // Check if geofences are enabled
183 // Extract the geofences from the intent
185 List<Geofence> geofences = event.getTriggeringGeofences(); local
187 if (geofenceEnabled && geofences != null && geofences.size() > 0) {
190 showNotification(geofences.get(0).getRequestId(), Constants.USE_MICRO_APP);
  /developers/samples/android/wearable/wear/XYZTouristAttractions/Application/src/main/java/com/example/android/xyztouristattractions/service/
UtilityService.java 149 * Add geofences using Play Services
180 // Check if geofences are enabled
183 // Extract the geofences from the intent
185 List<Geofence> geofences = event.getTriggeringGeofences(); local
187 if (geofenceEnabled && geofences != null && geofences.size() > 0) {
190 showNotification(geofences.get(0).getRequestId(), Constants.USE_MICRO_APP);
  /development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/service/
UtilityService.java 149 * Add geofences using Play Services
180 // Check if geofences are enabled
183 // Extract the geofences from the intent
185 List<Geofence> geofences = event.getTriggeringGeofences(); local
187 if (geofenceEnabled && geofences != null && geofences.size() > 0) {
190 showNotification(geofences.get(0).getRequestId(), Constants.USE_MICRO_APP);
  /hardware/libhardware/include/hardware/
fused_location.h 550 * In the diagram above, "a" and "b" are 2 geofences and "c" is the accuracy
574 * Startup Scenario: When the device boots up, if an application adds geofences,
577 * By default, all the Geofences will be in the Unknown state.
617 * monitor geofences because of lack of reliability or unavailability of the GPS signals,
750 * The sources to use for monitoring geofences. Its a BITWISE-OR
777 * Add a list of geofences.
779 * number_of_geofences - The number of geofences that needed to be added.
780 * geofences - Pointer to array of pointers to Geofence structure.
782 void (*add_geofences) (int32_t number_of_geofences, Geofence** geofences);
813 * Remove a list of geofences. After the function returns, no notification
    [all...]

Completed in 321 milliseconds