Home
last modified time | relevance | path

Searched refs:smallestIntervalOptions (Results 1 – 4 of 4) sorted by relevance

/hardware/qcom/gps/msm8998/gnss/
DGnssAdapter.cpp1042 LocationOptions smallestIntervalOptions = {}; // size is zero until set for the first time in restartSessions() local
1044 if (0 == smallestIntervalOptions.size || //size of zero means we havent set it yet in restartSessions()
1045 it->second.minInterval < smallestIntervalOptions.minInterval) { in restartSessions()
1046 smallestIntervalOptions = it->second; in restartSessions()
1051 convertOptions(locPosMode, smallestIntervalOptions); in restartSessions()
1284 LocationOptions smallestIntervalOptions = {}; // size is zero until set for the first time in startTrackingMultiplex() local
1286 if (0 == smallestIntervalOptions.size || //size of zero means we havent set it yet in startTrackingMultiplex()
1287 it->second.minInterval < smallestIntervalOptions.minInterval) { in startTrackingMultiplex()
1288 smallestIntervalOptions = it->second; in startTrackingMultiplex()
1292 if (options.minInterval < smallestIntervalOptions.minInterval) { in startTrackingMultiplex()
[all …]
/hardware/qcom/sdm845/gps/msm8998/gnss/
DGnssAdapter.cpp1035 LocationOptions smallestIntervalOptions = {}; // size is zero until set for the first time in restartSessions() local
1037 if (0 == smallestIntervalOptions.size || //size of zero means we havent set it yet in restartSessions()
1038 it->second.minInterval < smallestIntervalOptions.minInterval) { in restartSessions()
1039 smallestIntervalOptions = it->second; in restartSessions()
1044 convertOptions(locPosMode, smallestIntervalOptions); in restartSessions()
1277 LocationOptions smallestIntervalOptions = {}; // size is zero until set for the first time in startTrackingMultiplex() local
1279 if (0 == smallestIntervalOptions.size || //size of zero means we havent set it yet in startTrackingMultiplex()
1280 it->second.minInterval < smallestIntervalOptions.minInterval) { in startTrackingMultiplex()
1281 smallestIntervalOptions = it->second; in startTrackingMultiplex()
1285 if (options.minInterval < smallestIntervalOptions.minInterval) { in startTrackingMultiplex()
[all …]
/hardware/qcom/gps/msm8909w_3100/gnss/
DGnssAdapter.cpp1102 LocationOptions smallestIntervalOptions = {}; // size is zero until set for the first time in restartSessions() local
1104 if (0 == smallestIntervalOptions.size || //size of zero means we havent set it yet in restartSessions()
1105 it->second.minInterval < smallestIntervalOptions.minInterval) { in restartSessions()
1106 smallestIntervalOptions = it->second; in restartSessions()
1111 convertOptions(locPosMode, smallestIntervalOptions); in restartSessions()
1365 LocationOptions smallestIntervalOptions = {}; // size is zero until set for the first time in startTrackingMultiplex() local
1367 if (0 == smallestIntervalOptions.size || //size of zero means we havent set it yet in startTrackingMultiplex()
1368 it->second.minInterval < smallestIntervalOptions.minInterval) { in startTrackingMultiplex()
1369 smallestIntervalOptions = it->second; in startTrackingMultiplex()
1373 if (options.minInterval < smallestIntervalOptions.minInterval) { in startTrackingMultiplex()
[all …]
/hardware/qcom/sm8150p/gps/gnss/
DGnssAdapter.cpp2153 TrackingOptions smallestIntervalOptions; // size is zero until set for the first time in restartSessions() local
2155 memset(&smallestIntervalOptions, 0, sizeof(smallestIntervalOptions)); in restartSessions()
2159 if (0 == smallestIntervalOptions.size || in restartSessions()
2160 it->second.minInterval < smallestIntervalOptions.minInterval) { in restartSessions()
2161 smallestIntervalOptions = it->second; in restartSessions()
2172 highestPowerTrackingOptions.setLocationOptions(smallestIntervalOptions); in restartSessions()