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

1 2

  /external/libppp/src/
datalink.c 90 timer_Stop(&dl->dial.timer);
100 timer_Stop(&dl->dial.timer);
103 dl->dial.timer.load = result ? result * SECTICKS : 1;
104 dl->dial.timer.func = datalink_OpenTimeout;
105 dl->dial.timer.name = "dial";
106 dl->dial.timer.arg = dl;
107 timer_Start(&dl->dial.timer);
136 dl->dial.tries = dl->cfg.dial.max
    [all...]
datalink.h 69 char dial[SCRIPT_LEN]; member in struct:datalink::__anon10751::__anon10752
83 } dial; member in struct:datalink::__anon10751
96 const char *chosen; /* Chosen phone number after DIAL */
105 } dial; member in struct:datalink
i4b.c 359 int oldflag, dial; local
377 dial = 0;
381 dial = 1;
425 if (dial) {
429 dial = 0;
431 if (dial && ioctl(p->fd, I4B_RBCH_DIALOUT, number) == -1) {
bundle.h 127 struct filter dial; /* dial-out packet filter */ member in struct:bundle::__anon10732
filter.c 420 else if (!strcmp(arg->argv[arg->argn], "dial"))
421 filter = &arg->bundle->filter.dial;
511 else if (!strcmp(arg->argv[arg->argn], "dial"))
512 filter = &arg->bundle->filter.dial;
524 filter[2] = &arg->bundle->filter.dial;
bundle.c 617 pri = PacketCheck(bundle, af, tun.data, n, &bundle->filter.dial,
627 * device - breaking auto-dial.
871 bundle.filter.dial.name = "DIAL";
872 bundle.filter.dial.logok = 1;
880 bundle.filter.dial.rule[i].f_action = A_NONE;
994 dl->dial.timer.state == TIMER_RUNNING) ||
996 timer_Stop(&dl->dial.timer); /* We're finished with this */
    [all...]
  /frameworks/base/core/java/android/widget/
AnalogClock.java 179 final Drawable dial = mDial; local
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/base/telephony/java/com/android/internal/telephony/
ITelephony.aidl 34 * Dial a number. This doesn't place the call. It displays
39 void dial(String number);
159 * without SEND (so <code>dial</code> is not appropriate).
  /packages/apps/DeskClock/src/com/android/deskclock/
AnalogClock.java 187 final Drawable dial = mDial; local
188 int w = dial.getIntrinsicWidth();
189 int h = dial.getIntrinsicHeight();
202 dial.setBounds(x - (w / 2), y - (h / 2), x + (w / 2), y + (h / 2));
204 dial.draw(canvas);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 159 mGSMPhone.dial("+13125551212");
647 mGSMPhone.dial("+13125551212");
769 Connection cn = mGSMPhone.dial("+13125551212");
    [all...]
UsimDataDownloadCommands.java 234 public void dial(String address, int clirMode, Message result) { method in class:UsimDataDownloadCommands
238 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/
GsmCallTracker.java 179 dial (String dialString, int clirMode, UUSInfo uusInfo) throws CallStateException { method in class:GsmCallTracker
184 throw new CallStateException("cannot dial in current state");
192 // but the dial might fail before this happens
206 throw new CallStateException("cannot dial in current state");
226 mCi.dial(pendingMO.mAddress, clirMode, uusInfo, obtainCompleteMessage());
236 dial(String dialString) throws CallStateException { method in class:GsmCallTracker
237 return dial(dialString, CommandsInterface.CLIR_DEFAULT, null);
241 dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:GsmCallTracker
242 return dial(dialString, CommandsInterface.CLIR_DEFAULT, uusInfo);
246 dial(String dialString, int clirMode) throws CallStateException method in class:GsmCallTracker
    [all...]
GSMPhone.java 705 dial(String dialString) throws CallStateException { method in class:GSMPhone
706 return dial(dialString, null);
711 dial (String dialString, UUSInfo uusInfo) throws CallStateException { method in class:GSMPhone
728 return mCT.dial(newDialString, uusInfo);
730 return mCT.dial(mmi.mDialingNumber, mmi.getCLIRMode(), uusInfo);
    [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/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java 175 dial (String dialString, int clirMode) throws CallStateException { method in class:CdmaCallTracker
180 throw new CallStateException("cannot dial in current state");
226 mCi.dial(mPendingMO.mAddress, clirMode, obtainCompleteMessage());
243 dial (String dialString) throws CallStateException { method in class:CdmaCallTracker
244 return dial(dialString, CommandsInterface.CLIR_DEFAULT);
    [all...]
CDMAPhone.java 368 dial (String dialString) throws CallStateException { method in class:CDMAPhone
371 return mCT.dial(newDialString);
375 public Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:CDMAPhone
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 181 public Connection dial(String dialString) throws CallStateException { method in class:SipPhone
193 throw new CallStateException("dialInternal: cannot dial in current state");
200 throw new CallStateException("cannot dial in current state");
205 Connection c = mForegroundCall.dial(dialString);
209 throw new CallStateException("dial error: " + e);
472 Connection dial(String originalNumber) throws SipException { method in class:SipPhone.SipCall
473 if (SC_DBG) log("dial: num=" + (SC_VDBG ? originalNumber : "xxx"));
486 c.dial();
491 throw new SipException("dial", e);
854 void dial() throws SipException method in class:SipPhone.SipConnection
    [all...]
SipCommandInterface.java 91 public void dial(String address, int clirMode, Message result) { method in class:SipCommandInterface
95 public void dial(String address, int clirMode, UUSInfo uusInfo, method in class:SipCommandInterface
SipPhoneBase.java 73 public Connection dial(String dialString, UUSInfo uusInfo) method in class:SipPhoneBase
76 return dial(dialString);
  /hardware/ril/libril/
ril.cpp 602 RIL_Dial dial; local
609 memset (&dial, 0, sizeof(dial));
611 dial.address = strdupReadString(p);
614 dial.clir = (int)t;
616 if (status != NO_ERROR || dial.address == NULL) {
622 sizeOfDial = sizeof(dial) - sizeof(RIL_UUS_Info *);
631 dial.uusInfo = NULL;
657 dial.uusInfo = &uusInfo;
659 sizeOfDial = sizeof(dial);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Phone.java 419 * Example: If Phone.dial is called with "*#31#", then the app will
764 Connection dial(String dialString) throws CallStateException; method in interface:Phone
777 Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException; method in interface:Phone
781 * without SEND (so <code>dial</code> is not appropriate).
    [all...]
PhoneProxy.java 609 public Connection dial(String dialString) throws CallStateException { method in class:PhoneProxy
610 return mActivePhone.dial(dialString);
614 public Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:PhoneProxy
615 return mActivePhone.dial(dialString, uusInfo);
    [all...]
CommandsInterface.java 46 // Used as parameter to dial() and setCLIR() below
732 void dial (String address, int clirMode, Message result); method in interface:CommandsInterface
745 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()
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 Rlog.d(LOG_TAG, " dial(" + basePhone + ", "+ dialString + ")");
752 throw new CallStateException("cannot dial in current state");
774 result = basePhone.dial(dialString);
777 Rlog.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);
    [all...]
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 

Completed in 4154 milliseconds

1 2