Home
last modified time | relevance | path

Searched refs:agpsType (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/location/
DGnssNetworkConnectivityHandler.java208 void onReportAGpsStatus(int agpsType, int agpsStatus, byte[] suplIpAddr) { in onReportAGpsStatus() argument
212 runOnHandler(() -> handleRequestSuplConnection(agpsType, suplIpAddr)); in onReportAGpsStatus()
437 private void handleRequestSuplConnection(int agpsType, byte[] suplIpAddr) {
439 mAGpsType = agpsType;
454 agpsTypeAsString(agpsType),
478 private int getNetworkCapability(int agpsType) {
479 switch (agpsType) {
488 throw new IllegalArgumentException("agpsType: " + agpsType);
579 private String agpsTypeAsString(int agpsType) {
580 switch (agpsType) {
[all …]
DGnssLocationProvider.java1553 private void reportAGpsStatus(int agpsType, int agpsStatus, byte[] suplIpAddr) { in reportAGpsStatus() argument
1554 mNetworkConnectivityHandler.onReportAGpsStatus(agpsType, agpsStatus, suplIpAddr); in reportAGpsStatus()