HomeSort by relevance Sort by last modified time
    Searched refs:dial (Results 1 - 25 of 48) 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::__anon22802::__anon22803
83 } dial; member in struct:datalink::__anon22802
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::__anon22783
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...]
  /external/chromium_org/chrome/browser/extensions/api/dial/
dial_api.cc 5 #include "chrome/browser/extensions/api/dial/dial_api.h"
10 #include "chrome/browser/extensions/api/dial/dial_api_factory.h"
15 #include "chrome/common/extensions/api/dial.h"
23 const char kDialServiceError[] = "Dial service error.";
74 DVLOG(1) << "DIAL device event listener added.";
80 DVLOG(1) << "DIAL device event listener removed";
99 std::vector<linked_ptr<api::dial::DialDevice> > args;
102 linked_ptr<api::dial::DialDevice> api_device =
103 make_linked_ptr(new api::dial::DialDevice);
107 scoped_ptr<base::ListValue> results = api::dial::OnDeviceList::Create(args)
    [all...]
dial_device_data.h 18 namespace dial { namespace in namespace:extensions::api
21 } // namespace dial
23 // Dial device information that is used within the DialService and Registry on
65 void FillDialDevice(api::dial::DialDevice* device) const;
69 // the DIAL API.
76 // Hardware identifier from the DIAL response. Not exposed to API clients.
80 // identifier. Automatically generated by the DIAL registry.
dial_device_data.cc 5 #include "chrome/browser/extensions/api/dial/dial_device_data.h"
7 #include "chrome/common/extensions/api/dial.h"
48 void DialDeviceData::FillDialDevice(api::dial::DialDevice* device) const {
dial_device_data_unittest.cc 5 #include "chrome/browser/extensions/api/dial/dial_device_data.h"
6 #include "chrome/common/extensions/api/dial.h"
26 api::dial::DialDevice api_device;
  /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...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCallTracker.java 189 dial (String dialString, int clirMode, UUSInfo uusInfo) throws CallStateException { method in class:GsmCallTracker
194 throw new CallStateException("cannot dial in current state");
202 // but the dial might fail before this happens
216 throw new CallStateException("cannot dial in current state");
236 mCi.dial(mPendingMO.mAddress, clirMode, uusInfo, obtainCompleteMessage());
246 dial(String dialString) throws CallStateException { method in class:GsmCallTracker
247 return dial(dialString, CommandsInterface.CLIR_DEFAULT, null);
251 dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:GsmCallTracker
252 return dial(dialString, CommandsInterface.CLIR_DEFAULT, uusInfo);
256 dial(String dialString, int clirMode) throws CallStateException method in class:GsmCallTracker
    [all...]
GSMPhone.java 716 dial(String dialString) throws CallStateException { method in class:GSMPhone
717 return dial(dialString, null);
722 dial (String dialString, UUSInfo uusInfo) throws CallStateException { method in class:GSMPhone
739 return mCT.dial(newDialString, uusInfo);
741 return mCT.dial(mmi.mDialingNumber, mmi.getCLIRMode(), uusInfo);
    [all...]
  /packages/services/Telephony/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 185 dial (String dialString, int clirMode) throws CallStateException { method in class:CdmaCallTracker
190 throw new CallStateException("cannot dial in current state");
236 mCi.dial(mPendingMO.mAddress, clirMode, obtainCompleteMessage());
253 dial (String dialString) throws CallStateException { method in class:CdmaCallTracker
254 return dial(dialString, CommandsInterface.CLIR_DEFAULT);
    [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 92 public void dial(String address, int clirMode, Message result) { method in class:SipCommandInterface
96 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 606 RIL_Dial dial; local
613 memset (&dial, 0, sizeof(dial));
615 dial.address = strdupReadString(p);
618 dial.clir = (int)t;
620 if (status != NO_ERROR || dial.address == NULL) {
626 sizeOfDial = sizeof(dial) - sizeof(RIL_UUS_Info *);
635 dial.uusInfo = NULL;
661 dial.uusInfo = &uusInfo;
663 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 633 public Connection dial(String dialString) throws CallStateException { method in class:PhoneProxy
634 return mActivePhone.dial(dialString);
638 public Connection dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:PhoneProxy
639 return mActivePhone.dial(dialString, uusInfo);
    [all...]
CommandsInterface.java 47 // Used as parameter to dial() and setCLIR() below
746 void dial (String address, int clirMode, Message result); method in interface:CommandsInterface
759 void dial(String address, int clirMode, UUSInfo uusInfo, Message result); method in interface:CommandsInterface
    [all...]

Completed in 654 milliseconds

1 2