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

1 2 3

  /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"
12 #include "chrome/common/extensions/api/dial.h"
35 namespace dial = api::dial;
41 ->RegisterObserver(this, dial::OnDeviceList::kEventName);
73 VLOG(2) << "DIAL device event listener added.";
79 VLOG(2) << "DIAL device event listener removed";
98 std::vector<linked_ptr<api::dial::DialDevice> > args;
101 linked_ptr<api::dial::DialDevice> api_device
    [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"
47 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 190 final Drawable dial = mDial; local
191 int w = dial.getIntrinsicWidth();
192 int h = dial.getIntrinsicHeight();
205 dial.setBounds(x - (w / 2), y - (h / 2), x + (w / 2), y + (h / 2));
207 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/base/core/java/android/bluetooth/
IBluetoothHeadsetClient.aidl 56 boolean dial(in BluetoothDevice device, String number);
BluetoothHeadsetClient.java 920 public boolean dial(BluetoothDevice device, String number) { method in class:BluetoothHeadsetClient
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 161 mGSMPhone.dial("+13125551212");
649 mGSMPhone.dial("+13125551212");
771 Connection cn = mGSMPhone.dial("+13125551212");
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCallTracker.java 172 dial (String dialString, int clirMode, UUSInfo uusInfo) throws CallStateException { method in class:GsmCallTracker
177 throw new CallStateException("cannot dial in current state");
188 // but the dial might fail before this happens
202 throw new CallStateException("cannot dial in current state");
222 mCi.dial(mPendingMO.getAddress(), clirMode, uusInfo, obtainCompleteMessage());
237 dial(String dialString) throws CallStateException { method in class:GsmCallTracker
238 return dial(dialString, CommandsInterface.CLIR_DEFAULT, null);
242 dial(String dialString, UUSInfo uusInfo) throws CallStateException { method in class:GsmCallTracker
243 return dial(dialString, CommandsInterface.CLIR_DEFAULT, uusInfo);
247 dial(String dialString, int clirMode) throws CallStateException method in class:GsmCallTracker
    [all...]
GSMPhone.java 799 dial(String dialString, int videoState) throws CallStateException { method in class:GSMPhone
800 return dial(dialString, null, videoState);
805 dial (String dialString, UUSInfo uusInfo, int videoState) throws CallStateException { method in class:GSMPhone
832 return imsPhone.dial(dialString, videoState);
869 return mCT.dial(newDialString, uusInfo);
871 return mCT.dial(mmi.mDialingNumber, mmi.getCLIRMode(), uusInfo);
    [all...]
  /hardware/libhardware/include/hardware/
bt_hf_client.h 328 * if number is NULL last called number is called (aka re-dial)*/
329 bt_status_t (*dial) (const char *number); member in struct:__anon41272
331 /** place a call with number specified by location (speed dial) */
  /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/base/telephony/java/com/android/internal/telephony/
ITelephony.aidl 38 * Dial a number. This doesn't place the call. It displays
43 void dial(String number);
251 * without SEND (so <code>dial</code> is not appropriate).
260 * without SEND (so <code>dial</code> is not appropriate) for
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java 173 dial (String dialString, int clirMode) throws CallStateException { method in class:CdmaCallTracker
178 throw new CallStateException("cannot dial in current state");
243 mCi.dial(mPendingMO.getAddress(), clirMode, obtainCompleteMessage());
265 dial (String dialString) throws CallStateException { method in class:CdmaCallTracker
266 return dial(dialString, CommandsInterface.CLIR_DEFAULT);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 182 public Connection dial(String dialString, int videoState) throws CallStateException { method in class:SipPhone
194 throw new CallStateException("dialInternal: cannot dial in current state");
201 throw new CallStateException("cannot dial in current state");
206 Connection c = mForegroundCall.dial(dialString);
210 throw new CallStateException("dial error: " + e);
474 Connection dial(String originalNumber) throws SipException { method in class:SipPhone.SipCall
475 if (SC_DBG) log("dial: num=" + (SC_VDBG ? originalNumber : "xxx"));
488 c.dial();
493 throw new SipException("dial", e);
857 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, int videoState) method in class:SipPhoneBase
76 return dial(dialString, videoState);
  /external/bluetooth/bluedroid/btif/src/
btif_hf_client.c 391 ** Function dial
398 static bt_status_t dial(const char *number) function
418 ** Description place a call with number specified by location (speed dial)
678 .dial = dial,
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
HeadsetClientService.java 337 public boolean dial(BluetoothDevice device, String number) { method in class:HeadsetClientService.BluetoothHeadsetClientBinder
342 return service.dial(device, number);
646 boolean dial(BluetoothDevice device, String number) { method in class:HeadsetClientService
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneBase.java 69 public Connection dial(String dialString, UUSInfo uusInfo, int videoState) method in class:ImsPhoneBase
72 return dial(dialString, videoState);
ImsPhoneCommandInterface.java 93 public void dial(String address, int clirMode, Message result) { method in class:ImsPhoneCommandInterface
97 public void dial(String address, int clirMode, UUSInfo uusInfo, method in class:ImsPhoneCommandInterface
ImsPhone.java 474 dial(String dialString, int videoState) throws CallStateException { method in class:ImsPhone
489 return mCT.dial(dialString, videoState);
500 return mCT.dial(dialString, videoState);
502 return mCT.dial(mmi.getDialingNumber(), mmi.getCLIRMode(), videoState);
    [all...]
  /hardware/ril/libril/
ril.cpp 758 RIL_Dial dial; local
765 memset (&dial, 0, sizeof(dial));
767 dial.address = strdupReadString(p);
770 dial.clir = (int)t;
772 if (status != NO_ERROR || dial.address == NULL) {
778 sizeOfDial = sizeof(dial) - sizeof(RIL_UUS_Info *);
787 dial.uusInfo = NULL;
813 dial.uusInfo = &uusInfo;
815 sizeOfDial = sizeof(dial);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CommandsInterface.java 49 // Used as parameter to dial() and setCLIR() below
819 void dial (String address, int clirMode, Message result); method in interface:CommandsInterface
832 void dial(String address, int clirMode, UUSInfo uusInfo, Message result); method in interface:CommandsInterface
    [all...]

Completed in 5134 milliseconds

1 2 3