Home
last modified time | relevance | path

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

/frameworks/base/telephony/java/android/telephony/
DPhysicalChannelConfig.java32 public final class PhysicalChannelConfig implements Parcelable { class
204 if (!(o instanceof PhysicalChannelConfig)) { in equals()
208 PhysicalChannelConfig config = (PhysicalChannelConfig) o; in equals()
225 …public static final @android.annotation.NonNull Parcelable.Creator<PhysicalChannelConfig> CREATOR =
226 new Parcelable.Creator<PhysicalChannelConfig>() {
227 public PhysicalChannelConfig createFromParcel(Parcel in) {
228 return new PhysicalChannelConfig(in);
231 public PhysicalChannelConfig[] newArray(int size) {
232 return new PhysicalChannelConfig[size];
257 private PhysicalChannelConfig(Parcel in) { in PhysicalChannelConfig() method in PhysicalChannelConfig
[all …]
DPhysicalChannelConfig.aidl20 parcelable PhysicalChannelConfig;
DPhoneStateListener.java820 @NonNull List<PhysicalChannelConfig> configs) { in onPhysicalChannelConfigurationChanged()
1145 public void onPhysicalChannelConfigurationChanged(List<PhysicalChannelConfig> configs) { in onPhysicalChannelConfigurationChanged()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DPhysicalChannelConfigTest.java21 import android.telephony.PhysicalChannelConfig;
22 import android.telephony.PhysicalChannelConfig.Builder;
31 private static final int CONNECTION_STATUS = PhysicalChannelConfig.CONNECTION_PRIMARY_SERVING;
40 PhysicalChannelConfig config = new Builder() in testBuilder()
61 PhysicalChannelConfig config = new Builder() in testParcel()
75 PhysicalChannelConfig fromParcel = PhysicalChannelConfig.CREATOR.createFromParcel(parcel); in testParcel()
DPhoneStateListenerExecutorTest.java24 import android.telephony.PhysicalChannelConfig;
49 private List<PhysicalChannelConfig> mPhysicalChannelConfigs;
71 List<PhysicalChannelConfig> configs) { in setUp()
117 PhysicalChannelConfig config = new PhysicalChannelConfig.Builder() in testTriggerPhysicalChannelConfigurationChanged()
118 .setCellConnectionStatus(PhysicalChannelConfig.CONNECTION_PRIMARY_SERVING) in testTriggerPhysicalChannelConfigurationChanged()
122 List<PhysicalChannelConfig> configs = Collections.singletonList(config); in testTriggerPhysicalChannelConfigurationChanged()
DPhoneStateListenerTest.java25 import android.telephony.PhysicalChannelConfig;
42 private List<PhysicalChannelConfig> mPhysicalChannelConfigs;
69 List<PhysicalChannelConfig> configs) { in onLooperPrepared()
131 PhysicalChannelConfig config = new PhysicalChannelConfig.Builder() in testTriggerPhysicalChannelConfigurationChanged()
132 .setCellConnectionStatus(PhysicalChannelConfig.CONNECTION_PRIMARY_SERVING) in testTriggerPhysicalChannelConfigurationChanged()
136 List<PhysicalChannelConfig> configs = Collections.singletonList(config); in testTriggerPhysicalChannelConfigurationChanged()
DServiceStateTrackerTest.java82 import android.telephony.PhysicalChannelConfig;
1819 ArrayList<PhysicalChannelConfig> pc = new ArrayList<>(); in sendPhyChanConfigChange()
1820 int ssType = PhysicalChannelConfig.CONNECTION_PRIMARY_SERVING; in sendPhyChanConfigChange()
1822 pc.add(new PhysicalChannelConfig.Builder() in sendPhyChanConfigChange()
1828 ssType = PhysicalChannelConfig.CONNECTION_SECONDARY_SERVING; in sendPhyChanConfigChange()
/frameworks/base/telephony/java/com/android/internal/telephony/
DITelephonyRegistry.aidl27 import android.telephony.PhysicalChannelConfig;
71 void notifyPhysicalChannelConfiguration(in List<PhysicalChannelConfig> configs); in notifyPhysicalChannelConfiguration()
73 in List<PhysicalChannelConfig> configs); in notifyPhysicalChannelConfigurationForSubscriber()
DIPhoneStateListener.aidl24 import android.telephony.PhysicalChannelConfig;
44 void onPhysicalChannelConfigurationChanged(in List<PhysicalChannelConfig> configs); in onPhysicalChannelConfigurationChanged()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRadioIndication.java92 import android.telephony.PhysicalChannelConfig;
294 ArrayList<android.hardware.radio.V1_4.PhysicalChannelConfig> configs) { in currentPhysicalChannelConfigs_1_4()
303 ArrayList<android.hardware.radio.V1_2.PhysicalChannelConfig> configs) { in currentPhysicalChannelConfigs()
991 private void setFrequencyRangeOrChannelNumber(PhysicalChannelConfig.Builder builder, in setFrequencyRangeOrChannelNumber()
992 android.hardware.radio.V1_4.PhysicalChannelConfig config) { in setFrequencyRangeOrChannelNumber()
1009 return PhysicalChannelConfig.CONNECTION_PRIMARY_SERVING; in convertConnectionStatusFromCellConnectionStatus()
1011 return PhysicalChannelConfig.CONNECTION_SECONDARY_SERVING; in convertConnectionStatusFromCellConnectionStatus()
1016 return PhysicalChannelConfig.CONNECTION_UNKNOWN; in convertConnectionStatusFromCellConnectionStatus()
1021 List<PhysicalChannelConfig> response = new ArrayList<>(configs.size()); in physicalChannelConfigsIndication()
1023 if (obj instanceof android.hardware.radio.V1_2.PhysicalChannelConfig) { in physicalChannelConfigsIndication()
[all …]
DPhoneNotifier.java25 import android.telephony.PhysicalChannelConfig;
62 void notifyPhysicalChannelConfiguration(Phone sender, List<PhysicalChannelConfig> configs); in notifyPhysicalChannelConfiguration()
DDefaultPhoneNotifier.java31 import android.telephony.PhysicalChannelConfig;
246 List<PhysicalChannelConfig> configs) { in notifyPhysicalChannelConfiguration()
DServiceStateTracker.java70 import android.telephony.PhysicalChannelConfig;
171 private List<PhysicalChannelConfig> mLastPhysicalChannelConfigList = null;
1534 List<PhysicalChannelConfig> list = (List<PhysicalChannelConfig>) ar.result; in handleMessage()
1594 private int[] getBandwidthsFromConfigs(List<PhysicalChannelConfig> list) { in getBandwidthsFromConfigs()
1596 .map(PhysicalChannelConfig::getCellBandwidthDownlink) in getBandwidthsFromConfigs()
1921 List<PhysicalChannelConfig> physicalChannelConfigs, ServiceState ss) { in updateNrFrequencyRangeFromPhysicalChannelConfigs()
1926 for (PhysicalChannelConfig config : physicalChannelConfigs) { in updateNrFrequencyRangeFromPhysicalChannelConfigs()
1950 List<PhysicalChannelConfig> configs, ServiceState ss) { in updateNrStateFromPhysicalChannelConfigs()
1956 for (PhysicalChannelConfig config : configs) { in updateNrStateFromPhysicalChannelConfigs()
1958 == PhysicalChannelConfig.CONNECTION_SECONDARY_SERVING) { in updateNrStateFromPhysicalChannelConfigs()
[all …]
DPhone.java55 import android.telephony.PhysicalChannelConfig;
2381 public void notifyPhysicalChannelConfiguration(List<PhysicalChannelConfig> configs) { in notifyPhysicalChannelConfiguration()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
DTelephonyRegistryMock.java29 import android.telephony.PhysicalChannelConfig;
356 public void notifyPhysicalChannelConfiguration(List<PhysicalChannelConfig> configs) { in notifyPhysicalChannelConfiguration()
362 List<PhysicalChannelConfig> configs) { in notifyPhysicalChannelConfigurationForSubscriber()
/frameworks/base/services/core/java/com/android/server/
DTelephonyRegistry.java45 import android.telephony.PhysicalChannelConfig;
208 private ArrayList<List<PhysicalChannelConfig>> mPhysicalChannelConfigs;
1258 public void notifyPhysicalChannelConfiguration(List<PhysicalChannelConfig> configs) { in notifyPhysicalChannelConfiguration()
1264 List<PhysicalChannelConfig> configs) { in notifyPhysicalChannelConfigurationForSubscriber()