Home
last modified time | relevance | path

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

/frameworks/base/telephony/java/android/telephony/
DPhysicalChannelConfig.java28 public final class PhysicalChannelConfig implements Parcelable { class
60 public PhysicalChannelConfig(int status, int bandwidth) { in PhysicalChannelConfig() method in PhysicalChannelConfig
65 public PhysicalChannelConfig(Parcel in) { in PhysicalChannelConfig() method in PhysicalChannelConfig
122 if (!(o instanceof PhysicalChannelConfig)) { in equals()
126 PhysicalChannelConfig config = (PhysicalChannelConfig) o; in equals()
136 public static final Parcelable.Creator<PhysicalChannelConfig> CREATOR =
137 new Parcelable.Creator<PhysicalChannelConfig>() {
138 public PhysicalChannelConfig createFromParcel(Parcel in) {
139 return new PhysicalChannelConfig(in);
142 public PhysicalChannelConfig[] newArray(int size) {
[all …]
DPhysicalChannelConfig.aidl20 parcelable PhysicalChannelConfig;
DPhoneStateListener.java389 (List<PhysicalChannelConfig>)msg.obj); in PhoneStateListener()
596 @NonNull List<PhysicalChannelConfig> configs) { in onPhysicalChannelConfigurationChanged()
734 public void onPhysicalChannelConfigurationChanged(List<PhysicalChannelConfig> configs) { in onPhysicalChannelConfigurationChanged()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DPhoneStateListenerTest.java25 import android.telephony.PhysicalChannelConfig;
42 private List<PhysicalChannelConfig> mPhysicalChannelConfigs;
69 List<PhysicalChannelConfig> configs) { in onLooperPrepared()
131 PhysicalChannelConfig config = new PhysicalChannelConfig( in testTriggerPhysicalChannelConfigurationChanged()
132 PhysicalChannelConfig.CONNECTION_PRIMARY_SERVING, 20000 /* bandwidth */); in testTriggerPhysicalChannelConfigurationChanged()
134 List<PhysicalChannelConfig> configs = Collections.singletonList(config); in testTriggerPhysicalChannelConfigurationChanged()
DServiceStateTrackerTest.java68 import android.telephony.PhysicalChannelConfig;
1636 ArrayList<PhysicalChannelConfig> pc = new ArrayList<>(); in sendPhyChanConfigChange()
1637 int ssType = PhysicalChannelConfig.CONNECTION_PRIMARY_SERVING; in sendPhyChanConfigChange()
1639 pc.add(new PhysicalChannelConfig(ssType, bw)); in sendPhyChanConfigChange()
1642 ssType = PhysicalChannelConfig.CONNECTION_SECONDARY_SERVING; in sendPhyChanConfigChange()
/frameworks/base/telephony/java/com/android/internal/telephony/
DITelephonyRegistry.aidl24 import android.telephony.PhysicalChannelConfig;
61 void notifyPhysicalChannelConfiguration(in List<PhysicalChannelConfig> configs); in notifyPhysicalChannelConfiguration()
63 in List<PhysicalChannelConfig> configs); in notifyPhysicalChannelConfigurationForSubscriber()
DIPhoneStateListener.aidl24 import android.telephony.PhysicalChannelConfig;
41 void onPhysicalChannelConfigurationChanged(in List<PhysicalChannelConfig> configs); in onPhysicalChannelConfigurationChanged()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DPhoneNotifier.java20 import android.telephony.PhysicalChannelConfig;
55 void notifyPhysicalChannelConfiguration(Phone sender, List<PhysicalChannelConfig> configs); in notifyPhysicalChannelConfiguration()
DRadioIndication.java91 import android.telephony.PhysicalChannelConfig;
276 ArrayList<android.hardware.radio.V1_2.PhysicalChannelConfig> configs) { in currentPhysicalChannelConfigs()
277 List<PhysicalChannelConfig> response = new ArrayList<>(configs.size()); in currentPhysicalChannelConfigs()
279 for (android.hardware.radio.V1_2.PhysicalChannelConfig config : configs) { in currentPhysicalChannelConfigs()
283 status = PhysicalChannelConfig.CONNECTION_PRIMARY_SERVING; in currentPhysicalChannelConfigs()
286 status = PhysicalChannelConfig.CONNECTION_SECONDARY_SERVING; in currentPhysicalChannelConfigs()
292 status = PhysicalChannelConfig.CONNECTION_UNKNOWN; in currentPhysicalChannelConfigs()
296 response.add(new PhysicalChannelConfig(status, config.cellBandwidthDownlink)); in currentPhysicalChannelConfigs()
DDefaultPhoneNotifier.java25 import android.telephony.PhysicalChannelConfig;
237 List<PhysicalChannelConfig> configs) { in notifyPhysicalChannelConfiguration()
DServiceStateTracker.java67 import android.telephony.PhysicalChannelConfig;
134 private List<PhysicalChannelConfig> mLastPhysicalChannelConfigList = null;
1457 List<PhysicalChannelConfig> list = (List<PhysicalChannelConfig>) ar.result; in handleMessage()
1478 private int[] getBandwidthsFromConfigs(List<PhysicalChannelConfig> list) { in getBandwidthsFromConfigs()
1480 .map(PhysicalChannelConfig::getCellBandwidthDownlink) in getBandwidthsFromConfigs()
DPhone.java51 import android.telephony.PhysicalChannelConfig;
2197 public void notifyPhysicalChannelConfiguration(List<PhysicalChannelConfig> configs) { in notifyPhysicalChannelConfiguration()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
DTelephonyRegistryMock.java26 import android.telephony.PhysicalChannelConfig;
281 public void notifyPhysicalChannelConfiguration(List<PhysicalChannelConfig> configs) { in notifyPhysicalChannelConfiguration()
287 List<PhysicalChannelConfig> configs) { in notifyPhysicalChannelConfigurationForSubscriber()
/frameworks/base/services/core/java/com/android/server/
DTelephonyRegistry.java40 import android.telephony.PhysicalChannelConfig;
185 private ArrayList<List<PhysicalChannelConfig>> mPhysicalChannelConfigs;
339 mPhysicalChannelConfigs = new ArrayList<List<PhysicalChannelConfig>>(); in TelephonyRegistry()
354 mPhysicalChannelConfigs.add(i, new ArrayList<PhysicalChannelConfig>()); in TelephonyRegistry()
1015 public void notifyPhysicalChannelConfiguration(List<PhysicalChannelConfig> configs) { in notifyPhysicalChannelConfiguration()
1021 List<PhysicalChannelConfig> configs) { in notifyPhysicalChannelConfigurationForSubscriber()