Searched refs:suplIpAddr (Results 1 – 3 of 3) sorted by relevance
/aosp12/frameworks/base/services/core/java/com/android/server/location/gnss/ |
H A D | GnssNetworkConnectivityHandler.java | 319 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 D | GnssLocationProvider.java | 1580 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 D | GnssNative.java | 276 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()
|