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

/frameworks/base/core/java/android/widget/
H A DAnalogClock.java179 final Drawable dial = mDial;
180 int w = dial.getIntrinsicWidth();
181 int h = dial.getIntrinsicHeight();
194 dial.setBounds(x - (w / 2), y - (h / 2), x + (w / 2), y + (h / 2));
196 dial.draw(canvas);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DITelephony.aidl39 void dial(String number);
179 * without SEND (so <code>dial</code> is not appropriate).
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DGSMPhoneTest.java159 mGSMPhone.dial("+13125551212");
647 mGSMPhone.dial("+13125551212");
769 Connection cn = mGSMPhone.dial("+13125551212");
796 mGSMPhone.dial("+13125551212");
815 mGSMPhone.dial("+13125551212");
845 cn = mGSMPhone.dial("+13125551212");
862 mGSMPhone.dial("+13125551212");
880 mGSMPhone.dial("+13125551212");
945 mGSMPhone.dial("+13125551212");
1052 mGSMPhone.dial("
[all...]
H A DUsimDataDownloadCommands.java234 public void dial(String address, int clirMode, Message result) { method in class:UsimDataDownloadCommands
238 public void dial(String address, int clirMode, UUSInfo uusInfo, Message result) { method in class:UsimDataDownloadCommands
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmCallTracker.java189 dial (String dialString, int clirMode, UUSInfo uusInfo) throws CallStateException { method in class:GsmCallTracker
194 throw new CallStateException("cannot dial in current state");
202 // but the dial might fail before this happens
216 throw new CallStateException("cannot dial in current state");
236 mCi.dial(mPendingMO.mAddress, clirMode, uusInfo, obtainCompleteMessage());
246 dial(String dialString) throws CallStateException { method in class:GsmCallTracker
247 return dial(dialString, CommandsInterface.CLIR_DEFAULT, null);
251 dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:GsmCallTracker
252 return dial(dialString, CommandsInterface.CLIR_DEFAULT, uusInfo);
256 dial(Strin method in class:GsmCallTracker
[all...]
H A DGSMPhone.java718 dial(String dialString) throws CallStateException { method in class:GSMPhone
719 return dial(dialString, null);
724 dial (String dialString, UUSInfo uusInfo) throws CallStateException { method in class:GSMPhone
741 return mCT.dial(newDialString, uusInfo);
743 return mCT.dial(mmi.mDialingNumber, mmi.getCLIRMode(), uusInfo);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaCallTracker.java185 dial (String dialString, int clirMode) throws CallStateException { method in class:CdmaCallTracker
190 throw new CallStateException("cannot dial in current state");
236 mCi.dial(mPendingMO.mAddress, clirMode, obtainCompleteMessage());
253 dial (String dialString) throws CallStateException { method in class:CdmaCallTracker
254 return dial(dialString, CommandsInterface.CLIR_DEFAULT);
1010 mCi.dial(mPendingMO.mAddress, mPendingCallClirMode, obtainCompleteMessage());
H A DCDMAPhone.java373 dial (String dialString) throws CallStateException { method in class:CDMAPhone
376 return mCT.dial(newDialString);
380 public Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:CDMAPhone
1363 * This function extracts the system selection code from the dial string.
1385 * the dial string "sysSelCodeInt' is the system selection code specified
1398 // Check if the selection code extracted from the dial string falls
1407 // If the carrier ota sp number schema is not correct, we still allow dial
1419 * The following function checks if a dial string is a carrier specified
1486 * isOTASPNumber: checks a given number against the IS-683A OTASP dial string and carrier
1487 * OTASP dial strin
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java181 public Connection dial(String dialString) throws CallStateException { method in class:SipPhone
193 throw new CallStateException("dialInternal: cannot dial in current state");
200 throw new CallStateException("cannot dial in current state");
205 Connection c = mForegroundCall.dial(dialString);
209 throw new CallStateException("dial error: " + e);
472 Connection dial(String originalNumber) throws SipException { method in class:SipPhone.SipCall
473 if (SC_DBG) log("dial: num=" + (SC_VDBG ? originalNumber : "xxx"));
486 c.dial();
491 throw new SipException("dial", e);
854 void dial() throw method in class:SipPhone.SipConnection
[all...]
H A DSipCommandInterface.java91 public void dial(String address, int clirMode, Message result) { method in class:SipCommandInterface
95 public void dial(String address, int clirMode, UUSInfo uusInfo, method in class:SipCommandInterface
H A DSipPhoneBase.java73 public Connection dial(String dialString, UUSInfo uusInfo) method in class:SipPhoneBase
76 return dial(dialString);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhone.java420 * Example: If Phone.dial is called with "*#31#", then the app will
765 Connection dial(String dialString) throws CallStateException; method in interface:Phone
778 Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException; method in interface:Phone
782 * without SEND (so <code>dial</code> is not appropriate).
1089 * a post-dial character on an outgoing call.<p>
1096 * Message.arg1 will be the post dial character being processed,
1105 * for the telephony system to continue playing the post-dial
1116 * post-dial DTMF sequence.<p>
1118 * Only one post dial character handler may be set. <p>
1470 * this decides if the dial numbe
[all...]
H A DPhoneProxy.java633 public Connection dial(String dialString) throws CallStateException { method in class:PhoneProxy
634 return mActivePhone.dial(dialString);
638 public Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:PhoneProxy
639 return mActivePhone.dial(dialString, uusInfo);
H A DCommandsInterface.java46 // Used as parameter to dial() and setCLIR() below
769 void dial (String address, int clirMode, Message result); method in interface:CommandsInterface
782 void dial(String address, int clirMode, UUSInfo uusInfo, Message result); method in interface:CommandsInterface
H A DCallManager.java49 * 1. Call control and operation, such as dial() and hangup()
206 * they have same phone APIs, such as dial(). The real implementation, for
742 public Connection dial(Phone phone, String dialString) throws CallStateException { method in class:CallManager
747 Rlog.d(LOG_TAG, " dial(" + basePhone + ", "+ dialString + ")");
752 throw new CallStateException("cannot dial in current state");
774 result = basePhone.dial(dialString);
777 Rlog.d(LOG_TAG, "End dial(" + basePhone + ", "+ dialString + ")");
794 public Connection dial(Phone phone, String dialString, UUSInfo uusInfo) throws CallStateException { method in class:CallManager
795 return phone.dial(dialString, uusInfo);
1216 * Example: If Phone.dial i
[all...]
H A DRIL.java840 dial (String address, int clirMode, Message result) { method in class:RIL
841 dial(address, clirMode, null, result);
846 dial(String address, int clirMode, UUSInfo uusInfo, Message result) { method in class:RIL
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java500 public void dial (String address, int clirMode, Message result) { method in class:SimulatedCommands
518 public void dial(String address, int clirMode, UUSInfo uusInfo, Message result) { method in class:SimulatedCommands

Completed in 321 milliseconds