/prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/ |
isdn.h | 107 char phone[ISDN_MSNLEN]; member in struct:__anon60563
|
/prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/ |
isdn.h | 107 char phone[ISDN_MSNLEN]; member in struct:__anon61330
|
/prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/ |
isdn.h | 107 char phone[ISDN_MSNLEN]; member in struct:__anon62109
|
/prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/ |
isdn.h | 107 char phone[ISDN_MSNLEN]; member in struct:__anon62887
|
/prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/ |
isdn.h | 107 char phone[ISDN_MSNLEN]; member in struct:__anon63663
|
/prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/ |
isdn.h | 107 char phone[ISDN_MSNLEN]; member in struct:__anon64440
|
/external/libxml2/example/ |
gjobread.c | 39 xmlChar *phone; member in struct:person 89 if (cur->phone) printf(" phone: %s\n", cur->phone);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
IccPhoneBookInterfaceManager.java | 114 public IccPhoneBookInterfaceManager(PhoneBase phone) { 115 this.mPhone = phone; 116 IccRecords r = phone.mIccRecords.get(); 198 * phone book or erase/format the whole phonebook. Currently the email field
|
PhoneSubInfo.java | 37 private Phone mPhone; 48 public PhoneSubInfo(Phone phone) { 49 mPhone = phone; 50 mContext = phone.getContext(); 140 * Retrieves the phone number string for line 1. 363 pw.println("Phone Subscriber Info:"); 364 pw.println(" Phone Type = " + mPhone.getPhoneName()); 386 * Besides READ_PHONE_STATE, WRITE_SMS also allows apps to get phone numbers.
|
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/ |
MapTestData.java | 197 * @param phone 200 private static void insertContact(ContentResolver resolver, String name, String phone, String email) { 219 if(phone != null) { 223 ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE); 224 item.put(ContactsContract.CommonDataKinds.Phone.NUMBER, phone);
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
CellBroadcastReceiver.java | 225 * @return true if the phone is a CDMA phone type 230 ITelephony phone = ITelephony.Stub.asInterface(ServiceManager.checkService("phone")); local 231 if (phone != null) { 232 isCdma = (phone.getActivePhoneTypeForSubscriber(subId) == 236 Log.w(TAG, "phone.getActivePhoneType() failed", e);
|
/packages/services/Telephony/src/com/android/phone/common/mail/ |
MailTransport.java | 16 package com.android.phone.common.mail; 21 import com.android.phone.common.mail.store.ImapStore; 22 import com.android.phone.common.mail.utils.LogUtils;
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/ |
VCardResourceEntry.java | 24 import android.provider.ContactsContract.CommonDataKinds.Phone; 171 for (final PhoneData phone : vcard.getPhoneList()) { 173 intent.setData(Uri.parse("tel:" + phone.getNumber())); 174 retList.add(new VCardResourceEntryDestinationItem(phone.getNumber(), 175 Phone.getTypeLabel(resources, phone.getType(), phone.getLabel()).toString(), 186 Phone.getTypeLabel(resources, email.getType(), 332 * Represents one entry line (e.g. phone number and phone label) for a single contact. Eac [all...] |
/packages/services/Telephony/src/com/android/phone/settings/fdn/ |
FdnSetting.java | 17 package com.android.phone.settings.fdn; 34 import com.android.internal.telephony.Phone; 35 import com.android.phone.CallFeaturesSetting; 36 import com.android.phone.PhoneGlobals; 37 import com.android.phone.R; 38 import com.android.phone.SubscriptionInfoHelper; 41 * FDN settings UI for the Phone app. 51 private Phone mPhone;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
GsmConnection.java | 169 // On mobile originated (MO) calls, the phone number may have changed 173 // and therefore don't need to compare the phone number anyway. 181 // ... but we can compare phone numbers on MT calls, and we have 275 if (Phone.DEBUG_PHONE) { 347 GSMPhone phone = mOwner.mPhone; local 348 int serviceState = phone.getServiceState().getState(); 349 UiccCardApplication cardApp = phone.getUiccCardApplication(); 360 if (phone.mSST.mRestrictedState.isCsRestricted()) { 362 } else if (phone.mSST.mRestrictedState.isCsEmergencyRestricted()) { 364 } else if (phone.mSST.mRestrictedState.isCsNormalRestricted()) [all...] |
/cts/tests/tests/location/src/android/location/cts/ |
AddressTest.java | 151 String phone = "+86-13512345678"; local 152 address.setPhone(phone); 153 assertEquals(phone, address.getPhone()); 211 "longitude=0.0,phone=null,url=www.google.com,extras=null]";
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
KeyguardUserSwitcher.java | 36 import com.android.systemui.statusbar.phone.KeyguardStatusBarView; 37 import com.android.systemui.statusbar.phone.NotificationPanelView; 38 import com.android.systemui.statusbar.phone.PhoneStatusBar;
|
/packages/apps/Messaging/tests/src/com/android/messaging/util/ |
ContactUtilTest.java | 46 // TODO: This test will actually mess with contacts on your phone. 65 * Add a test contact based on contact name, phone and email. 68 final String name, final String phone, final String email, final boolean starred) 84 if (phone != null) { 88 ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE) 89 .withValue(ContactsContract.CommonDataKinds.Phone.NUMBER, phone) 90 .withValue(ContactsContract.CommonDataKinds.Phone.TYPE, 91 ContactsContract.CommonDataKinds.Phone.TYPE_MOBILE)
|
/packages/services/Telephony/src/com/android/services/telephony/ |
DisconnectCauseUtil.java | 23 import com.android.phone.PhoneGlobals; 24 import com.android.phone.common.R; 25 import com.android.phone.ImsUtil; 295 // The supplied Intent didn't contain a valid phone number.
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
UsageTracker.java | 28 import com.android.systemui.statusbar.phone.SystemUIDialog;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
NavigationBarTransitions.java | 17 package com.android.systemui.statusbar.phone;
|
NavigationBarViewTaskSwitchHelper.java | 17 package com.android.systemui.statusbar.phone;
|
NoisyVelocityTracker.java | 17 package com.android.systemui.statusbar.phone;
|
NotificationsQuickSettingsContainer.java | 17 package com.android.systemui.statusbar.phone;
|
ObservableScrollView.java | 17 package com.android.systemui.statusbar.phone;
|