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.java317 void onReportAGpsStatus(int agpsType, int agpsStatus, byte[] suplIpAddr) { in onReportAGpsStatus() argument
321 runOnHandler(() -> handleRequestSuplConnection(agpsType, suplIpAddr)); in onReportAGpsStatus()
546 private void handleRequestSuplConnection(int agpsType, byte[] suplIpAddr) {
549 if (suplIpAddr != null) {
550 if (VERBOSE) Log.v(TAG, "Received SUPL IP addr[]: " + Arrays.toString(suplIpAddr));
552 mAGpsDataConnectionIpAddr = InetAddress.getByAddress(suplIpAddr);
555 Log.e(TAG, "Bad IP Address: " + suplIpAddr, e);
DGnssLocationProvider.java1509 public void onReportAGpsStatus(int agpsType, int agpsStatus, byte[] suplIpAddr) { in onReportAGpsStatus() argument
1510 mNetworkConnectivityHandler.onReportAGpsStatus(agpsType, agpsStatus, suplIpAddr); in onReportAGpsStatus()
/frameworks/base/services/core/java/com/android/server/location/gnss/hal/
DGnssNative.java276 void onReportAGpsStatus(int agpsType, int agpsStatus, byte[] suplIpAddr); in onReportAGpsStatus() argument
999 void reportAGpsStatus(int agpsType, int agpsStatus, byte[] suplIpAddr) { in reportAGpsStatus() argument
1001 () -> mAGpsCallbacks.onReportAGpsStatus(agpsType, agpsStatus, suplIpAddr)); in reportAGpsStatus()