HomeSort by relevance Sort by last modified time
    Searched refs:phone (Results 1 - 25 of 637) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
TelephonyCapabilities.java 21 import com.android.internal.telephony.Phone;
24 * Utilities that check if the phone supports specified capabilities.
34 * Return true if the current phone supports ECM ("Emergency Callback
47 public static boolean supportsEcm(Phone phone) {
48 Rlog.d(LOG_TAG, "supportsEcm: Phone type = " + phone.getPhoneType() +
49 " Ims Phone = " + phone.getImsPhone());
50 return (phone.getPhoneType() == PhoneConstants.PHONE_TYPE_CDMA |
    [all...]
TelephonyComponentFactory.java 52 public GsmCdmaCallTracker makeGsmCdmaCallTracker(GsmCdmaPhone phone) {
53 return new GsmCdmaCallTracker(phone);
56 public SmsStorageMonitor makeSmsStorageMonitor(Phone phone) {
57 return new SmsStorageMonitor(phone);
64 public ServiceStateTracker makeServiceStateTracker(GsmCdmaPhone phone, CommandsInterface ci) {
65 return new ServiceStateTracker(phone, ci);
71 public NitzStateMachine makeNitzStateMachine(GsmCdmaPhone phone) {
72 return new NitzStateMachine(phone);
75 public SimActivationTracker makeSimActivationTracker(Phone phone)
    [all...]
PhoneSubInfoController.java 44 private final Phone[] mPhone;
48 public PhoneSubInfoController(Context context, Phone[] phone) {
49 mPhone = phone;
66 final Phone phone = mPhone[phoneId]; local
67 if (phone != null) {
69 mContext, phone.getSubId(), callingPackage, "getDeviceId")) {
72 return phone.getDeviceId();
74 loge("getDeviceIdForPhone phone " + phoneId + " is null")
80 Phone phone = getPhone(subId); local
94 Phone phone = getPhone(subId); local
109 Phone phone = getPhone(subId); local
125 Phone phone = getPhone(subId); local
143 Phone phone = getPhone(subId); local
160 Phone phone = getPhone(subId); local
178 Phone phone = getPhone(subId); local
199 Phone phone = getPhone(subId); local
217 Phone phone = getPhone(subId); local
236 Phone phone = getPhone(subId); local
254 Phone phone = getPhone(subId); local
272 Phone phone = getPhone(subId); local
293 Phone phone = getPhone(subId); local
310 Phone phone = getPhone(subId); local
366 Phone phone = getPhone(subId); local
386 Phone phone = getPhone(subId); local
406 Phone phone = getPhone(subId); local
426 Phone phone = getPhone(subId); local
446 Phone phone = getPhone(subId); local
468 Phone phone = getPhone(subId); local
495 Phone phone = getPhone(subId); local
    [all...]
  /packages/apps/PhoneCommon/src/com/android/phone/common/
PhoneConstants.java 17 package com.android.phone.common;
20 * Constants related to phone operations.
24 /** Copied from PhoneApp. See comments in Phone app for more detail. */
25 // TODO: Change phone app to rely on this also.
26 public static final String EXTRA_CALL_ORIGIN = "com.android.phone.CALL_ORIGIN";
  /packages/services/Telephony/src/com/android/phone/
InCallScreen.java 17 package com.android.phone;
IccProvider.java 17 package com.android.phone;
INetworkQueryService.aidl 17 package com.android.phone;
19 import com.android.phone.INetworkQueryServiceCallback;
23 * Phone application lets this service interface handle carrier
24 * availability queries instead of making direct calls to the Phone layer.
39 * <code>Phone.getAvailableNetworks()</code>.
Constants.java 17 package com.android.phone;
20 * App-wide constants and enums for the phone app.
23 * the com.android.phone package should be defined here. (Constants that
33 * or "exceptional conditions" that can occur when making a phone
72 * The supplied CALL Intent didn't contain a valid phone number.
77 * Our initial phone number was actually an MMI sequence.
117 * where the phone disallows data connections over the cell
119 * call. If the phone is in ECM and you dial a non-emergency
NeededForTesting.java 17 package com.android.phone;
DumpsysHandler.java 2 package com.android.phone;
6 import com.android.phone.vvm.VvmDumpHandler;
12 * Handles "adb shell dumpsys phone" and bug report dump.
  /device/google/cuttlefish/vsoc_x86/phone/
device.mk 17 $(call inherit-product, device/google/cuttlefish/shared/phone/device.mk)
21 PRODUCT_MODEL := Cuttlefish x86 phone
22 PRODUCT_PACKAGE_OVERLAYS := device/google/cuttlefish/vsoc_x86/phone/overlay
  /device/google/cuttlefish/vsoc_x86_64/phone/
device.mk 18 $(call inherit-product, device/google/cuttlefish/shared/phone/device.mk)
22 PRODUCT_MODEL := Cuttlefish x86_64 phone
23 PRODUCT_PACKAGE_OVERLAYS := device/google/cuttlefish/vsoc_x86_64/phone/overlay
  /packages/services/Telephony/src/com/android/phone/vvm/
PhoneAccountHandleConverter.java 17 package com.android.phone.vvm;
22 import com.android.internal.telephony.Phone;
24 import com.android.phone.PhoneUtils;
25 import com.android.phone.vvm.VvmLog;
44 // phone object cannot be found, so the Phone object should be created and checked here.
45 Phone phone = PhoneFactory.getPhone(SubscriptionManager.getPhoneId(subId)); local
46 if (phone == null) {
47 VvmLog.e(TAG, "Unable to find Phone for subId " + subId)
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
PhoneFactoryTest.java 30 Phone phone = PhoneFactory.getDefaultPhone(); local
36 Phone phone = PhoneFactory.getPhone(0); local
42 Phone[] phone = PhoneFactory.getPhones(); local
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
ManagedProfileController.java 15 package com.android.systemui.statusbar.phone;
17 import com.android.systemui.statusbar.phone.ManagedProfileController.Callback;
KeyguardDismissHandler.java 17 package com.android.systemui.statusbar.phone;
VelocityTrackerInterface.java 17 package com.android.systemui.statusbar.phone;
  /external/nanopb-c/tests/basic_buffer/
decode_buffer.c 34 Person_PhoneNumber *phone = &person.phone[i]; local
35 printf("phone {\n");
36 printf(" number: \"%s\"\n", phone->number);
38 if (phone->has_type)
40 switch (phone->type)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
PipTouchGesture.java 17 package com.android.systemui.pip.phone;
  /packages/services/Telephony/src/com/android/phone/settings/
SettingsConstants.java 17 package com.android.phone.settings;
23 // Dtmf tone type setting value for CDMA phone
  /packages/services/Telephony/testapps/ImsTestService/src/com/android/phone/testapps/imstestapp/
TestRcsFeatureImpl.java 17 package com.android.phone.testapps.imstestapp;
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
FakeManagedProfileController.java 19 import com.android.systemui.statusbar.phone.ManagedProfileController;
20 import com.android.systemui.statusbar.phone.ManagedProfileController.Callback;
  /packages/apps/Dialer/java/com/android/voicemail/impl/sync/
SyncOneTask.java 44 private PhoneAccountHandle phone; field in class:SyncOneTask
47 public static void start(Context context, PhoneAccountHandle phone, Voicemail voicemail) {
48 Intent intent = BaseTask.createIntent(context, SyncOneTask.class, phone);
49 intent.putExtra(EXTRA_PHONE_ACCOUNT_HANDLE, phone);
62 phone = extras.getParcelable(EXTRA_PHONE_ACCOUNT_HANDLE);
69 service.sync(this, phone, voicemail, VoicemailStatus.edit(getContext(), phone));
76 intent.putExtra(EXTRA_PHONE_ACCOUNT_HANDLE, phone);
SyncTask.java 43 private PhoneAccountHandle phone; field in class:SyncTask
45 public static void start(Context context, PhoneAccountHandle phone) {
46 Intent intent = BaseTask.createIntent(context, SyncTask.class, phone);
47 intent.putExtra(EXTRA_PHONE_ACCOUNT_HANDLE, phone);
61 phone = extras.getParcelable(EXTRA_PHONE_ACCOUNT_HANDLE);
67 service.sync(this, phone, null, retryPolicy.getVoicemailStatusEditor());
74 intent.putExtra(EXTRA_PHONE_ACCOUNT_HANDLE, phone);
  /external/nanopb-c/tests/basic_stream/
decode_stream.c 30 Person_PhoneNumber *phone = &person.phone[i]; local
31 printf("phone {\n");
32 printf(" number: \"%s\"\n", phone->number);
34 if (phone->has_type)
36 switch (phone->type)

Completed in 426 milliseconds

1 2 3 4 5 6 7 8 91011>>