Home
last modified time | relevance | path

Searched refs:agpsType (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) {
548 mAGpsType = agpsType;
563 agpsTypeAsString(agpsType),
593 private int getNetworkCapability(int agpsType) {
594 switch (agpsType) {
603 throw new IllegalArgumentException("agpsType: " + agpsType);
694 private String agpsTypeAsString(int agpsType) {
695 switch (agpsType) {
[all …]
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()