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

12 3 4 5 6 7 8 91011>>

  /packages/services/Telephony/src/com/android/phone/
BluetoothManager.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));
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...]
CarrierLogo.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.
CallController.java 17 package com.android.phone;
20 import com.android.internal.telephony.Phone;
23 import com.android.phone.CallGatewayManager.RawGatewayInfo;
24 import com.android.phone.Constants.CallStatusCode;
39 * Phone app module in charge of "call control".
176 * (4) Here in CallController.placeCall() we read the phone number or SIP
232 Phone phone = mApp.mCM.getDefaultPhone(); local
233 if (TelephonyCapabilities.supportsOtasp(phone)) {
241 // phone app that we're dealing with a new connectio
299 Phone phone = null; local
    [all...]
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
RawContactDeltaTests.java 29 import android.provider.ContactsContract.CommonDataKinds.Phone;
74 final ContentValues phone = new ContentValues(); local
75 phone.put(Data._ID, phoneId);
76 phone.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
77 phone.put(Phone.NUMBER, TEST_PHONE_NUMBER_1);
78 phone.put(Phone.TYPE, Phone.TYPE_HOME)
107 final ContentValues phone = new ContentValues(); local
181 final ContentValues phone = new ContentValues(); local
221 final ContentValues phone = new ContentValues(); local
346 final ContentValues phone = new ContentValues(); local
    [all...]
  /external/chromium_org/components/autofill/core/browser/
autofill_type_unittest.cc 28 AutofillType phone(PHONE_HOME_NUMBER);
29 EXPECT_EQ(PHONE_HOME_NUMBER, phone.GetStorableType());
30 EXPECT_EQ(PHONE_HOME, phone.group());
70 AutofillType phone(HTML_TYPE_TEL, HTML_MODE_NONE);
71 EXPECT_EQ(PHONE_HOME_WHOLE_NUMBER, phone.GetStorableType());
72 EXPECT_EQ(PHONE_HOME, phone.group());
autofill_test_utils.h 73 const char* phone);
80 const char* phone);
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipConnectionService.java 111 // The ID used for SIP-based phone account is the SIP profile Uri. Use it to find
168 SipPhone phone = findPhoneForProfile(sipAudioCall.getLocalProfile()); local
169 if (phone == null) {
170 phone = createPhoneForProfile(sipAudioCall.getLocalProfile());
172 if (phone != null) {
173 com.android.internal.telephony.Connection originalConnection = phone.takeIncomingCall(
193 SipPhone phone = findPhoneForProfile(profile); local
194 if (phone == null) {
195 phone = createPhoneForProfile(profile);
197 if (phone != null)
239 SipPhone phone = ((SipConnection) connection).getPhone(); local
    [all...]
  /packages/services/Telephony/
Android.mk 3 # Build the Phone app which includes the emergency dialer. See Contacts
19 src/com/android/phone/EventLogTags.logtags \
20 src/com/android/phone/INetworkQueryService.aidl \
21 src/com/android/phone/INetworkQueryServiceCallback.aidl
26 --extra-packages com.android.phone.common \
  /external/nist-sip/java/gov/nist/javax/sip/parser/
URLParser.java 371 * Parser for the base phone number.
404 * Parser for the local phone #.
536 // JvB: Need to handle 'phone-context' specially
542 // Handle 'phone-context' specially, it may start with '+'
543 if ( pname.equalsIgnoreCase("phone-context")) {
566 * Parses the 'phone-context' parameter in tel: URLs
581 throw new ParseException( "Invalid phone-context:" + la , -1 );
583 return new NameValue( "phone-context", value, false );
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
TelephonyTester.java 29 * Telephony tester receives the following intents where {name} is the phone name
59 TelephonyTester(PhoneBase phone) {
60 mPhone = phone;
71 phone.getContext().registerReceiver(mIntentReceiver, filter, null, mPhone.getHandler());
PhoneFactory.java 118 preferredNetworkMode = Phone.NT_MODE_GLOBAL;
161 PhoneBase phone = null; local
164 phone = new GSMPhone(context,
167 phone = new CDMALTEPhone(context,
170 Rlog.i(LOG_TAG, "Creating Phone with type = " + phoneType + " sub = " + i);
172 sProxyPhones[i] = new PhoneProxy(phone);
177 // Set the default phone in base class.
206 public static Phone getCdmaPhone(int phoneId) {
207 Phone phone; local
217 Phone phone = new GSMPhone(sContext, sCommandsInterfaces[phoneId], local
233 Phone phone; local
265 Phone phone; local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcTesterDeactivateAll.java 68 DcTesterDeactivateAll(PhoneBase phone, DcController dcc, Handler handler) {
69 mPhone = phone;
81 phone.getContext().registerReceiver(sIntentReceiver, filter, null, handler);
DcTesterFailBringUpAll.java 77 DcTesterFailBringUpAll(PhoneBase phone, Handler handler) {
78 mPhone = phone;
91 phone.getContext().registerReceiver(mIntentReceiver, filter, null, handler);
  /packages/apps/PhoneCommon/src/com/android/phone/common/dialpad/
DigitsEditText.java 17 package com.android.phone.common.dialpad;
30 import com.android.phone.common.R;
31 import com.android.phone.common.widget.ResizingTextEditText;
  /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;
  /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...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaInboundSmsHandler.java 61 PhoneBase phone, CdmaSMSDispatcher smsDispatcher) {
62 super("CdmaInboundSmsHandler", context, storageMonitor, phone,
63 CellBroadcastHandler.makeCellBroadcastHandler(context, phone));
66 phone.mCi);
67 phone.mCi.setOnNewCdmaSms(getHandler(), EVENT_NEW_SMS, null);
86 SmsStorageMonitor storageMonitor, PhoneBase phone, CdmaSMSDispatcher smsDispatcher) {
88 phone, smsDispatcher);
214 * Called when the phone changes the default method updates mPhone
218 * @param phone
221 protected void onUpdatePhoneObject(PhoneBase phone) {
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
EmergencyCallHelper.java 30 import com.android.internal.telephony.Phone;
65 Phone phone = (Phone) args.arg1;
70 startSequenceInternal(phone, callback);
87 private Phone mPhone; // The phone that will attempt to place the call.
110 public void startTurnOnRadioSequence(Phone phone, Callback callback) {
114 args.arg1 = phone;
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List7.java 26 import android.provider.ContactsContract.CommonDataKinds.Phone;
43 Phone._ID,
44 Phone.TYPE,
45 Phone.LABEL,
46 Phone.NUMBER,
47 Phone.DISPLAY_NAME
58 mPhone = (TextView) findViewById(R.id.phone);
62 // This query will only return contacts with phone numbers
63 Cursor c = getContentResolver().query(Phone.CONTENT_URI,
64 PHONE_PROJECTION, Phone.NUMBER + " NOT NULL", null, null)
84 String phone = c.getString(COLUMN_PHONE_NUMBER); local
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
AudioModeProvider.java 22 import android.telecom.Phone;
38 private Phone mPhone;
40 private Phone.Listener mPhoneListener = new Phone.Listener() {
42 public void onAudioStateChanged(Phone phone, AudioState audioState) {
53 public void setPhone(Phone phone) {
54 mPhone = phone;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
BounceInterpolator.java 17 package com.android.systemui.statusbar.phone;

Completed in 294 milliseconds

12 3 4 5 6 7 8 91011>>