Searched defs:dial (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGsmCallTracker.java173 dial (String dialString, int clirMode, UUSInfo uusInfo) throws CallStateException { method in class:GsmCallTracker
178 throw new CallStateException("cannot dial in current state");
186 // but the dial might fail before this happens
200 throw new CallStateException("cannot dial in current state");
220 cm.dial(pendingMO.address, clirMode, uusInfo, obtainCompleteMessage());
230 dial(String dialString) throws CallStateException { method in class:GsmCallTracker
231 return dial(dialString, CommandsInterface.CLIR_DEFAULT, null);
235 dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:GsmCallTracker
236 return dial(dialString, CommandsInterface.CLIR_DEFAULT, uusInfo);
240 dial(Strin method in class:GsmCallTracker
[all...]
H A DGSMPhone.java698 dial(String dialString) throws CallStateException { method in class:GSMPhone
699 return dial(dialString, null);
703 dial (String dialString, UUSInfo uusInfo) throws CallStateException { method in class:GSMPhone
719 return mCT.dial(newDialString, uusInfo);
721 return mCT.dial(mmi.dialingNumber, mmi.getCLIRMode(), uusInfo);
/frameworks/base/telephony/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 cm.dial(pendingMO.address, clirMode, obtainCompleteMessage());
253 dial (String dialString) throws CallStateException { method in class:CdmaCallTracker
254 return dial(dialString, CommandsInterface.CLIR_DEFAULT);
1020 cm.dial(pendingMO.address, pendingCallClirMode, obtainCompleteMessage());
H A DCDMAPhone.java364 dial (String dialString) throws CallStateException { method in class:CDMAPhone
367 return mCT.dial(newDialString);
370 public Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:CDMAPhone
1215 * This function extracts the system selection code from the dial string.
1237 * the dial string "sysSelCodeInt' is the system selection code specified
1250 // Check if the selection code extracted from the dial string falls
1259 // If the carrier ota sp number schema is not correct, we still allow dial
1271 * The following function checks if a dial string is a carrier specified
1338 * isOTASPNumber: checks a given number against the IS-683A OTASP dial string and carrier
1339 * OTASP dial strin
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/sip/
H A DSipPhone.java157 public Connection dial(String dialString) throws CallStateException { method in class:SipPhone
168 throw new CallStateException("cannot dial in current state");
175 throw new CallStateException("cannot dial in current state");
180 Connection c = foregroundCall.dial(dialString);
183 Log.e(LOG_TAG, "dial()", e);
184 throw new CallStateException("dial error: " + e);
387 Connection dial(String originalNumber) throws SipException { method in class:SipPhone.SipCall
399 c.dial();
404 throw new SipException("dial", e);
737 void dial() throw method in class:SipPhone.SipConnection
[all...]
H A DSipPhoneBase.java68 public Connection dial(String dialString, UUSInfo uusInfo) method in class:SipPhoneBase
71 return dial(dialString);
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
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallManager.java49 * 1. Call control and operation, such as dial() and hangup()
204 * they have same phone APIs, such as dial(). The real implementation, for
714 public Connection dial(Phone phone, String dialString) throws CallStateException { method in class:CallManager
719 Log.d(LOG_TAG, " dial(" + basePhone + ", "+ dialString + ")");
724 throw new CallStateException("cannot dial in current state");
746 result = basePhone.dial(dialString);
749 Log.d(LOG_TAG, "End dial(" + basePhone + ", "+ dialString + ")");
766 public Connection dial(Phone phone, String dialString, UUSInfo uusInfo) throws CallStateException { method in class:CallManager
767 return phone.dial(dialString, uusInfo);
1196 * Example: If Phone.dial i
[all...]
H A DPhoneProxy.java519 public Connection dial(String dialString) throws CallStateException { method in class:PhoneProxy
520 return mActivePhone.dial(dialString);
523 public Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:PhoneProxy
524 return mActivePhone.dial(dialString, uusInfo);
H A DRIL.java861 dial (String address, int clirMode, Message result) { method in class:RIL
862 dial(address, clirMode, null, result);
866 dial(String address, int clirMode, UUSInfo uusInfo, Message result) { method in class:RIL
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 DPhone.java488 * Example: If Phone.dial is called with "*#31#", then the app will
833 Connection dial(String dialString) throws CallStateException; method in interface:Phone
846 Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException; method in interface:Phone
850 * without SEND (so <code>dial</code> is not appropriate).
1157 * a post-dial character on an outgoing call.<p>
1164 * Message.arg1 will be the post dial character being processed,
1173 * for the telephony system to continue playing the post-dial
1184 * post-dial DTMF sequence.<p>
1186 * Only one post dial character handler may be set. <p>
1538 * this decides if the dial numbe
[all...]
/frameworks/base/telephony/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
/frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
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

Completed in 669 milliseconds