HomeSort by relevance Sort by last modified time
    Searched refs:dial (Results 1 - 25 of 30) sorted by null

1 2

  /frameworks/base/telephony/java/com/android/internal/telephony/
ITelephony.aidl 33 * Dial a number. This doesn't place the call. It displays
38 void dial(String number);
158 * without SEND (so <code>dial</code> is not appropriate).
Phone.java 488 * 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).
    [all...]
PhoneProxy.java 420 public Connection dial(String dialString) throws CallStateException { method in class:PhoneProxy
421 return mActivePhone.dial(dialString);
424 public Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:PhoneProxy
425 return mActivePhone.dial(dialString, uusInfo);
CommandsInterface.java 102 // Used as parameter to dial() and setCLIR() below
820 void dial (String address, int clirMode, Message result); method in interface:CommandsInterface
833 void dial(String address, int clirMode, UUSInfo uusInfo, Message result); method in interface:CommandsInterface
    [all...]
CallManager.java 49 * 1. Call control and operation, such as dial() and hangup()
204 * they have same phone APIs, such as dial(). The real implementation, for
695 public Connection dial(Phone phone, String dialString) throws CallStateException { method in class:CallManager
700 Log.d(LOG_TAG, " dial(" + basePhone + ", "+ dialString + ")");
705 throw new CallStateException("cannot dial in current state");
727 result = basePhone.dial(dialString);
730 Log.d(LOG_TAG, "End dial(" + basePhone + ", "+ dialString + ")");
747 public Connection dial(Phone phone, String dialString, UUSInfo uusInfo) throws CallStateException { method in class:CallManager
748 return phone.dial(dialString, uusInfo);
    [all...]
RIL.java 845 dial (String address, int clirMode, Message result) { method in class:RIL
846 dial(address, clirMode, null, result); method
850 dial(String address, int clirMode, UUSInfo uusInfo, Message result) { method in class:RIL
    [all...]
  /frameworks/base/core/java/android/widget/
AnalogClock.java 175 final Drawable dial = mDial; local
176 int w = dial.getIntrinsicWidth();
177 int h = dial.getIntrinsicHeight();
190 dial.setBounds(x - (w / 2), y - (h / 2), x + (w / 2), y + (h / 2));
192 dial.draw(canvas);
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 158 mGSMPhone.dial("+13125551212");
646 mGSMPhone.dial("+13125551212");
768 Connection cn = mGSMPhone.dial("+13125551212");
    [all...]
UsimDataDownloadCommands.java 233 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/base/telephony/java/com/android/internal/telephony/gsm/
GsmCallTracker.java 171 dial (String dialString, int clirMode, UUSInfo uusInfo) throws CallStateException { method in class:GsmCallTracker
176 throw new CallStateException("cannot dial in current state");
184 // but the dial might fail before this happens
198 throw new CallStateException("cannot dial in current state");
217 cm.dial(pendingMO.address, clirMode, uusInfo, obtainCompleteMessage());
227 dial(String dialString) throws CallStateException { method in class:GsmCallTracker
228 return dial(dialString, CommandsInterface.CLIR_DEFAULT, null);
232 dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:GsmCallTracker
233 return dial(dialString, CommandsInterface.CLIR_DEFAULT, uusInfo);
237 dial(String dialString, int clirMode) throws CallStateException method in class:GsmCallTracker
    [all...]
GSMPhone.java 706 dial(String dialString) throws CallStateException { method in class:GSMPhone
707 return dial(dialString, null);
711 dial (String dialString, UUSInfo uusInfo) throws CallStateException { method in class:GSMPhone
727 return mCT.dial(newDialString, uusInfo);
729 return mCT.dial(mmi.dialingNumber, mmi.getCLIRMode(), uusInfo);
    [all...]
  /hardware/ril/libril/
ril.cpp 574 RIL_Dial dial; local
581 memset (&dial, 0, sizeof(dial));
583 dial.address = strdupReadString(p);
586 dial.clir = (int)t;
588 if (status != NO_ERROR || dial.address == NULL) {
594 sizeOfDial = sizeof(dial) - sizeof(RIL_UUS_Info *);
603 dial.uusInfo = NULL;
629 dial.uusInfo = &uusInfo;
631 sizeOfDial = sizeof(dial);
    [all...]
  /packages/apps/Phone/tests/src/com/android/phone/tests/
CallDialTest.java 40 * CALL and DIAL intents.
93 log("onClick: DIAL...");
101 log("onClick: ITelephony.dial()...");
117 // Based on the number, fire off a CALL or DIAL intent:
121 // - if it's blank, fire off a blank CALL or DIAL intent
178 log("- calling dial()...");
179 phone.dial(number);
  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipCommandInterface.java 77 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
SipPhoneBase.java 68 public Connection dial(String dialString, UUSInfo uusInfo) method in class:SipPhoneBase
71 return dial(dialString);
SipPhone.java 157 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() throws SipException method in class:SipPhone.SipConnection
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java 183 dial (String dialString, int clirMode) throws CallStateException { method in class:CdmaCallTracker
188 throw new CallStateException("cannot dial in current state");
233 cm.dial(pendingMO.address, clirMode, obtainCompleteMessage());
250 dial (String dialString) throws CallStateException { method in class:CdmaCallTracker
251 return dial(dialString, CommandsInterface.CLIR_DEFAULT);
    [all...]
CDMAPhone.java 369 dial (String dialString) throws CallStateException { method in class:CDMAPhone
372 return mCT.dial(newDialString);
375 public Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:CDMAPhone
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/test/
SimulatedCommands.java 484 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
    [all...]
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 
  /packages/apps/Phone/src/com/android/phone/
PhoneInterfaceManager.java 244 public void dial(String number) { method in class:PhoneInterfaceManager
245 if (DBG) log("dial: " + number);
PhoneUtils.java 539 * Dial the number using the phone passed in.
594 connection = app.mCM.dial(phone, numberToDial);
599 Log.w(LOG_TAG, "Exception from app.mCM.dial()", ex);
602 // Note that it's possible for CallManager.dial() to return
640 // phone.dial() succeeded: we're now in a normal phone call.
    [all...]
  /external/iproute2/doc/
ip-cref.tex     [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 

Completed in 486 milliseconds

1 2