OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:geofences
(Results
1 - 5
of
5
) sorted by null
/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
...]
/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);
/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 178 milliseconds