Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/core/java/com/android/server/location/gnss/
H A DGnssNetworkConnectivityHandler.java319 void onReportAGpsStatus(int agpsType, int agpsStatus, byte[] suplIpAddr) { in onReportAGpsStatus() argument
323 runOnHandler(() -> handleRequestSuplConnection(agpsType, suplIpAddr)); in onReportAGpsStatus()
547 private void handleRequestSuplConnection(int agpsType, byte[] suplIpAddr) {
550 if (suplIpAddr != null) {
551 if (VERBOSE) Log.v(TAG, "Received SUPL IP addr[]: " + Arrays.toString(suplIpAddr));
553 mAGpsDataConnectionIpAddr = InetAddress.getByAddress(suplIpAddr);
556 Log.e(TAG, "Bad IP Address: " + suplIpAddr, e);
H A DGnssLocationProvider.java1580 public void onReportAGpsStatus(int agpsType, int agpsStatus, byte[] suplIpAddr) { in onReportAGpsStatus() argument
1581 mNetworkConnectivityHandler.onReportAGpsStatus(agpsType, agpsStatus, suplIpAddr); in onReportAGpsStatus()
/aosp12/frameworks/base/services/core/java/com/android/server/location/gnss/hal/
H A 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()