HomeSort by relevance Sort by last modified time
    Searched refs:dial (Results 1 - 25 of 40) 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::__anon9582::__anon9583
83 } dial; member in struct:datalink::__anon9582
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::__anon9563
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/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).
  /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);
  /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 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/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCallTracker.java 174 dial (String dialString, int clirMode, UUSInfo uusInfo) throws CallStateException { method in class:GsmCallTracker
179 throw new CallStateException("cannot dial in current state");
187 // but the dial might fail before this happens
201 throw new CallStateException("cannot dial in current state");
221 cm.dial(pendingMO.address, clirMode, uusInfo, obtainCompleteMessage());
231 dial(String dialString) throws CallStateException { method in class:GsmCallTracker
232 return dial(dialString, CommandsInterface.CLIR_DEFAULT, null);
236 dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:GsmCallTracker
237 return dial(dialString, CommandsInterface.CLIR_DEFAULT, uusInfo);
241 dial(String dialString, int clirMode) throws CallStateException method in class:GsmCallTracker
    [all...]
GSMPhone.java 695 dial(String dialString) throws CallStateException { method in class:GSMPhone
696 return dial(dialString, null);
700 dial (String dialString, UUSInfo uusInfo) throws CallStateException { method in class:GSMPhone
717 return mCT.dial(newDialString, uusInfo);
719 return mCT.dial(mmi.dialingNumber, 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/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
SipPhone.java 158 public Connection dial(String dialString) throws CallStateException { method in class:SipPhone
169 throw new CallStateException("cannot dial in current state");
176 throw new CallStateException("cannot dial in current state");
181 Connection c = foregroundCall.dial(dialString);
184 Log.e(LOG_TAG, "dial()", e);
185 throw new CallStateException("dial error: " + e);
388 Connection dial(String originalNumber) throws SipException { method in class:SipPhone.SipCall
400 c.dial();
405 throw new SipException("dial", e);
738 void dial() throws SipException method in class:SipPhone.SipConnection
    [all...]
SipPhoneBase.java 70 public Connection dial(String dialString, UUSInfo uusInfo) method in class:SipPhoneBase
73 return dial(dialString);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java 186 dial (String dialString, int clirMode) throws CallStateException { method in class:CdmaCallTracker
191 throw new CallStateException("cannot dial in current state");
237 cm.dial(pendingMO.address, clirMode, obtainCompleteMessage());
254 dial (String dialString) throws CallStateException { method in class:CdmaCallTracker
255 return dial(dialString, CommandsInterface.CLIR_DEFAULT);
    [all...]
CDMAPhone.java 360 dial (String dialString) throws CallStateException { method in class:CDMAPhone
363 return mCT.dial(newDialString);
366 public Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:CDMAPhone
    [all...]
  /hardware/ril/libril/
ril.cpp 600 RIL_Dial dial; local
607 memset (&dial, 0, sizeof(dial));
609 dial.address = strdupReadString(p);
612 dial.clir = (int)t;
614 if (status != NO_ERROR || dial.address == NULL) {
620 sizeOfDial = sizeof(dial) - sizeof(RIL_UUS_Info *);
629 dial.uusInfo = NULL;
655 dial.uusInfo = &uusInfo;
657 sizeOfDial = sizeof(dial);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Phone.java 404 * Example: If Phone.dial is called with "*#31#", then the app will
749 Connection dial(String dialString) throws CallStateException; method in interface:Phone
762 Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException; method in interface:Phone
766 * without SEND (so <code>dial</code> is not appropriate).
    [all...]
PhoneProxy.java 538 public Connection dial(String dialString) throws CallStateException { method in class:PhoneProxy
539 return mActivePhone.dial(dialString);
542 public Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:PhoneProxy
543 return mActivePhone.dial(dialString, uusInfo);
CommandsInterface.java 45 // 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
    [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
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);
    [all...]
  /frameworks/opt/telephony/src/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...]

Completed in 820 milliseconds

1 2