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

  /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);
149 * without SEND (so <code>dial</code> is not appropriate).
Phone.java 445 * Example: If Phone.dial is called with "*#31#", then the app will
790 Connection dial(String dialString) throws CallStateException; method in interface:Phone
803 Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException; method in interface:Phone
807 * without SEND (so <code>dial</code> is not appropriate).
    [all...]
PhoneProxy.java 422 public Connection dial(String dialString) throws CallStateException { method in class:PhoneProxy
423 return mActivePhone.dial(dialString);
426 public Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:PhoneProxy
427 return mActivePhone.dial(dialString, uusInfo);
CommandsInterface.java 87 // Used as parameter to dial() and setCLIR() below
660 void dial (String address, int clirMode, Message result); method in interface:CommandsInterface
673 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
694 public Connection dial(Phone phone, String dialString) throws CallStateException { method in class:CallManager
699 Log.d(LOG_TAG, " dial(" + basePhone + ", "+ dialString + ")");
704 throw new CallStateException("cannot dial in current state");
726 result = basePhone.dial(dialString);
729 Log.d(LOG_TAG, "End dial(" + basePhone + ", "+ dialString + ")");
746 public Connection dial(Phone phone, String dialString, UUSInfo uusInfo) throws CallStateException { method in class:CallManager
747 return phone.dial(dialString, uusInfo);
    [all...]
RIL.java 828 dial (String address, int clirMode, Message result) { method in class:RIL
829 dial(address, clirMode, null, result); method
833 dial(String address, int clirMode, UUSInfo uusInfo, Message result) { method in class:RIL
    [all...]
  /frameworks/base/core/java/android/widget/
AnalogClock.java 174 final Drawable dial = mDial; local
175 int w = dial.getIntrinsicWidth();
176 int h = dial.getIntrinsicHeight();
189 dial.setBounds(x - (w / 2), y - (h / 2), x + (w / 2), y + (h / 2));
191 dial.draw(canvas);
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 164 mGSMPhone.dial("+13125551212");
652 mGSMPhone.dial("+13125551212");
774 Connection cn = mGSMPhone.dial("+13125551212");
    [all...]
  /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 711 dial(String dialString) throws CallStateException { method in class:GSMPhone
712 return dial(dialString, null);
716 dial (String dialString, UUSInfo uusInfo) throws CallStateException { method in class:GSMPhone
732 return mCT.dial(newDialString, uusInfo);
734 return mCT.dial(mmi.dialingNumber, mmi.getCLIRMode(), uusInfo);
    [all...]
  /hardware/ril/libril/
ril.cpp 573 RIL_Dial dial; local
580 memset (&dial, 0, sizeof(dial));
582 dial.address = strdupReadString(p);
585 dial.clir = (int)t;
587 if (status != NO_ERROR || dial.address == NULL) {
593 sizeOfDial = sizeof(dial) - sizeof(RIL_UUS_Info *);
602 dial.uusInfo = NULL;
628 dial.uusInfo = &uusInfo;
630 sizeOfDial = sizeof(dial);
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipPhone.java 149 public Connection dial(String dialString, UUSInfo uusinfo) throws CallStateException { method in class:SipPhone
150 return dial(dialString);
153 public Connection dial(String dialString) throws CallStateException { method in class:SipPhone
164 throw new CallStateException("cannot dial in current state");
171 throw new CallStateException("cannot dial in current state");
176 Connection c = foregroundCall.dial(dialString);
179 Log.e(LOG_TAG, "dial()", e);
180 throw new CallStateException("dial error: " + e);
383 Connection dial(String originalNumber) throws SipException { method in class:SipPhone.SipCall
395 c.dial();
733 void dial() throws SipException { method in class:SipPhone.SipConnection
    [all...]
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
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java 179 dial (String dialString, int clirMode) throws CallStateException { method in class:CdmaCallTracker
184 throw new CallStateException("cannot dial in current state");
228 cm.dial(pendingMO.address, clirMode, obtainCompleteMessage());
245 dial (String dialString) throws CallStateException { method in class:CdmaCallTracker
246 return dial(dialString, CommandsInterface.CLIR_DEFAULT);
    [all...]
CDMAPhone.java 345 dial (String dialString) throws CallStateException { method in class:CDMAPhone
348 return mCT.dial(newDialString);
351 public Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:CDMAPhone
    [all...]
  /packages/apps/Phone/src/com/android/phone/
PhoneInterfaceManager.java 222 public void dial(String number) { method in class:PhoneInterfaceManager
223 if (DBG) log("dial: " + number);
PhoneUtils.java 525 * Dial the number using the phone passed in.
539 Connection cn = PhoneApp.getInstance().mCM.dial(phone, number);
540 if (DBG) log("===> phone.dial() returned: " + cn);
568 // phone.dial() succeeded: we're now in a normal phone call.
596 Log.w(LOG_TAG, "Exception from phone.dial()", ex);
604 * Dial the number using a 3rd party provider gateway. Should
645 connection = PhoneApp.getInstance().mCM.dial(phone, gatewayNumber);
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/test/
SimulatedCommands.java 489 public void dial (String address, int clirMode, Message result) { method in class:SimulatedCommands
506 public void dial(String address, int clirMode, UUSInfo uusInfo, Message result) { method in class:SimulatedCommands
    [all...]
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 
  /external/iproute2/doc/
ip-cref.tex     [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 1284 milliseconds