Searched refs:dial (Results 1 - 25 of 28) sorted by relevance

12

/frameworks/base/core/java/android/widget/
H A DAnalogClock.java190 final Drawable dial = mDial;
191 int w = dial.getIntrinsicWidth();
192 int h = dial.getIntrinsicHeight();
205 dial.setBounds(x - (w / 2), y - (h / 2), x + (w / 2), y + (h / 2));
207 dial.draw(canvas);
/frameworks/base/core/java/android/bluetooth/
H A DIBluetoothHeadsetClient.aidl52 BluetoothHeadsetClientCall dial(in BluetoothDevice device, String number);
H A DBluetoothHeadsetClient.java805 * @param call Handle of call obtained in {@link dial()} or obtained via
902 public BluetoothHeadsetClientCall dial(BluetoothDevice device, String number) { method in class:BluetoothHeadsetClient
903 if (DBG) log("dial()");
907 return service.dial(device, number);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DGSMPhoneTest.java.broken161 mGSMPhone.dial("+13125551212");
649 mGSMPhone.dial("+13125551212");
771 Connection cn = mGSMPhone.dial("+13125551212");
798 mGSMPhone.dial("+13125551212");
817 mGSMPhone.dial("+13125551212");
847 cn = mGSMPhone.dial("+13125551212");
864 mGSMPhone.dial("+13125551212");
882 mGSMPhone.dial("+13125551212");
947 mGSMPhone.dial("+13125551212");
1054 mGSMPhone.dial("
[all...]
H A DUsimDataDownloadCommands.java.broken234 public void dial(String address, int clirMode, Message result) {
238 public void dial(String address, int clirMode, UUSInfo uusInfo, Message result) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DGsmCdmaCallTracker.java269 public synchronized Connection dial(String dialString, int clirMode, UUSInfo uusInfo, method in class:GsmCdmaCallTracker
276 throw new CallStateException("cannot dial in current state");
287 // but the dial might fail before this happens
309 throw new CallStateException("cannot dial in current state");
331 mCi.dial(mPendingMO.getAddress(), clirMode, uusInfo, obtainCompleteMessage());
382 private Connection dial(String dialString, int clirMode) throws CallStateException { method in class:GsmCdmaCallTracker
387 throw new CallStateException("cannot dial in current state");
446 mCi.dial(mPendingMO.getAddress(), clirMode, obtainCompleteMessage());
498 public Connection dial(String dialString) throws CallStateException { method in class:GsmCdmaCallTracker
500 return dial(dialStrin
507 public Connection dial(String dialString, UUSInfo uusInfo, Bundle intentExtras) method in class:GsmCdmaCallTracker
513 private Connection dial(String dialString, int clirMode, Bundle intentExtras) method in class:GsmCdmaCallTracker
[all...]
H A DPhoneInternalInterface.java402 * @param dialString The dial string.
409 Connection dial(String dialString, int videoState) throws CallStateException; method in interface:PhoneInternalInterface
418 * encapsulate all dial arguments and decrease scaffolding headache.
420 * @param dialString The dial string.
429 Connection dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) method in interface:PhoneInternalInterface
434 * without SEND (so <code>dial</code> is not appropriate).
H A DGsmCdmaPhone.java1047 public Connection dial(String dialString, int videoState) throws CallStateException { method in class:GsmCdmaPhone
1048 return dial(dialString, null, videoState, null);
1052 public Connection dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) method in class:GsmCdmaPhone
1106 return imsPhone.dial(dialString, uusInfo, videoState, intentExtras);
1125 throw new CallStateException("cannot dial in current state");
1127 // Check non-emergency voice CS call - shouldn't dial when POWER_OFF
1133 "cannot dial voice call in airplane mode");
1136 // Allow dial only if either CS is camped on any RAT (or) PS is in LTE service.
1145 "cannot dial voice call in out of service");
1157 * @return {@code true} if the user should be informed of an attempt to dial a
[all...]
H A DCallManager.java52 * 1. Call control and operation, such as dial() and hangup()
916 public Connection dial(Phone phone, String dialString, int videoState) method in class:CallManager
922 Rlog.d(LOG_TAG, " dial(" + phone + ", "+ dialString + ")" +
937 throw new CallStateException("cannot dial in current state");
967 result = phone.dial(dialString, videoState);
970 Rlog.d(LOG_TAG, "End dial(" + phone + ", "+ dialString + ")");
987 public Connection dial(Phone phone, String dialString, UUSInfo uusInfo, int videoState) method in class:CallManager
989 return phone.dial(dialString, uusInfo, videoState, null);
1468 * Example: If Phone.dial is called with "*#31#", then the app will
1711 * a post-dial characte
[all...]
H A DCommandsInterface.java54 // Used as parameter to dial() and setCLIR() below
828 void dial (String address, int clirMode, Message result); method in interface:CommandsInterface
841 void dial(String address, int clirMode, UUSInfo uusInfo, Message result); method in interface:CommandsInterface
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DCallManagerTest.java143 //verify can dial and dial function of the phone is being triggered
144 CallManager.getInstance().dial(mPhone,
148 verify(mPhone, times(1)).dial(mCaptorString.capture(), mCaptorInt.capture());
162 //verify can dial and dial function of the phone is being triggered
285 /* try dial with non-idle foreground call and background call */
286 CallManager.getInstance().dial(mPhone,
291 verify(mPhone, times(1)).dial(mCaptorString.capture(), mCaptorInt.capture());
H A DGsmCdmaCallTrackerTest.java83 /* Make sure radio state is power on before dial.
105 mCTUT.dial(mDialString);
116 verify(mSimulatedCommandsVerifier).dial(eq(PhoneNumberUtils.
220 mCTUT.dial(mDialString);
H A DGsmCdmaPhoneTest.java301 Connection connection = mPhoneUT.dial("1234567890", 0);
302 verify(mCT).dial("1234567890", null, null);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java186 public Connection dial(String dialString, int videoState) throws CallStateException { method in class:SipPhone
198 throw new CallStateException("dialInternal: cannot dial in current state");
205 throw new CallStateException("cannot dial in current state");
210 Connection c = mForegroundCall.dial(dialString);
214 throw new CallStateException("dial error: " + e);
494 Connection dial(String originalNumber) throws SipException { method in class:SipPhone.SipCall
495 if (SC_DBG) log("dial: num=" + (SC_VDBG ? originalNumber : "xxx"));
508 c.dial();
513 throw new SipException("dial", e);
878 void dial() throw method in class:SipPhone.SipConnection
[all...]
H A DSipPhoneBase.java73 public Connection dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) method in class:SipPhoneBase
76 return dial(dialString, videoState);
H A DSipCommandInterface.java97 public void dial(String address, int clirMode, Message result) { method in class:SipCommandInterface
101 public void dial(String address, int clirMode, UUSInfo uusInfo, method in class:SipCommandInterface
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
H A DImsPhoneCallTrackerTest.java373 * Ensures that the dial method will perform a shared preferences lookup using the correct
387 mCTUT.dial("+17005554141", VideoProfile.STATE_AUDIO_ONLY, null);
398 * Ensures for an emergency call that the dial method will default the CLIR to
417 mCTUT.dial("+17005554141", VideoProfile.STATE_AUDIO_ONLY, null);
444 mCTUT.dial("+17005554141", ImsCallProfile.CALL_TYPE_VOICE, null);
471 mCTUT.dial("+17005554141", ImsCallProfile.CALL_TYPE_VOICE, null);
551 mCTUT.dial("+17005554141", ImsCallProfile.CALL_TYPE_VOICE, null);
H A DImsPhoneTest.java157 // dial string length > 1
176 // dial string length > 2
179 // dial string length > 1
203 // dial string length > 2
206 // dial string length > 1
229 // dial string length > 1
232 // dial string length == 1
242 // dial string length > 1
245 // dial string length == 1
259 // dial strin
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java98 public void dial(String address, int clirMode, Message result) { method in class:ImsPhoneCommandInterface
102 public void dial(String address, int clirMode, UUSInfo uusInfo, method in class:ImsPhoneCommandInterface
H A DImsPhone.java602 dial(String dialString, int videoState) throws CallStateException { method in class:ImsPhone
608 dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) method in class:ImsPhone
631 return mCT.dial(dialString, videoState, intentExtras);
642 return mCT.dial(dialString, videoState, intentExtras);
644 return mCT.dial(mmi.getDialingNumber(), mmi.getCLIRMode(), videoState, intentExtras);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java515 public void dial (String address, int clirMode, Message result) { method in class:SimulatedCommands
516 SimulatedCommandsVerifier.getInstance().dial(address, clirMode, result);
534 public void dial(String address, int clirMode, UUSInfo uusInfo, Message result) { method in class:SimulatedCommands
535 SimulatedCommandsVerifier.getInstance().dial(address, clirMode, uusInfo, result);
H A DSimulatedCommandsVerifier.java665 public void dial(String address, int clirMode, Message result) { method in class:SimulatedCommandsVerifier
670 public void dial(String address, int clirMode, UUSInfo uusInfo, Message result) { method in class:SimulatedCommandsVerifier
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DITelephony.aidl64 void dial(String number);
275 * without SEND (so <code>dial</code> is not appropriate).
294 * without SEND (so <code>dial</code> is not appropriate) for
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DPhoneMock.java1149 public Connection dial(String dialString, int videoState) throws CallStateException { method in class:PhoneMock
1153 public Connection dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) method in class:PhoneMock
/frameworks/base/core/java/android/view/textclassifier/
H A DTextClassifierImpl.java678 return context.getString(com.android.internal.R.string.dial);

Completed in 828 milliseconds

12