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

1 23 4 5 6 7 8 91011>>

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
TickerView.java 17 package com.android.systemui.statusbar.phone;
VelocityTrackerFactory.java 17 package com.android.systemui.statusbar.phone;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsStorageMonitor.java 50 /** Context from phone object passed to constructor. */
72 * @param phone the Phone to use
74 public SmsStorageMonitor(PhoneBase phone) {
75 mPhone = phone;
76 mContext = phone.getContext();
77 mCi = phone.mCi;
99 * Handles events coming from the phone stack. Overridden from handler.
ImsSMSDispatcher.java 54 public ImsSMSDispatcher(PhoneBase phone, SmsStorageMonitor storageMonitor,
56 super(phone, usageMonitor, null);
61 mCdmaDispatcher = new CdmaSMSDispatcher(phone, usageMonitor, this);
62 mGsmInboundSmsHandler = GsmInboundSmsHandler.makeInboundSmsHandler(phone.getContext(),
63 storageMonitor, phone);
64 mCdmaInboundSmsHandler = CdmaInboundSmsHandler.makeInboundSmsHandler(phone.getContext(),
65 storageMonitor, phone, (CdmaSMSDispatcher) mCdmaDispatcher);
66 mGsmDispatcher = new GsmSMSDispatcher(phone, usageMonitor, this, mGsmInboundSmsHandler);
67 Thread broadcastThread = new Thread(new SmsBroadcastUndelivered(phone.getContext(),
75 /* Updates the phone object when there is a change *
    [all...]
  /packages/services/Telephony/src/com/android/phone/
GsmUmtsCallOptions.java 17 package com.android.phone;
25 import com.android.internal.telephony.Phone;
TelephonyDebugService.java 17 package com.android.phone;
PhoneUtils.java 17 package com.android.phone;
54 import com.android.internal.telephony.Phone;
59 import com.android.phone.CallGatewayManager.RawGatewayInfo;
65 * Misc utilities for the Phone app.
85 // State of the Phone's audio modes
88 static final int AUDIO_IDLE = 0; /** audio behaviour at phone idle */
102 /** Phone state changed event*/
108 /** poll phone DISCONNECTING status interval */
111 /** poll phone DISCONNECTING status times limit */
169 * Register the ConnectionHandler with the phone, to receive connection event
199 final Phone phone = ringingCall.getPhone(); local
2022 Phone phone = cm.getActiveFgCall().getPhone(); local
2241 Phone phone = getSipPhoneFromUri(cm, primarySipUri); local
    [all...]
PhoneGlobals.java 17 package com.android.phone;
58 import com.android.internal.telephony.Phone;
63 import com.android.phone.common.CallLogAsync;
68 * phone process.
74 * Phone app-wide debug level:
80 * Most individual classes in the phone app have a local DBG constant,
109 // the individual Activities of the Phone UI.
129 "com.android.phone.ACTION_HANG_UP_ONGOING_CALL";
140 Phone phone; field in class:PhoneGlobals
    [all...]
CallLogger.java 17 package com.android.phone;
21 import com.android.internal.telephony.Phone;
24 import com.android.phone.common.CallLogAsync;
61 final Phone phone = c.getCall().getPhone(); local
78 final boolean isOtaspNumber = TelephonyCapabilities.supportsOtasp(phone)
79 && phone.isOtaSpNumber(number);
118 * @param conn The phone connection.
136 * Retrieve the phone number from the caller info or the connection.
142 * If CallerInfo is missing the phone number, get it from the connection
    [all...]
OtaStartupReceiver.java 17 package com.android.phone;
33 import com.android.internal.telephony.Phone;
40 * Handles OTA Start procedure at phone power up. At phone power up, if phone is not OTA
41 * provisioned (check MIN value of the Phone) and 'device_provisioned' is not set,
42 * OTA Activation screen is shown that helps user activate the phone
88 // - STATE_EMERGENCY_ONLY // Phone is locked; only emergency numbers are allowed
95 Phone phone = PhoneGlobals.getPhone()
142 Phone phone = PhoneGlobals.getPhone(); local
    [all...]
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...]
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...]
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...]
  /packages/services/Telephony/src/com/android/services/telephony/
TelecomAccountRegistry.java 35 import com.android.internal.telephony.Phone;
39 import com.android.phone.R;
63 // is not supported, i.e. SubscriptionManager.INVALID_SLOT_ID or the 5th SIM in a phone.
67 private final Phone mPhone;
71 AccountEntry(Phone phone, boolean isEmergency, boolean isDummy) {
72 mPhone = phone;
89 // Build the Phone account handle.
93 // Populate the phone account data.
147 // By default all SIM phone accounts can place emergency calls
    [all...]
GsmConference.java 26 import com.android.internal.telephony.Phone;
83 Phone phone = ((TelephonyConnection) connection).getPhone(); local
84 if (phone != null) {
85 phone.conference();
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
RuimPhoneBookInterfaceManager.java 36 public RuimPhoneBookInterfaceManager(CDMAPhone phone) {
37 super(phone);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SimPhoneBookInterfaceManager.java 36 public SimPhoneBookInterfaceManager(GSMPhone phone) {
37 super(phone);
GsmCellBroadcastHandler.java 45 protected GsmCellBroadcastHandler(Context context, PhoneBase phone) {
46 super("GsmCellBroadcastHandler", context, phone);
47 phone.mCi.setOnNewGsmBroadcastSms(getHandler(), EVENT_NEW_SMS_MESSAGE, null);
62 PhoneBase phone) {
63 GsmCellBroadcastHandler handler = new GsmCellBroadcastHandler(context, phone);
  /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/bluetooth/src/android/bluetooth/client/pbap/
BluetoothPbapCard.java 102 for (PhoneData phone : phones) {
104 jsonPhone.put("type", phone.getType());
105 jsonPhone.put("number", phone.getNumber());
106 jsonPhone.put("label", phone.getLabel());
107 jsonPhone.put("is_primary", phone.isPrimary());
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
BluetoothMapbMessageTest.java 82 String[] phone = {"+4512345678", "+4587654321"}; local
84 msg.addOriginator("Bonde,Casper", "Casper Bonde", phone, email);
85 msg.addRecipient("", "Jens Hansen", phone, email);
105 * - The phone number type is changed from private 91 to international 81
183 String[] phone = {"00498912345678", "+4587654321"}; local
185 msg.addOriginator("Bonde,Casper", "Casper Bonde", phone, email);
186 msg.addRecipient("", "Jens Hansen", phone, email);
213 * - The phone number type is changed from private 91 to international 81
253 String[] phone = {"00498912345678", "+4587654321"}; local
255 msg.addOriginator("Bonde,Casper", "Casper Bonde", phone, email)
461 String[] phone = {"+4512345678", "+4587654321"}; local
    [all...]
  /external/protobuf/examples/
add_person.py 18 number = raw_input("Enter a phone number (or leave blank to finish): ")
22 phone_number = person.phone.add()
25 type = raw_input("Is this a mobile, home, or work phone? ")
33 print "Unknown phone type; leaving as default value."
list_people.py 16 for phone_number in person.phone:
18 print " Mobile phone #:",
20 print " Home phone #:",
22 print " Work phone #:",
  /external/srec/config/en.us/dictionary/
cmu2nuance.cpp 33 static const char* xlate(const char* phone, const char* cmu, const char* nuance) {
35 if (strncmp(phone, cmu, ncmu) || !isspace(phone[ncmu])) return NULL;
37 return phone + strlen(cmu);
  /external/srec/srec/include/
hmm_desc.h 51 unsigned char phone; /* Internal phoneme symbol */ member in struct:__anon34827
52 unsigned char pr_code[4]; /* Printable phone code */

Completed in 757 milliseconds

1 23 4 5 6 7 8 91011>>