OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mSelectableSubInfos
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Settings/src/com/android/settings/sim/
SimSettings.java
64
*
mSelectableSubInfos
is the list of SubInfos that a user can select for data, calls, and SMS.
68
private List<SubscriptionInfo>
mSelectableSubInfos
= null;
100
mSelectableSubInfos
= new ArrayList<SubscriptionInfo>();
122
mSelectableSubInfos
.clear();
132
mSelectableSubInfos
.add(sir);
167
simPref.setEnabled(
mSelectableSubInfos
.size() > 1);
170
simPref.setEnabled(
mSelectableSubInfos
.size() >= 1);
186
simPref.setEnabled((
mSelectableSubInfos
.size() > 1) && callStateIdle && !ecbMode);
190
simPref.setEnabled((
mSelectableSubInfos
.size() >= 1) && callStateIdle && !ecbMode);
216
if (
mSelectableSubInfos
.size() > 1)
[
all
...]
/packages/apps/Settings/src/com/android/settings/deviceinfo/
SimStatus.java
118
private List<SubscriptionInfo>
mSelectableSubInfos
;
146
mSelectableSubInfos
= SubscriptionManager.from(getContext())
160
if (
mSelectableSubInfos
== null) {
163
mSir =
mSelectableSubInfos
.size() > 0 ?
mSelectableSubInfos
.get(0) : null;
165
if (
mSelectableSubInfos
.size() > 1) {
181
for (int i = 0; i <
mSelectableSubInfos
.size(); i++) {
183
String.valueOf(
mSelectableSubInfos
.get(i).getDisplayName())));
453
mSir =
mSelectableSubInfos
.get(slotId);
Completed in 68 milliseconds