OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:geofences
(Results
1 - 4
of
4
) sorted by null
/developers/build/prebuilts/gradle/XYZTouristAttractions/Application/src/main/java/com/example/android/xyztouristattractions/service/
UtilityService.java
149
* Add
geofences
using Play Services
185
// Check if
geofences
are enabled
188
// Extract the
geofences
from the intent
190
List<Geofence>
geofences
= event.getTriggeringGeofences();
local
192
if (geofenceEnabled &&
geofences
!= null &&
geofences
.size() > 0) {
195
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
185
// Check if
geofences
are enabled
188
// Extract the
geofences
from the intent
190
List<Geofence>
geofences
= event.getTriggeringGeofences();
local
192
if (geofenceEnabled &&
geofences
!= null &&
geofences
.size() > 0) {
195
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
185
// Check if
geofences
are enabled
188
// Extract the
geofences
from the intent
190
List<Geofence>
geofences
= event.getTriggeringGeofences();
local
192
if (geofenceEnabled &&
geofences
!= null &&
geofences
.size() > 0) {
195
showNotification(
geofences
.get(0).getRequestId(), Constants.USE_MICRO_APP);
/frameworks/base/services/core/jni/
com_android_server_location_FlpHardwareProvider.cpp
941
ALOGE("Invalid
Geofences
to add: %p", geofenceRequestsArray);
954
Geofence*
geofences
= new Geofence[geofenceRequestsCount];
local
955
if (
geofences
== NULL) {
960
geofences
[i].data = new GeofenceData();
961
geofences
[i].options = new GeofenceOptions();
964
TranslateGeofenceFromGeofenceHardwareRequestParcelable(env, geofenceObject,
geofences
[i]);
968
sFlpGeofencingInterface->add_geofences(geofenceRequestsCount, &
geofences
);
969
if (
geofences
!= NULL) {
971
delete
geofences
[i].data;
972
delete
geofences
[i].options
[
all
...]
Completed in 3901 milliseconds