Home
last modified time | relevance | path

Searched refs:minIntervalMs (Results 1 – 18 of 18) sorted by relevance

/system/chre/platform/linux/
Dpal_gnss.cc70 void startSendingLocationEvents(uint32_t minIntervalMs) { in startSendingLocationEvents() argument
82 sendLocationEvents, std::chrono::milliseconds(minIntervalMs)); in startSendingLocationEvents()
140 bool chrePalControlLocationSession(bool enable, uint32_t minIntervalMs, in chrePalControlLocationSession() argument
144 gLocationEventsMinIntervalMs = minIntervalMs; in chrePalControlLocationSession()
146 startSendingLocationEvents(minIntervalMs); in chrePalControlLocationSession()
165 bool chrePalControlMeasurementSession(bool enable, uint32_t minIntervalMs) { in chrePalControlMeasurementSession() argument
181 sendMeasurementEvents, std::chrono::milliseconds(minIntervalMs)); in chrePalControlMeasurementSession()
/system/chre/platform/shared/
Dchre_api_gnss.cc40 [[maybe_unused]] uint32_t minIntervalMs, in chreGnssLocationSessionStartAsync() argument
49 .addRequest(nanoapp, Milliseconds(minIntervalMs), in chreGnssLocationSessionStartAsync()
71 [[maybe_unused]] uint32_t minIntervalMs, [[maybe_unused]] const void *cookie) { in chreGnssMeasurementSessionStartAsync() argument
78 .addRequest(nanoapp, Milliseconds(minIntervalMs), in chreGnssMeasurementSessionStartAsync()
/system/chre/chpp/platform/linux/services/
Dplatform_gnss.c45 static bool gnssPalControlLocationSession(bool enable, uint32_t minIntervalMs, in gnssPalControlLocationSession() argument
49 UNUSED_VAR(minIntervalMs); in gnssPalControlLocationSession()
97 uint32_t minIntervalMs) { in gnssPalControlMeasurementSession() argument
100 UNUSED_VAR(minIntervalMs); in gnssPalControlMeasurementSession()
/system/chre/pal/include/chre/pal/
Dgnss.h214 bool (*controlLocationSession)(bool enable, uint32_t minIntervalMs,
239 bool (*controlMeasurementSession)(bool enable, uint32_t minIntervalMs);
/system/chre/chpp/include/chpp/common/
Dgnss.h42 uint32_t minIntervalMs; member
60 uint32_t minIntervalMs; member
/system/chre/chpp/clients/
Dgnss.c129 uint32_t minIntervalMs,
134 uint32_t minIntervalMs);
692 uint32_t minIntervalMs, in chppGnssClientControlLocationSession() argument
705 request->params.minIntervalMs = minIntervalMs; in chppGnssClientControlLocationSession()
739 uint32_t minIntervalMs) { in chppGnssClientControlMeasurementSession() argument
752 request->params.minIntervalMs = minIntervalMs; in chppGnssClientControlMeasurementSession()
/system/chre/apps/test/common/chre_stress_test/src/
Dchre_stress_test_manager.cc813 uint32_t minIntervalMs = 0; in makeGnssLocationRequest() local
815 minIntervalMs = kMinIntervalMsList[sIntervalIndex]; in makeGnssLocationRequest()
822 if (minIntervalMs > 0) { in makeGnssLocationRequest()
824 minIntervalMs, 0 /* minTimeToNextFixMs */, &kGnssLocationCookie); in makeGnssLocationRequest()
830 minIntervalMs, success); in makeGnssLocationRequest()
846 uint32_t minIntervalMs = 0; in makeGnssMeasurementRequest() local
848 minIntervalMs = kMinIntervalMsList[sIntervalIndex]; in makeGnssMeasurementRequest()
855 if (minIntervalMs > 0) { in makeGnssMeasurementRequest()
856 success = chreGnssMeasurementSessionStartAsync(minIntervalMs, in makeGnssMeasurementRequest()
865 minIntervalMs, success); in makeGnssMeasurementRequest()
/system/chre/chre_api/legacy/v1_2/chre/
Dgnss.h397 bool chreGnssLocationSessionStartAsync(uint32_t minIntervalMs,
452 bool chreGnssMeasurementSessionStartAsync(uint32_t minIntervalMs,
/system/chre/chre_api/legacy/v1_1/chre/
Dgnss.h390 bool chreGnssLocationSessionStartAsync(uint32_t minIntervalMs,
445 bool chreGnssMeasurementSessionStartAsync(uint32_t minIntervalMs,
/system/chre/chre_api/legacy/v1_4/chre/
Dgnss.h441 bool chreGnssLocationSessionStartAsync(uint32_t minIntervalMs,
498 bool chreGnssMeasurementSessionStartAsync(uint32_t minIntervalMs,
/system/chre/chre_api/legacy/v1_3/chre/
Dgnss.h427 bool chreGnssLocationSessionStartAsync(uint32_t minIntervalMs,
482 bool chreGnssMeasurementSessionStartAsync(uint32_t minIntervalMs,
/system/chre/chre_api/legacy/v1_5/chre/
Dgnss.h458 bool chreGnssLocationSessionStartAsync(uint32_t minIntervalMs,
517 bool chreGnssMeasurementSessionStartAsync(uint32_t minIntervalMs,
/system/chre/chre_api/legacy/v1_9/chre/
Dgnss.h461 bool chreGnssLocationSessionStartAsync(uint32_t minIntervalMs,
520 bool chreGnssMeasurementSessionStartAsync(uint32_t minIntervalMs,
/system/chre/chre_api/legacy/v1_7/chre/
Dgnss.h458 bool chreGnssLocationSessionStartAsync(uint32_t minIntervalMs,
517 bool chreGnssMeasurementSessionStartAsync(uint32_t minIntervalMs,
/system/chre/chre_api/legacy/v1_8/chre/
Dgnss.h458 bool chreGnssLocationSessionStartAsync(uint32_t minIntervalMs,
517 bool chreGnssMeasurementSessionStartAsync(uint32_t minIntervalMs,
/system/chre/chre_api/legacy/v1_6/chre/
Dgnss.h458 bool chreGnssLocationSessionStartAsync(uint32_t minIntervalMs,
517 bool chreGnssMeasurementSessionStartAsync(uint32_t minIntervalMs,
/system/chre/chre_api/include/chre_api/chre/
Dgnss.h461 bool chreGnssLocationSessionStartAsync(uint32_t minIntervalMs,
520 bool chreGnssMeasurementSessionStartAsync(uint32_t minIntervalMs,
/system/chre/chpp/services/
Dgnss.c394 parameters->enable, parameters->minIntervalMs, in chppGnssServiceControlLocationSession()
433 parameters->enable, parameters->minIntervalMs)) { in chppGnssServiceControlMeasurementSession()