Searched refs:suplIpAddr (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/services/core/java/com/android/server/location/gnss/ |
D | GnssNetworkConnectivityHandler.java | 317 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);
|
D | GnssLocationProvider.java | 1509 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/ |
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()
|