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

1 2 3

  /prebuilts/go/darwin-x86/src/net/
sock_posix.go 92 if err := fd.dial(ctx, laddr, raddr); err != nil {
123 func (fd *netFD) dial(ctx context.Context, laddr, raddr sockaddr) error { func
  /prebuilts/go/linux-x86/src/net/
sock_posix.go 92 if err := fd.dial(ctx, laddr, raddr); err != nil {
123 func (fd *netFD) dial(ctx context.Context, laddr, raddr sockaddr) error { func
  /packages/apps/DeskClock/src/com/android/deskclock/
AnalogClock.java 89 final ImageView dial = new AppCompatImageView(context); local
90 dial.setImageResource(R.drawable.clock_analog_dial);
91 dial.getDrawable().mutate();
92 addView(dial);
  /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);
  /system/bt/btif/src/
btif_hf_client.cc 462 * Function dial
469 static bt_status_t dial(UNUSED_ATTR const RawAddress* bd_addr, function
488 * Description place a call with number specified by location (speed dial)
747 .dial = dial,
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
HeadsetClientService.java 400 public BluetoothHeadsetClientCall dial(BluetoothDevice device, String number) { method in class:HeadsetClientService.BluetoothHeadsetClientBinder
405 return service.dial(device, number);
757 BluetoothHeadsetClientCall dial(BluetoothDevice device, String number) { method in class:HeadsetClientService
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 186 public Connection dial(String dialString, int videoState) throws CallStateException { method in class:SipPhone
198 throw new CallStateException("dialInternal: cannot dial in current state");
205 throw new CallStateException("cannot dial in current state");
210 Connection c = mForegroundCall.dial(dialString);
214 throw new CallStateException("dial error: " + e);
494 Connection dial(String originalNumber) throws SipException { method in class:SipPhone.SipCall
495 if (SC_DBG) log("dial: num=" + (SC_VDBG ? originalNumber : "xxx"));
508 c.dial();
513 throw new SipException("dial", e);
878 void dial() throws SipException method in class:SipPhone.SipConnection
    [all...]
SipCommandInterface.java 97 public void dial(String address, int clirMode, Message result) { method in class:SipCommandInterface
101 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, Bundle intentExtras) method in class:SipPhoneBase
76 return dial(dialString, videoState);
  /frameworks/base/core/java/android/bluetooth/
BluetoothHeadsetClient.java 902 public BluetoothHeadsetClientCall dial(BluetoothDevice device, String number) { method in class:BluetoothHeadsetClient
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCommandInterface.java 98 public void dial(String address, int clirMode, Message result) { method in class:ImsPhoneCommandInterface
102 public void dial(String address, int clirMode, UUSInfo uusInfo, method in class:ImsPhoneCommandInterface
ImsPhone.java 602 dial(String dialString, int videoState) throws CallStateException { method in class:ImsPhone
608 dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) method in class:ImsPhone
631 return mCT.dial(dialString, videoState, intentExtras);
642 return mCT.dial(dialString, videoState, intentExtras);
644 return mCT.dial(mmi.getDialingNumber(), mmi.getCLIRMode(), videoState, intentExtras);
    [all...]
ImsPhoneCallTracker.java 840 public Connection dial(String dialString, int videoState, Bundle intentExtras) throws method in class:ImsPhoneCallTracker
859 dial(String dialString, int clirMode, int videoState, Bundle intentExtras) method in class:ImsPhoneCallTracker
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
ImsPhoneTest.java 157 // dial string length > 1
176 // dial string length > 2
179 // dial string length > 1
203 // dial string length > 2
206 // dial string length > 1
229 // dial string length > 1
232 // dial string length == 1
242 // dial string length > 1
245 // dial string length == 1
259 // dial string length >
    [all...]
  /hardware/libhardware/include/hardware/
bt_hf_client.h 346 * if number is NULL last called number is called (aka re-dial)*/
347 bt_status_t (*dial) (const RawAddress *bd_addr, const char *number); member in struct:__anon43006
349 /** place a call with number specified by location (speed dial) */
  /prebuilts/go/darwin-x86/src/net/http/
transport.go 94 // DialContext specifies the dial function for creating unencrypted TCP connections.
95 // If DialContext is nil (and the deprecated Dial below is also nil),
99 // Dial specifies the dial function for creating unencrypted TCP connections.
104 Dial func(network, addr string) (net.Conn, error)
106 // DialTLS specifies an optional dial function for creating
109 // If DialTLS is nil, Dial and TLSClientConfig are used.
111 // If DialTLS is set, the Dial hook is not used for HTTPS
213 if t.TLSClientConfig != nil || t.Dial != nil || t.DialTLS != nil {
416 // Instead, match the HTTP/1 behavior for now and dial
847 func (t *Transport) dial(ctx context.Context, network, addr string) (net.Conn, error) { func
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
transport.go 94 // DialContext specifies the dial function for creating unencrypted TCP connections.
95 // If DialContext is nil (and the deprecated Dial below is also nil),
99 // Dial specifies the dial function for creating unencrypted TCP connections.
104 Dial func(network, addr string) (net.Conn, error)
106 // DialTLS specifies an optional dial function for creating
109 // If DialTLS is nil, Dial and TLSClientConfig are used.
111 // If DialTLS is set, the Dial hook is not used for HTTPS
213 if t.TLSClientConfig != nil || t.Dial != nil || t.DialTLS != nil {
416 // Instead, match the HTTP/1 behavior for now and dial
847 func (t *Transport) dial(ctx context.Context, network, addr string) (net.Conn, error) { func
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
GsmCdmaCallTracker.java 269 public synchronized Connection dial(String dialString, int clirMode, UUSInfo uusInfo, method in class:GsmCdmaCallTracker
276 throw new CallStateException("cannot dial in current state");
287 // but the dial might fail before this happens
291 // This is a hack to delay DIAL so that it is sent out to RIL only after
293 // multi-way conference calls due to DIAL being sent out before SWITCH is processed
309 throw new CallStateException("cannot dial in current state");
331 mCi.dial(mPendingMO.getAddress(), clirMode, uusInfo, obtainCompleteMessage());
382 private Connection dial(String dialString, int clirMode) throws CallStateException { method in class:GsmCdmaCallTracker
387 throw new CallStateException("cannot dial in current state");
446 mCi.dial(mPendingMO.getAddress(), clirMode, obtainCompleteMessage())
498 public Connection dial(String dialString) throws CallStateException { method in class:GsmCdmaCallTracker
507 public Connection dial(String dialString, UUSInfo uusInfo, Bundle intentExtras) method in class:GsmCdmaCallTracker
513 private Connection dial(String dialString, int clirMode, Bundle intentExtras) method in class:GsmCdmaCallTracker
    [all...]
PhoneInternalInterface.java 402 * @param dialString The dial string.
409 Connection dial(String dialString, int videoState) throws CallStateException; method in interface:PhoneInternalInterface
418 * encapsulate all dial arguments and decrease scaffolding headache.
420 * @param dialString The dial string.
429 Connection dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) method in interface:PhoneInternalInterface
434 * without SEND (so <code>dial</code> is not appropriate).
    [all...]
CommandsInterface.java 54 // Used as parameter to dial() and setCLIR() below
828 void dial (String address, int clirMode, Message result); method in interface:CommandsInterface
841 void dial(String address, int clirMode, UUSInfo uusInfo, Message result); method in interface:CommandsInterface
    [all...]
CallManager.java 52 * 1. Call control and operation, such as dial() and hangup()
916 public Connection dial(Phone phone, String dialString, int videoState) method in class:CallManager
987 public Connection dial(Phone phone, String dialString, UUSInfo uusInfo, int videoState) method in class:CallManager
    [all...]
RIL.java 35 import android.hardware.radio.V1_0.Dial;
914 public void dial(String address, int clirMode, Message result) { method in class:RIL
915 dial(address, clirMode, null, result); method
919 public void dial(String address, int clirMode, UUSInfo uusInfo, Message result) { method in class:RIL
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedCommandsVerifier.java 665 public void dial(String address, int clirMode, Message result) { method in class:SimulatedCommandsVerifier
670 public void dial(String address, int clirMode, UUSInfo uusInfo, Message result) { method in class:SimulatedCommandsVerifier
SimulatedCommands.java 515 public void dial (String address, int clirMode, Message result) { method in class:SimulatedCommands
516 SimulatedCommandsVerifier.getInstance().dial(address, clirMode, result);
534 public void dial(String address, int clirMode, UUSInfo uusInfo, Message result) { method in class:SimulatedCommands
535 SimulatedCommandsVerifier.getInstance().dial(address, clirMode, uusInfo, result);
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
PhoneMock.java 1149 public Connection dial(String dialString, int videoState) throws CallStateException { method in class:PhoneMock
1153 public Connection dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) method in class:PhoneMock
    [all...]

Completed in 841 milliseconds

1 2 3