Lines Matching full:phone
40 * The dialer tab's title is 'phone', a more common name (see strings.xml).
104 Intent intent = new Intent("com.android.phone.action.RECENT_CALLS");
115 Intent intent = new Intent("com.android.phone.action.TOUCH_DIALER");
179 // Load the last tab used to make a phone call. default to the dialer in
216 /** Returns true if the given intent contains a phone number to populate the dialer with */
316 * @return true if the phone is "in use", meaning that at least one line
322 ITelephony phone = ITelephony.Stub.asInterface(ServiceManager.checkService("phone"));
323 if (phone != null) phoneInUse = !phone.isIdle();
325 Log.w(TAG, "phone.isIdle() failed", e);