Home
last modified time | relevance | path

Searched refs:dial (Results 1 – 24 of 24) sorted by relevance

/frameworks/base/core/java/android/widget/
DAnalogClock.java179 final Drawable dial = mDial; in onDraw() local
180 int w = dial.getIntrinsicWidth(); in onDraw()
181 int h = dial.getIntrinsicHeight(); in onDraw()
194 dial.setBounds(x - (w / 2), y - (h / 2), x + (w / 2), y + (h / 2)); in onDraw()
196 dial.draw(canvas); in onDraw()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
DGSMPhoneTest.java159 mGSMPhone.dial("+13125551212"); in brokenTestGeneral()
647 mGSMPhone.dial("+13125551212"); in brokenTestGeneral()
769 Connection cn = mGSMPhone.dial("+13125551212"); in testOutgoingCallFailImmediately()
796 mGSMPhone.dial("+13125551212"); in testHangupOnOutgoing()
815 mGSMPhone.dial("+13125551212"); in testHangupOnOutgoing()
845 cn = mGSMPhone.dial("+13125551212"); in testHangupOnOutgoing()
862 mGSMPhone.dial("+13125551212"); in testHangupOnChannelClose()
880 mGSMPhone.dial("+13125551212"); in testIncallMmiCallDeflection()
945 mGSMPhone.dial("+13125551212"); in testIncallMmiCallWaiting()
1052 mGSMPhone.dial("+13125551212"); in testIncallMmiCallWaiting()
[all …]
DUsimDataDownloadCommands.java234 public void dial(String address, int clirMode, Message result) { in dial() method in UsimDataDownloadCommands
238 public void dial(String address, int clirMode, UUSInfo uusInfo, Message result) { in dial() method in UsimDataDownloadCommands
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DGsmCallTracker.java189 dial (String dialString, int clirMode, UUSInfo uusInfo) throws CallStateException { in dial() method in GsmCallTracker
236 mCi.dial(mPendingMO.mAddress, clirMode, uusInfo, obtainCompleteMessage()); in dial()
246 dial(String dialString) throws CallStateException { in dial() method in GsmCallTracker
247 return dial(dialString, CommandsInterface.CLIR_DEFAULT, null); in dial()
251 dial(String dialString, UUSInfo uusInfo) throws CallStateException { in dial() method in GsmCallTracker
252 return dial(dialString, CommandsInterface.CLIR_DEFAULT, uusInfo); in dial()
256 dial(String dialString, int clirMode) throws CallStateException { in dial() method in GsmCallTracker
257 return dial(dialString, clirMode, null); in dial()
DGSMPhone.java718 dial(String dialString) throws CallStateException { in dial() method in GSMPhone
719 return dial(dialString, null); in dial()
724 dial (String dialString, UUSInfo uusInfo) throws CallStateException { in dial() method in GSMPhone
741 return mCT.dial(newDialString, uusInfo); in dial()
743 return mCT.dial(mmi.mDialingNumber, mmi.getCLIRMode(), uusInfo); in dial()
/frameworks/base/telephony/java/com/android/internal/telephony/
DITelephony.aidl42 void dial(String number); in dial() method
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
DCdmaCallTracker.java185 dial (String dialString, int clirMode) throws CallStateException { in dial() method in CdmaCallTracker
236 mCi.dial(mPendingMO.mAddress, clirMode, obtainCompleteMessage()); in dial()
253 dial (String dialString) throws CallStateException { in dial() method in CdmaCallTracker
254 return dial(dialString, CommandsInterface.CLIR_DEFAULT); in dial()
1010 mCi.dial(mPendingMO.mAddress, mPendingCallClirMode, obtainCompleteMessage()); in handleMessage()
DCDMAPhone.java373 dial (String dialString) throws CallStateException { in dial() method in CDMAPhone
376 return mCT.dial(newDialString); in dial()
380 public Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException { in dial() method in CDMAPhone
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
DSipPhone.java181 public Connection dial(String dialString) throws CallStateException { in dial() method in SipPhone
205 Connection c = mForegroundCall.dial(dialString); in dialInternal()
472 Connection dial(String originalNumber) throws SipException { in dial() method in SipPhone.SipCall
486 c.dial(); in dial()
854 void dial() throws SipException { in dial() method in SipPhone.SipConnection
DSipPhoneBase.java73 public Connection dial(String dialString, UUSInfo uusInfo) in dial() method in SipPhoneBase
76 return dial(dialString); in dial()
DSipCommandInterface.java91 public void dial(String address, int clirMode, Message result) { in dial() method in SipCommandInterface
95 public void dial(String address, int clirMode, UUSInfo uusInfo, in dial() method in SipCommandInterface
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DPhone.java765 Connection dial(String dialString) throws CallStateException; in dial() method
778 Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException; in dial() method
DPhoneProxy.java633 public Connection dial(String dialString) throws CallStateException { in dial() method in PhoneProxy
634 return mActivePhone.dial(dialString); in dial()
638 public Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException { in dial() method in PhoneProxy
639 return mActivePhone.dial(dialString, uusInfo); in dial()
DCallManager.java742 public Connection dial(Phone phone, String dialString) throws CallStateException { in dial() method in CallManager
774 result = basePhone.dial(dialString); in dial()
794 …public Connection dial(Phone phone, String dialString, UUSInfo uusInfo) throws CallStateException { in dial() method in CallManager
795 return phone.dial(dialString, uusInfo); in dial()
DCommandsInterface.java769 void dial (String address, int clirMode, Message result); in dial() method
782 void dial(String address, int clirMode, UUSInfo uusInfo, Message result); in dial() method
DRIL.java840 dial (String address, int clirMode, Message result) { in dial() method in RIL
841 dial(address, clirMode, null, result); in dial()
846 dial(String address, int clirMode, UUSInfo uusInfo, Message result) { in dial() method in RIL
/frameworks/base/telephony/java/android/telephony/
DTelephonyManager.java1484 public void dial(String number) { in dial() method in TelephonyManager
1486 getITelephony().dial(number); in dial()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
DSimulatedCommands.java500 public void dial (String address, int clirMode, Message result) { in dial() method in SimulatedCommands
518 public void dial(String address, int clirMode, UUSInfo uusInfo, Message result) { in dial() method in SimulatedCommands
/frameworks/base/docs/html/training/cloudsync/
Dgcm.jd170 about the speed of home dial-up internet in the early 1990's. Your app rating
/frameworks/base/docs/html/guide/practices/ui_guidelines/
Dactivity_task_design.jd648 number to launch the Dialer activity and dial the phone.
736 A generic action to be performed. In these examples: view, edit, dial or crop
/frameworks/base/docs/html/tools/help/
Demulator.jd62 <td>Call/dial button </td>
/frameworks/base/docs/html/guide/components/
Dactivities.jd54 users can interact in order to do something, such as dial the phone, take a photo, send an email, or
/frameworks/base/docs/html/tools/devices/
Demulator.jd1050 <li>As the number to dial, enter the console port number of the instance you'd like to call. You ca…
/frameworks/base/api/
Dcurrent.txt418 field public static final int dial = 16843010; // 0x1010102