Home
last modified time | relevance | path

Searched refs:PhysicalChannelConfig (Results 1 – 25 of 33) sorted by relevance

12

/frameworks/base/telephony/java/android/telephony/
DPhysicalChannelConfig.java31 public final class PhysicalChannelConfig implements Parcelable { class
304 public PhysicalChannelConfig createLocationInfoSanitizedCopy() { in createLocationInfoSanitizedCopy()
423 if (!(o instanceof PhysicalChannelConfig)) { in equals()
427 PhysicalChannelConfig config = (PhysicalChannelConfig) o; in equals()
452 @android.annotation.NonNull Parcelable.Creator<PhysicalChannelConfig> CREATOR =
453 new Parcelable.Creator<PhysicalChannelConfig>() {
454 public PhysicalChannelConfig createFromParcel(Parcel in) {
455 return new PhysicalChannelConfig(in);
458 public PhysicalChannelConfig[] newArray(int size) {
459 return new PhysicalChannelConfig[size];
[all …]
DPhysicalChannelConfig.aidl20 parcelable PhysicalChannelConfig;
DAccessNetworkUtils.java671 if (nrArfcn == PhysicalChannelConfig.CHANNEL_NUMBER_UNKNOWN) { in getFrequencyFromNrArfcn()
672 return PhysicalChannelConfig.FREQUENCY_UNKNOWN; in getFrequencyFromNrArfcn()
740 if (uarfcn == PhysicalChannelConfig.CHANNEL_NUMBER_UNKNOWN) { in getFrequencyFromUarfcn()
741 return PhysicalChannelConfig.FREQUENCY_UNKNOWN; in getFrequencyFromUarfcn()
814 if (arfcn == PhysicalChannelConfig.CHANNEL_NUMBER_UNKNOWN) { in getFrequencyFromArfcn()
815 return PhysicalChannelConfig.FREQUENCY_UNKNOWN; in getFrequencyFromArfcn()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DPhysicalChannelConfigTest.java24 import android.telephony.PhysicalChannelConfig;
25 import android.telephony.PhysicalChannelConfig.Builder;
39 private static final int CONNECTION_STATUS = PhysicalChannelConfig.CONNECTION_PRIMARY_SERVING;
43 private static final int CHANNEL_NUMBER_UNKNOWN = PhysicalChannelConfig.CHANNEL_NUMBER_UNKNOWN;
49 private PhysicalChannelConfig mPhysicalChannelConfig;
192 PhysicalChannelConfig fromParcel = PhysicalChannelConfig.CREATOR.createFromParcel(parcel); in testParcel()
DNetworkTypeControllerTest.java40 import android.telephony.PhysicalChannelConfig;
416 PhysicalChannelConfig physicalChannelConfig = new PhysicalChannelConfig.Builder() in testTransitionToCurrentStateNrConnectedMmwaveWithAdditionalBandAndNoMmwave()
422 List<PhysicalChannelConfig> lastPhysicalChannelConfigList = new ArrayList<>(); in testTransitionToCurrentStateNrConnectedMmwaveWithAdditionalBandAndNoMmwave()
440 PhysicalChannelConfig ltePhysicalChannelConfig = new PhysicalChannelConfig.Builder() in testTransitionToCurrentStateNrConnectedMmwaveWithAdditionalBandAndNoMmwaveNrNsa()
445 PhysicalChannelConfig nrPhysicalChannelConfig = new PhysicalChannelConfig.Builder() in testTransitionToCurrentStateNrConnectedMmwaveWithAdditionalBandAndNoMmwaveNrNsa()
451 List<PhysicalChannelConfig> lastPhysicalChannelConfigList = new ArrayList<>(); in testTransitionToCurrentStateNrConnectedMmwaveWithAdditionalBandAndNoMmwaveNrNsa()
470 PhysicalChannelConfig physicalChannelConfig = new PhysicalChannelConfig.Builder() in testTransitionToCurrentStateNrConnectedWithNoAdditionalBandAndNoMmwave()
474 List<PhysicalChannelConfig> lastPhysicalChannelConfigList = new ArrayList<>(); in testTransitionToCurrentStateNrConnectedWithNoAdditionalBandAndNoMmwave()
606 PhysicalChannelConfig pcc1 = new PhysicalChannelConfig.Builder() in testEventPhysicalChannelConfigChangedWithRatcheting()
613 PhysicalChannelConfig pcc2 = new PhysicalChannelConfig.Builder() in testEventPhysicalChannelConfigChangedWithRatcheting()
[all …]
DTelephonyRegistryTest.java18 import static android.telephony.PhysicalChannelConfig.PHYSICAL_CELL_ID_UNKNOWN;
60 import android.telephony.PhysicalChannelConfig;
113 private List<PhysicalChannelConfig> mPhysicalChannelConfigs;
256 public void onPhysicalChannelConfigChanged(@NonNull List<PhysicalChannelConfig> configs) { in onPhysicalChannelConfigChanged()
927 PhysicalChannelConfig config = new PhysicalChannelConfig.Builder() in testPhysicalChannelConfigChanged()
932 List<PhysicalChannelConfig> configs = new ArrayList<>(1); in testPhysicalChannelConfigChanged()
DServiceStateTrackerTest.java83 import android.telephony.PhysicalChannelConfig;
2305 ArrayList<PhysicalChannelConfig> pc = new ArrayList<>(); in sendPhyChanConfigChange()
2306 int ssType = PhysicalChannelConfig.CONNECTION_PRIMARY_SERVING; in sendPhyChanConfigChange()
2308 pc.add(new PhysicalChannelConfig.Builder() in sendPhyChanConfigChange()
2318 ssType = PhysicalChannelConfig.CONNECTION_SECONDARY_SERVING; in sendPhyChanConfigChange()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DNetworkIndication.java51 import android.telephony.PhysicalChannelConfig;
150 android.hardware.radio.network.PhysicalChannelConfig[] configs) { in currentPhysicalChannelConfigs()
152 List<PhysicalChannelConfig> response = new ArrayList<>(configs.length); in currentPhysicalChannelConfigs()
154 for (android.hardware.radio.network.PhysicalChannelConfig config : configs) { in currentPhysicalChannelConfigs()
155 PhysicalChannelConfig.Builder builder = new PhysicalChannelConfig.Builder(); in currentPhysicalChannelConfigs()
156 int band = PhysicalChannelConfig.BAND_UNKNOWN; in currentPhysicalChannelConfigs()
173 if (band == PhysicalChannelConfig.BAND_UNKNOWN) { in currentPhysicalChannelConfigs()
DNetworkTypeController.java35 import android.telephony.PhysicalChannelConfig;
226 @Nullable private List<PhysicalChannelConfig> mPhysicalChannelConfigs;
233 private int mLastAnchorNrCellId = PhysicalChannelConfig.PHYSICAL_CELL_ID_UNKNOWN;
683 mLastAnchorNrCellId = PhysicalChannelConfig.PHYSICAL_CELL_ID_UNKNOWN; in processMessage()
695 updatePhysicalChannelConfigs((List<PhysicalChannelConfig>) ar.result); in processMessage()
794 updatePhysicalChannelConfigs((List<PhysicalChannelConfig>) ar.result); in processMessage()
876 updatePhysicalChannelConfigs((List<PhysicalChannelConfig>) ar.result); in processMessage()
960 updatePhysicalChannelConfigs((List<PhysicalChannelConfig>) ar.result); in processMessage()
1041 updatePhysicalChannelConfigs((List<PhysicalChannelConfig>) ar.result); in processMessage()
1123 updatePhysicalChannelConfigs((List<PhysicalChannelConfig>) ar.result); in processMessage()
[all …]
DRadioIndication.java93 import android.hardware.radio.V1_6.PhysicalChannelConfig.Band;
104 import android.telephony.PhysicalChannelConfig;
325 ArrayList<android.hardware.radio.V1_4.PhysicalChannelConfig> configs) { in currentPhysicalChannelConfigs_1_4()
334 ArrayList<android.hardware.radio.V1_6.PhysicalChannelConfig> configs) { in currentPhysicalChannelConfigs_1_6()
343 ArrayList<android.hardware.radio.V1_2.PhysicalChannelConfig> configs) { in currentPhysicalChannelConfigs()
1152 private void setFrequencyRangeOrChannelNumber(PhysicalChannelConfig.Builder builder, in setFrequencyRangeOrChannelNumber()
1153 android.hardware.radio.V1_4.PhysicalChannelConfig config) { in setFrequencyRangeOrChannelNumber()
1168 List<PhysicalChannelConfig> response = new ArrayList<>(configs.size()); in physicalChannelConfigsIndication()
1171 if (obj instanceof android.hardware.radio.V1_4.PhysicalChannelConfig) { in physicalChannelConfigsIndication()
1172 android.hardware.radio.V1_4.PhysicalChannelConfig config = in physicalChannelConfigsIndication()
[all …]
DPhoneNotifier.java30 import android.telephony.PhysicalChannelConfig;
135 void notifyPhysicalChannelConfig(Phone sender, List<PhysicalChannelConfig> configs); in notifyPhysicalChannelConfig()
DServiceStateTracker.java70 import android.telephony.PhysicalChannelConfig;
188 private List<PhysicalChannelConfig> mLastPhysicalChannelConfigList = null;
913 public List<PhysicalChannelConfig> getPhysicalChannelConfigList() { in getPhysicalChannelConfigList()
1676 List<PhysicalChannelConfig> list = (List<PhysicalChannelConfig>) ar.result; in handleMessage()
1772 private static int[] getBandwidthsFromConfigs(List<PhysicalChannelConfig> list) { in getBandwidthsFromConfigs()
1774 .map(PhysicalChannelConfig::getCellBandwidthDownlinkKhz) in getBandwidthsFromConfigs()
2104 List<PhysicalChannelConfig> physicalChannelConfigs, ServiceState ss) { in updateNrFrequencyRangeFromPhysicalChannelConfigs()
2107 for (PhysicalChannelConfig config : physicalChannelConfigs) { in updateNrFrequencyRangeFromPhysicalChannelConfigs()
2128 List<PhysicalChannelConfig> configs, ServiceState ss) { in updateNrStateFromPhysicalChannelConfigs()
2134 for (PhysicalChannelConfig config : configs) { in updateNrStateFromPhysicalChannelConfigs()
[all …]
DDefaultPhoneNotifier.java30 import android.telephony.PhysicalChannelConfig;
279 List<PhysicalChannelConfig> configs) { in notifyPhysicalChannelConfig()
DPhone.java62 import android.telephony.PhysicalChannelConfig;
2942 List<PhysicalChannelConfig> physicalChannelConfigs = getPhysicalChannelConfigList(); in registerForPhysicalChannelConfig()
2953 public void notifyPhysicalChannelConfig(List<PhysicalChannelConfig> configs) { in notifyPhysicalChannelConfig()
2958 public List<PhysicalChannelConfig> getPhysicalChannelConfigList() { in getPhysicalChannelConfigList()
DRILUtils.java344 import android.telephony.PhysicalChannelConfig;
3889 return PhysicalChannelConfig.CONNECTION_PRIMARY_SERVING; in convertHalCellConnectionStatus()
3891 return PhysicalChannelConfig.CONNECTION_SECONDARY_SERVING; in convertHalCellConnectionStatus()
3893 return PhysicalChannelConfig.CONNECTION_UNKNOWN; in convertHalCellConnectionStatus()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DDataConnectionStateTracker.java24 import android.telephony.PhysicalChannelConfig;
239 public void onPhysicalChannelConfigChanged(List<PhysicalChannelConfig> configs) { in onPhysicalChannelConfigChanged()
244 private void logChannelChange(List<PhysicalChannelConfig> configs) { in logChannelChange()
/frameworks/base/core/java/com/android/internal/telephony/
DIPhoneStateListener.aidl27 import android.telephony.PhysicalChannelConfig;
76 void onPhysicalChannelConfigChanged(in List<PhysicalChannelConfig> configs); in onPhysicalChannelConfigChanged()
DITelephonyRegistry.aidl30 import android.telephony.PhysicalChannelConfig;
102 in List<PhysicalChannelConfig> configs); in notifyPhysicalChannelConfigForSubscriber()
/frameworks/base/core/java/android/telephony/
DTelephonyCallback.java1581 void onPhysicalChannelConfigChanged(@NonNull List<PhysicalChannelConfig> configs); in onPhysicalChannelConfigChanged()
2031 public void onPhysicalChannelConfigChanged(List<PhysicalChannelConfig> configs) { in onPhysicalChannelConfigChanged()
DPhoneStateListener.java1652 public void onPhysicalChannelConfigChanged(List<PhysicalChannelConfig> configs) { in onPhysicalChannelConfigChanged()
DTelephonyRegistryManager.java994 List<PhysicalChannelConfig> configs) { in notifyPhysicalChannelConfigForSubscriber()
/frameworks/base/services/core/java/com/android/server/
DTelephonyRegistry.java72 import android.telephony.PhysicalChannelConfig;
406 private List<List<PhysicalChannelConfig>> mPhysicalChannelConfigs;
2951 List<PhysicalChannelConfig> configs) { in notifyPhysicalChannelConfigForSubscriber()
2956 List<PhysicalChannelConfig> sanitizedConfigs = getLocationSanitizedConfigs(configs); in notifyPhysicalChannelConfigForSubscriber()
2999 private static List<PhysicalChannelConfig> getLocationSanitizedConfigs( in getLocationSanitizedConfigs()
3000 List<PhysicalChannelConfig> configs) { in getLocationSanitizedConfigs()
3001 List<PhysicalChannelConfig> sanitizedConfigs = new ArrayList<>(configs.size()); in getLocationSanitizedConfigs()
3002 for (PhysicalChannelConfig config : configs) { in getLocationSanitizedConfigs()
/frameworks/base/boot/
Dpreloaded-classes3210 android.hardware.radio.V1_2.PhysicalChannelConfig
3242 android.hardware.radio.V1_4.PhysicalChannelConfig
3292 android.hardware.radio.V1_6.PhysicalChannelConfig$Band
3293 android.hardware.radio.V1_6.PhysicalChannelConfig
7567 android.telephony.PhysicalChannelConfig$1
7568 android.telephony.PhysicalChannelConfig$Builder
7569 android.telephony.PhysicalChannelConfig
/frameworks/base/config/
Dpreloaded-classes3214 android.hardware.radio.V1_2.PhysicalChannelConfig
3246 android.hardware.radio.V1_4.PhysicalChannelConfig
3296 android.hardware.radio.V1_6.PhysicalChannelConfig$Band
3297 android.hardware.radio.V1_6.PhysicalChannelConfig
7598 android.telephony.PhysicalChannelConfig$1
7599 android.telephony.PhysicalChannelConfig$Builder
7600 android.telephony.PhysicalChannelConfig
/frameworks/base/core/api/
Dlint-baseline.txt880 …igListener#onPhysicalChannelConfigChanged(java.util.List<android.telephony.PhysicalChannelConfig>):

12