OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SubInfoRecord
(Results
1 - 10
of
10
) sorted by null
/frameworks/base/telephony/java/android/telephony/
SubInfoRecord.aidl
19
parcelable
SubInfoRecord
;
SubInfoRecord.java
26
public class
SubInfoRecord
implements Parcelable {
79
public
SubInfoRecord
() {
94
public
SubInfoRecord
(long subId, String iccId, int slotId, String displayName, int nameSource,
111
public static final Parcelable.Creator<
SubInfoRecord
> CREATOR = new Parcelable.Creator<
SubInfoRecord
>() {
113
public
SubInfoRecord
createFromParcel(Parcel source) {
128
return new
SubInfoRecord
(subId, iccId, slotId, displayName, nameSource, color, number,
133
public
SubInfoRecord
[] newArray(int size) {
134
return new
SubInfoRecord
[size];
SubscriptionManager.java
263
* Get the
SubInfoRecord
associated with the subId
264
* @param subId The unique
SubInfoRecord
index in database
265
* @return
SubInfoRecord
, maybe null
268
public static
SubInfoRecord
getSubInfoForSubscriber(long subId) {
274
SubInfoRecord
subInfo = null;
290
* Get the
SubInfoRecord
according to an IccId
292
* @return
SubInfoRecord
List, maybe empty but not null
295
public static List<
SubInfoRecord
> getSubInfoUsingIccId(String iccId) {
302
List<
SubInfoRecord
> result = null;
315
result = new ArrayList<
SubInfoRecord
>();
[
all
...]
/frameworks/base/telephony/java/com/android/internal/telephony/
ISub.aidl
20
import android.telephony.
SubInfoRecord
;
24
* Get the
SubInfoRecord
according to an index
25
* @param subId The unique
SubInfoRecord
index in database
26
* @return
SubInfoRecord
, maybe null
28
SubInfoRecord
getSubInfoForSubscriber(long subId);
31
* Get the
SubInfoRecord
according to an IccId
33
* @return
SubInfoRecord
, maybe null
35
List<
SubInfoRecord
> getSubInfoUsingIccId(String iccId);
38
* Get the
SubInfoRecord
according to slotId
40
* @return
SubInfoRecord
, maybe nul
[
all
...]
/packages/apps/Settings/src/com/android/settings/sim/
SimSettings.java
38
import android.telephony.
SubInfoRecord
;
84
private List<
SubInfoRecord
> mAvailableSubInfos = null;
85
private List<
SubInfoRecord
> mSubInfoList = null;
87
private
SubInfoRecord
mCellularData = null;
88
private
SubInfoRecord
mCalls = null;
89
private
SubInfoRecord
mSMS = null;
118
mAvailableSubInfos = new ArrayList<
SubInfoRecord
>(numSlots);
121
final
SubInfoRecord
sir = findRecordBySlotId(i);
165
private
SubInfoRecord
findRecordBySubId(final long subId) {
169
final
SubInfoRecord
sir = mAvailableSubInfos.get(i)
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
SubscriptionController.java
39
import android.telephony.
SubInfoRecord
;
224
* @SubId The unique
SubInfoRecord
index in database
249
* New
SubInfoRecord
instance and fill in detail info
251
* @return the query result of desired
SubInfoRecord
253
private
SubInfoRecord
getSubInfoRecord(Cursor cursor) {
254
SubInfoRecord
info = new
SubInfoRecord
();
291
* Query
SubInfoRecord
(s) from subinfo database
296
private List<
SubInfoRecord
> getSubInfo(String selection, Object queryKey) {
302
ArrayList<
SubInfoRecord
> subList = null
[
all
...]
SubInfoRecordUpdater.java
33
import android.telephony.
SubInfoRecord
;
145
SubInfoRecord
subInfo =
202
SubInfoRecord
subInfo = SubscriptionManager.getSubInfoForSubscriber(subId);
319
List<
SubInfoRecord
> oldSubInfo =
393
List<
SubInfoRecord
> subInfos = SubscriptionManager.getActiveSubInfoList();
397
SubInfoRecord
temp = subInfos.get(i);
IccProvider.java
28
import android.telephony.
SubInfoRecord
;
120
List<
SubInfoRecord
> subInfoList = SubscriptionManager.getActiveSubInfoList();
/packages/services/Mms/src/com/android/mms/service/
MmsConfigManager.java
24
import android.telephony.
SubInfoRecord
;
129
List<
SubInfoRecord
> subs = SubscriptionManager.getActiveSubInfoList();
137
for (
SubInfoRecord
sub : subs) {
/packages/services/Telephony/src/com/android/services/telephony/
TelecomAccountRegistry.java
30
import android.telephony.
SubInfoRecord
;
118
// We can only get the real slotId from the
SubInfoRecord
, we can't calculate the
120
SubInfoRecord
record = SubscriptionManager.getSubInfoForSubscriber(subId);
Completed in 634 milliseconds