Home
last modified time | relevance | path

Searched refs:suplIpAddr (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/services/core/java/com/android/server/location/gnss/
DGnssNetworkConnectivityHandler.java349 void onReportAGpsStatus(int agpsType, int agpsStatus, byte[] suplIpAddr) { in onReportAGpsStatus() argument
353 runOnHandler(() -> handleRequestSuplConnection(agpsType, suplIpAddr)); in onReportAGpsStatus()
581 private void handleRequestSuplConnection(int agpsType, byte[] suplIpAddr) {
584 if (suplIpAddr != null) {
585 if (VERBOSE) Log.v(TAG, "Received SUPL IP addr[]: " + Arrays.toString(suplIpAddr));
587 mAGpsDataConnectionIpAddr = InetAddress.getByAddress(suplIpAddr);
590 Log.e(TAG, "Bad IP Address: " + Arrays.toString(suplIpAddr), e);
DGnssLocationProvider.java1784 public void onReportAGpsStatus(int agpsType, int agpsStatus, byte[] suplIpAddr) { in onReportAGpsStatus() argument
1785 mNetworkConnectivityHandler.onReportAGpsStatus(agpsType, agpsStatus, suplIpAddr); in onReportAGpsStatus()
/frameworks/base/services/core/java/com/android/server/location/gnss/hal/
DGnssNative.java290 void onReportAGpsStatus(int agpsType, int agpsStatus, byte[] suplIpAddr); in onReportAGpsStatus() argument
1132 void reportAGpsStatus(int agpsType, int agpsStatus, byte[] suplIpAddr) { in reportAGpsStatus() argument
1134 () -> mAGpsCallbacks.onReportAGpsStatus(agpsType, agpsStatus, suplIpAddr)); in reportAGpsStatus()