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

/frameworks/base/telephony/java/com/android/internal/telephony/
H A DITelephony.aidl39 void dial(String number);
159 * without SEND (so <code>dial</code> is not appropriate).
/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/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.java233 public void dial(String address, int clirMode, Message result) { method in class:UsimDataDownloadCommands
237 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.java174 dial (String dialString, int clirMode, UUSInfo uusInfo) throws CallStateException { method in class:GsmCallTracker
179 throw new CallStateException("cannot dial in current state");
187 // but the dial might fail before this happens
201 throw new CallStateException("cannot dial in current state");
221 cm.dial(pendingMO.address, clirMode, uusInfo, obtainCompleteMessage());
231 dial(String dialString) throws CallStateException { method in class:GsmCallTracker
232 return dial(dialString, CommandsInterface.CLIR_DEFAULT, null);
236 dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:GsmCallTracker
237 return dial(dialString, CommandsInterface.CLIR_DEFAULT, uusInfo);
241 dial(Strin method in class:GsmCallTracker
[all...]
H A DGSMPhone.java695 dial(String dialString) throws CallStateException { method in class:GSMPhone
696 return dial(dialString, null);
700 dial (String dialString, UUSInfo uusInfo) throws CallStateException { method in class:GSMPhone
717 return mCT.dial(newDialString, uusInfo);
719 return mCT.dial(mmi.dialingNumber, mmi.getCLIRMode(), uusInfo);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java77 public void dial(String address, int clirMode, Message result) { method in class:SipCommandInterface
80 public void dial(String address, int clirMode, UUSInfo uusInfo, method in class:SipCommandInterface
H A DSipPhone.java158 public Connection dial(String dialString) throws CallStateException { method in class:SipPhone
169 throw new CallStateException("cannot dial in current state");
176 throw new CallStateException("cannot dial in current state");
181 Connection c = foregroundCall.dial(dialString);
184 Log.e(LOG_TAG, "dial()", e);
185 throw new CallStateException("dial error: " + e);
388 Connection dial(String originalNumber) throws SipException { method in class:SipPhone.SipCall
400 c.dial();
405 throw new SipException("dial", e);
738 void dial() throw method in class:SipPhone.SipConnection
[all...]
H A DSipPhoneBase.java70 public Connection dial(String dialString, UUSInfo uusInfo) method in class:SipPhoneBase
73 return dial(dialString);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaCallTracker.java186 dial (String dialString, int clirMode) throws CallStateException { method in class:CdmaCallTracker
191 throw new CallStateException("cannot dial in current state");
237 cm.dial(pendingMO.address, clirMode, obtainCompleteMessage());
254 dial (String dialString) throws CallStateException { method in class:CdmaCallTracker
255 return dial(dialString, CommandsInterface.CLIR_DEFAULT);
1021 cm.dial(pendingMO.address, pendingCallClirMode, obtainCompleteMessage());
H A DCDMAPhone.java360 dial (String dialString) throws CallStateException { method in class:CDMAPhone
363 return mCT.dial(newDialString);
366 public Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:CDMAPhone
1241 * This function extracts the system selection code from the dial string.
1263 * the dial string "sysSelCodeInt' is the system selection code specified
1276 // Check if the selection code extracted from the dial string falls
1285 // If the carrier ota sp number schema is not correct, we still allow dial
1297 * The following function checks if a dial string is a carrier specified
1364 * isOTASPNumber: checks a given number against the IS-683A OTASP dial string and carrier
1365 * OTASP dial strin
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhone.java404 * Example: If Phone.dial is called with "*#31#", then the app will
749 Connection dial(String dialString) throws CallStateException; method in interface:Phone
762 Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException; method in interface:Phone
766 * without SEND (so <code>dial</code> is not appropriate).
1073 * a post-dial character on an outgoing call.<p>
1080 * Message.arg1 will be the post dial character being processed,
1089 * for the telephony system to continue playing the post-dial
1100 * post-dial DTMF sequence.<p>
1102 * Only one post dial character handler may be set. <p>
1454 * this decides if the dial numbe
[all...]
H A DPhoneProxy.java538 public Connection dial(String dialString) throws CallStateException { method in class:PhoneProxy
539 return mActivePhone.dial(dialString);
542 public Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:PhoneProxy
543 return mActivePhone.dial(dialString, uusInfo);
H A DCommandsInterface.java45 // Used as parameter to dial() and setCLIR() below
733 void dial (String address, int clirMode, Message result); method in interface:CommandsInterface
746 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 Log.d(LOG_TAG, " dial(" + basePhone + ", "+ dialString + ")");
752 throw new CallStateException("cannot dial in current state");
774 result = basePhone.dial(dialString);
777 Log.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);
1224 * Example: If Phone.dial i
[all...]
H A DRIL.java862 dial (String address, int clirMode, Message result) { method in class:RIL
863 dial(address, clirMode, null, result);
867 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.java484 public void dial (String address, int clirMode, Message result) { method in class:SimulatedCommands
501 public void dial(String address, int clirMode, UUSInfo uusInfo, Message result) { method in class:SimulatedCommands

Completed in 620 milliseconds