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

12

/frameworks/base/core/java/android/widget/
H A DAnalogClock.java191 final Drawable dial = mDial;
192 int w = dial.getIntrinsicWidth();
193 int h = dial.getIntrinsicHeight();
206 dial.setBounds(x - (w / 2), y - (h / 2), x + (w / 2), y + (h / 2));
208 dial.draw(canvas);
/frameworks/base/core/java/android/bluetooth/
H A DIBluetoothHeadsetClient.aidl56 boolean dial(in BluetoothDevice device, String number);
H A DBluetoothHeadsetClient.java920 public boolean dial(BluetoothDevice device, String number) { method in class:BluetoothHeadsetClient
921 if (DBG) log("dial()");
925 return mService.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.java259 public synchronized Connection dial(String dialString, int clirMode, UUSInfo uusInfo, method in class:GsmCdmaCallTracker
266 throw new CallStateException("cannot dial in current state");
277 // but the dial might fail before this happens
299 throw new CallStateException("cannot dial in current state");
319 mCi.dial(mPendingMO.getAddress(), clirMode, uusInfo, obtainCompleteMessage());
370 private Connection dial(String dialString, int clirMode) throws CallStateException { method in class:GsmCdmaCallTracker
375 throw new CallStateException("cannot dial in current state");
435 mCi.dial(mPendingMO.getAddress(), clirMode, obtainCompleteMessage());
479 public Connection dial(String dialString) throws CallStateException { method in class:GsmCdmaCallTracker
481 return dial(dialStrin
488 public Connection dial(String dialString, UUSInfo uusInfo, Bundle intentExtras) method in class:GsmCdmaCallTracker
494 private Connection dial(String dialString, int clirMode, Bundle intentExtras) method in class:GsmCdmaCallTracker
[all...]
H A DPhoneInternalInterface.java411 * @param dialString The dial string.
418 Connection dial(String dialString, int videoState) throws CallStateException; method in interface:PhoneInternalInterface
427 * encapsulate all dial arguments and decrease scaffolding headache.
429 * @param dialString The dial string.
438 Connection dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) method in interface:PhoneInternalInterface
443 * without SEND (so <code>dial</code> is not appropriate).
H A DGsmCdmaPhone.java1049 public Connection dial(String dialString, int videoState) throws CallStateException { method in class:GsmCdmaPhone
1050 return dial(dialString, null, videoState, null);
1054 public Connection dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) method in class:GsmCdmaPhone
1108 return imsPhone.dial(dialString, uusInfo, videoState, intentExtras);
1122 throw new CallStateException("cannot dial in current state");
1154 return mCT.dial(newDialString, uusInfo, intentExtras);
1156 return mCT.dial(mmi.mDialingNumber, mmi.getCLIRMode(), uusInfo, intentExtras);
1170 return mCT.dial(newDialString);
2811 * This function extracts the system selection code from the dial string.
2834 * the dial strin
[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
1710 * a post-dial characte
[all...]
H A DCommandsInterface.java52 // Used as parameter to dial() and setCLIR() below
822 void dial (String address, int clirMode, Message result); method in interface:CommandsInterface
835 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.java79 /* Make sure radio state is power on before dial.
101 mCTUT.dial(mDialString);
112 verify(mSimulatedCommandsVerifier).dial(eq(PhoneNumberUtils.
211 mCTUT.dial(mDialString);
H A DGsmCdmaPhoneTest.java295 Connection connection = mPhoneUT.dial("1234567890", 0);
296 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);
877 void dial() throw method in class:SipPhone.SipConnection
[all...]
H A DSipCommandInterface.java95 public void dial(String address, int clirMode, Message result) { method in class:SipCommandInterface
99 public void dial(String address, int clirMode, UUSInfo uusInfo, method in class:SipCommandInterface
H A DSipPhoneBase.java70 public Connection dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) method in class:SipPhoneBase
73 return dial(dialString, videoState);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DITelephony.aidl55 void dial(String number);
266 * without SEND (so <code>dial</code> is not appropriate).
275 * without SEND (so <code>dial</code> is not appropriate) for
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java96 public void dial(String address, int clirMode, Message result) { method in class:ImsPhoneCommandInterface
100 public void dial(String address, int clirMode, UUSInfo uusInfo, method in class:ImsPhoneCommandInterface
H A DImsPhone.java542 dial(String dialString, int videoState) throws CallStateException { method in class:ImsPhone
548 dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) method in class:ImsPhone
565 return mCT.dial(dialString, videoState, intentExtras);
576 return mCT.dial(dialString, videoState, intentExtras);
578 return mCT.dial(mmi.getDialingNumber(), mmi.getCLIRMode(), videoState, intentExtras);
H A DImsPhoneCallTracker.java428 public Connection dial(String dialString, int videoState, Bundle intentExtras) throws method in class:ImsPhoneCallTracker
432 return dial(dialString, oirMode, videoState, intentExtras);
439 dial(String dialString, int clirMode, int videoState, Bundle intentExtras) method in class:ImsPhoneCallTracker
444 if (DBG) log("dial clirMode=" + clirMode);
454 throw new CallStateException("cannot dial in current state");
462 // calls, dial as an audio-only call.
465 loge("dial: carrier does not support video emergency calls; downgrade to audio-only");
477 throw new CallStateException("cannot dial in current state");
499 throw new CallStateException("cannot dial in current state");
1688 // we can dial anothe
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
H A DImsPhoneCallTrackerTest.java337 mCTUT.dial("+17005554141", ImsCallProfile.CALL_TYPE_VOICE, null);
362 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/test/
H A DSimulatedCommands.java505 public void dial (String address, int clirMode, Message result) { method in class:SimulatedCommands
506 SimulatedCommandsVerifier.getInstance().dial(address, clirMode, result);
524 public void dial(String address, int clirMode, UUSInfo uusInfo, Message result) { method in class:SimulatedCommands
525 SimulatedCommandsVerifier.getInstance().dial(address, clirMode, uusInfo, result);
H A DSimulatedCommandsVerifier.java663 public void dial(String address, int clirMode, Message result) { method in class:SimulatedCommandsVerifier
668 public void dial(String address, int clirMode, UUSInfo uusInfo, Message result) { method in class:SimulatedCommandsVerifier
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DPhoneMock.java1146 public Connection dial(String dialString, int videoState) throws CallStateException { method in class:PhoneMock
1150 public Connection dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) method in class:PhoneMock

Completed in 5596 milliseconds

12