HomeSort by relevance Sort by last modified time
    Searched refs:phone (Results 101 - 125 of 593) sorted by null

1 2 3 45 6 7 8 91011>>

  /packages/apps/Messaging/tools/messagegen/
fillsms 36 # Generate 2 threads each with 10 SMSes and 10 MMSes on device with phone
180 # Get random phone number
185 phone="+1$AREA_CODE$middle$last"
186 echo $phone
193 add_sql "insert into canonical_addresses (_id,address) values ($addr_id,'$phone');"
207 add_sql "insert into sms (_id,thread_id,address,person,date,status,type,body,read,seen) values ($message_id, $thread_id, '$phone', '$phone', $date, -1, $message_type, '$message', 1, 1);"
241 add_sql "insert into addr (_id,msg_id,address,type,charset) values ($id_1, $message_id, '$phone', 137, 106);"
245 add_sql "insert into addr (_id,msg_id,address,type,charset) values ($id_2, $message_id, '$phone', 151, 106);"
  /packages/services/Telephony/src/com/android/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...]
CLIRListPreference.java 1 package com.android.phone;
3 import static com.android.phone.TimeConsumingPreferenceActivity.RESPONSE_ERROR;
6 import com.android.internal.telephony.Phone;
26 private Phone mPhone;
51 TimeConsumingPreferenceListener listener, boolean skipReading, Phone phone) {
52 mPhone = phone;
  /frameworks/base/telecomm/java/android/telecom/
InCallService.java 42 * phone calls. Telecom binds to this service while there exists a live (active or incoming) call,
44 * first be set as the default phone app (See {@link TelecomManager#getDefaultDialerPackage()})
93 mPhone = new Phone(new InCallAdapter((IInCallAdapter) msg.obj), callingPackage,
228 private Phone.Listener mPhoneListener = new Phone.Listener() {
231 public void onAudioStateChanged(Phone phone, AudioState audioState) {
235 public void onCallAudioStateChanged(Phone phone, CallAudioState callAudioState) {
241 public void onBringToForeground(Phone phone, boolean showDialpad)
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyConnection.java 47 import com.android.internal.telephony.Phone;
53 import com.android.phone.ImsUtil;
54 import com.android.phone.PhoneGlobals;
55 import com.android.phone.PhoneUtils;
56 import com.android.phone.R;
152 Phone phone = getPhone();
154 + (phone != null ? Integer.toString(phone.getPhoneId())
366 * Handles the phone exiting ECM mode by updating the connection capabilities. During a
671 Phone phone = mOriginalConnection.getCall().getPhone(); local
784 Phone phone = getPhone(); local
968 Phone phone = getPhone(); local
1033 Phone phone = getPhone(); local
1049 Phone phone = getPhone(); local
1147 Phone phone = getPhone(); local
1749 Phone phone = getPhone(); local
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/
AutoAddTrackerTest.java 17 import static com.android.systemui.statusbar.phone.AutoTileManager.INVERSION;
18 import static com.android.systemui.statusbar.phone.AutoTileManager.SAVER;
19 import static com.android.systemui.statusbar.phone.AutoTileManager.WORK;
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
StatusBarIconControllerTest.java 15 package com.android.systemui.statusbar.phone;
29 import com.android.systemui.statusbar.phone.StatusBarIconController.DarkIconManager;
30 import com.android.systemui.statusbar.phone.StatusBarIconController.IconManager;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneFactory.java 67 static private Phone[] sPhones = null;
68 static private Phone sPhone = null;
146 /* In case of multi SIM mode two instances of Phone, RIL are created,
158 sPhones = new Phone[numPhones];
179 Phone phone = null; local
182 phone = new GsmCdmaPhone(context,
187 phone = new GsmCdmaPhone(context,
192 Rlog.i(LOG_TAG, "Creating Phone with type = " + phoneType + " sub = " + i);
194 sPhones[i] = phone;
268 Phone phone; local
417 Phone phone = phones[i]; local
    [all...]
RatRatcheter.java 50 private final Phone mPhone;
53 public RatRatcheter(Phone phone) {
54 mPhone = phone;
58 phone.getContext().registerReceiverAsUser(mConfigChangedReceiver, UserHandle.ALL,
WakeLockStateMachine.java 53 protected Phone mPhone;
64 protected WakeLockStateMachine(String debugTag, Context context, Phone phone) {
68 mPhone = phone;
80 public void updatePhoneObject(Phone phone) {
81 sendMessage(EVENT_UPDATE_PHONE_OBJECT, phone);
116 mPhone = (Phone) msg.obj;
117 log("updatePhoneObject: phone=" + mPhone.getClass().getSimpleName());
  /packages/apps/Dialer/java/com/android/voicemail/impl/sync/
SyncOneTask.java 49 public static void start(Context context, PhoneAccountHandle phone, Voicemail voicemail) {
50 Intent intent = BaseTask.createIntent(context, SyncOneTask.class, phone);
51 intent.putExtra(EXTRA_PHONE_ACCOUNT_HANDLE, phone);
  /packages/services/Telephony/src/com/android/phone/settings/
TtyModeListPreference.java 17 package com.android.phone.settings;
29 import com.android.phone.PhoneGlobals;
30 import com.android.phone.R;
  /packages/services/Telephony/src/com/android/phone/settings/fdn/
GetPin2Screen.java 17 package com.android.phone.settings.fdn;
35 import com.android.phone.PhoneGlobals;
36 import com.android.phone.R;
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
PollingAction.java 198 private String getCompleteUri(String phone) {
199 phone = "tel:" + phone;
200 return phone;
  /external/protobuf/examples/
add_person.go 46 fmt.Print("Enter a phone number (or leave blank to finish): ")
47 phone, err := rd.ReadString('\n')
51 phone = strings.TrimSpace(phone)
52 if phone == "" {
61 Number: phone,
64 fmt.Print("Is this a mobile, home, or work phone? ")
80 fmt.Printf("Unknown phone type %q. Using default.\n", ptype)
add_person_test.go 46 t.Errorf("want %d phone numbers, got %d", len(want), len(got.Phones))
54 t.Errorf("want phone %q, got %q", *want[i], *got.Phones[i])
  /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/statusbar/phone/
NavBarButtonProvider.java 15 package com.android.systemui.plugins.statusbar.phone;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DozeScreenStatePreventingAdapter.java 22 import com.android.systemui.statusbar.phone.DozeParameters;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
CarNavigationBarView.java 25 import com.android.systemui.statusbar.phone.NavigationBarView;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
AppIconDragShadowBuilder.java 17 package com.android.systemui.statusbar.phone;
AppInfo.java 17 package com.android.systemui.statusbar.phone;
KeyguardIndicationTextView.java 17 package com.android.systemui.statusbar.phone;
PlatformVelocityTracker.java 17 package com.android.systemui.statusbar.phone;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsExternalConnection.java 23 import com.android.internal.telephony.Phone;
86 protected ImsExternalConnection(Phone phone, int callId, Uri address, boolean isPullable) {
87 super(phone.getPhoneType());
88 mContext = phone.getContext();
89 mCall = new ImsExternalCall(phone, this);
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
PhonebookEntry.java 79 public static class Phone {
85 if (!(o instanceof Phone)) {
89 Phone p = (Phone) o;
102 sb.append(" Phone: { number: ");
120 phones = new ArrayList<Phone>();
125 phones = new ArrayList<Phone>();
140 Phone phone = new Phone(); local
    [all...]

Completed in 1834 milliseconds

1 2 3 45 6 7 8 91011>>