HomeSort by relevance Sort by last modified time
    Searched defs:phone (Results 26 - 50 of 223) sorted by null

12 3 4 5 6 7 8 9

  /packages/services/Telephony/src/com/android/phone/
BluetoothManager.java 17 package com.android.phone;
CallForwardEditPreference.java 1 package com.android.phone;
6 import com.android.internal.telephony.Phone;
20 import static com.android.phone.TimeConsumingPreferenceActivity.RESPONSE_ERROR;
39 Phone phone; field in class:CallForwardEditPreference
46 phone = PhoneGlobals.getPhone();
67 phone.getCallForwardingOption(reason,
123 // the interface of Phone.setCallForwardingOption has error:
125 phone.setCallForwardingOption(action,
261 phone.getCallForwardingOption(reason
    [all...]
CdmaDisplayInfo.java 17 package com.android.phone;
HfaLogic.java 17 package com.android.phone;
31 import com.android.internal.telephony.Phone;
136 final Phone phone = PhoneGlobals.getInstance().getPhone(); local
137 phone.registerForServiceStateChanged(mHandler, SERVICE_STATE_CHANGED, null);
140 phone.setRadioPower(false);
141 onServiceStateChange(phone.getServiceState());
146 final Phone phone = PhoneGlobals.getInstance().getPhone(); local
153 phone.setRadioPower(true)
    [all...]
HfaService.java 17 package com.android.phone;
PhoneApp.java 17 package com.android.phone;
26 * Top-level Application class for the Phone app.
39 // global phone state.
PhoneSearchIndexablesProvider.java 17 package com.android.phone;
61 ref[COLUMN_INDEX_XML_RES_INTENT_TARGET_PACKAGE] = "com.android.phone";
TelephonyDebugService.java 17 package com.android.phone;
CdmaVoicePrivacyCheckBoxPreference.java 17 package com.android.phone;
19 import com.android.internal.telephony.Phone;
33 Phone phone; field in class:CdmaVoicePrivacyCheckBoxPreference
39 phone = PhoneGlobals.getPhone();
40 phone.getEnhancedVoicePrivacy(mHandler.obtainMessage(MyHandler.MESSAGE_GET_VP));
56 phone.enableEnhancedVoicePrivacy(isChecked(),
102 phone.getEnhancedVoicePrivacy(obtainMessage(MESSAGE_GET_VP));
InCallScreenShowActivation.java 17 package com.android.phone;
30 import com.android.internal.telephony.Phone;
34 * Invisible activity that handles the com.android.phone.PERFORM_CDMA_PROVISIONING intent.
64 Phone phone = app.getPhone(); local
65 if (!TelephonyCapabilities.supportsOtasp(phone)) {
161 * On devices that provide a phone initialization wizard (such as Google Setup Wizard),
SpecialCharSequenceMgr.java 17 package com.android.phone;
29 import com.android.internal.telephony.Phone;
39 * that are handled specially by the Phone app.
89 * which is still in the Phone App.
135 // your phone, and need to change the PIN! The only way to do
170 // if the phone is keyguard-restricted, then just ignore this
172 // exposed unless the phone is unlocked, and this code can be
184 intent.setClassName("com.android.phone",
185 "com.android.phone.SimContacts");
204 boolean isMMIHandled = app.phone.handlePinMmi(input)
232 Phone phone = PhoneGlobals.getPhone(); local
    [all...]
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
133 // Dtmf tone type setting value for CDMA phone
EmergencyCallHelper.java 17 package com.android.phone;
21 import com.android.internal.telephony.Phone;
199 // - STATE_EMERGENCY_ONLY // Phone is locked; only emergency numbers are allowed
270 if (DBG) log("onRetryTimeout(): phone state " + phoneState
477 // twice. (We need this because Phone.registerForServiceStateChanged()
479 Phone phone = mCM.getDefaultPhone(); local
480 phone.unregisterForServiceStateChanged(this); // Safe even if not currently registered
481 phone.registerForServiceStateChanged(this, SERVICE_STATE_CHANGED, null);
486 Phone phone = mCM.getDefaultPhone() local
    [all...]
FakePhoneActivity.java 17 package com.android.phone;
31 * A simple activity that presents you with a UI for faking incoming phone operations.
67 Log.e("Phone", "SimulatedRadioControl not available, abort!");
  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyGlobals.java 21 import com.android.internal.telephony.Phone;
29 * app - running as the default user. {@link com.android.phone.PhoneApp} determines whether or not
59 Phone phone = PhoneFactory.getDefaultPhone(); local
60 if (phone != null) {
61 mTtyManager = new TtyManager(mContext, phone);
GsmConference.java 26 import com.android.internal.telephony.Phone;
83 Phone phone = ((TelephonyConnection) connection).getPhone(); local
84 if (phone != null) {
85 phone.conference();
  /packages/services/Telephony/tests/src/com/android/phone/
CnapTest.java 18 package com.android.phone;
24 import com.android.phone.PhoneUtils;
36 // TODO: This string should be loaded from the phone package and
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CallManager.java 46 * and control calls. It implements Phone interface.
91 private final ArrayList<Phone> mPhones;
106 private final HashMap<Phone, CallManagerHandler> mHandlerMap = new HashMap<>();
108 // default phone as the first phone registered, which is PhoneBase obj
109 private Phone mDefaultPhone;
181 mPhones = new ArrayList<Phone>();
199 * @param phone a Phone object
200 * @return the corresponding PhoneBase obj in Phone if Phon
368 Phone phone = null; local
381 Phone phone = null; local
1794 Phone phone = getPhone(subId); local
1871 Phone phone = getPhone(subId); local
1909 Phone phone = getPhone(subId); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
DataConnectionStats.java 54 TelephonyManager phone = local
56 phone.listen(mPhoneStateListener,
  /packages/services/Telephony/tests/src/com/android/phone/tests/
CallDialTest.java 17 package com.android.phone.tests;
113 // Get a phone number or SIP address from the EditText widget
153 // Get a phone number from the EditText widget
158 ITelephony phone = ITelephony.Stub.asInterface(ServiceManager.checkService("phone")); local
159 log("- phone: " + phone);
161 phone.call(getPackageName(), number);
171 // Get a phone number from the EditText widget
176 ITelephony phone = ITelephony.Stub.asInterface(ServiceManager.checkService("phone")) local
    [all...]
  /packages/apps/PhoneCommon/src/com/android/phone/common/
CallLogAsync.java 17 package com.android.phone.common;
  /packages/apps/PhoneCommon/src/com/android/phone/common/dialpad/
DialpadTextView.java 17 package com.android.phone.common.dialpad;
  /packages/apps/PhoneCommon/src/com/android/phone/common/util/
SettingsUtil.java 17 package com.android.phone.common.util;
33 import com.android.phone.common.R;
78 // For voicemail notifications, we use the value saved in Phone's shared preferences.
  /packages/apps/PhoneCommon/src/com/android/phone/common/widget/
ResizingTextEditText.java 17 package com.android.phone.common.widget;
24 import com.android.phone.common.R;
25 import com.android.phone.common.util.ViewUtil;
ResizingTextTextView.java 17 package com.android.phone.common.widget;
24 import com.android.phone.common.R;
25 import com.android.phone.common.util.ViewUtil;

Completed in 427 milliseconds

12 3 4 5 6 7 8 9