HomeSort by relevance Sort by last modified time
    Searched refs:dial (Results 51 - 75 of 138) sorted by null

1 23 4 5 6

  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
UsimDataDownloadCommands.java.broken 234 public void dial(String address, int clirMode, Message result) {
238 public void dial(String address, int clirMode, UUSInfo uusInfo, Message result) {
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipConnectionService.java 261 phone.dial(number, request.getVideoState());
  /prebuilts/go/darwin-x86/src/flag/
flag_test.go 396 set timeout for dial
411 fs.Duration("maxT", 0, "set `timeout` for dial")
  /prebuilts/go/darwin-x86/src/net/http/httptest/
server.go 161 // connection before the dial completed. There is thus
257 // Probably just a socket-late-binding dial from
  /prebuilts/go/darwin-x86/src/runtime/trace/
trace_test.go 222 c, err := net.Dial("tcp", ln.Addr().String())
224 t.Fatalf("dial failed: %v", err)
363 c, err := net.Dial("tcp", ln.Addr().String())
365 t.Errorf("dial failed: %v", err)
  /prebuilts/go/linux-x86/src/flag/
flag_test.go 396 set timeout for dial
411 fs.Duration("maxT", 0, "set `timeout` for dial")
  /prebuilts/go/linux-x86/src/net/http/httptest/
server.go 161 // connection before the dial completed. There is thus
257 // Probably just a socket-late-binding dial from
  /prebuilts/go/linux-x86/src/runtime/trace/
trace_test.go 222 c, err := net.Dial("tcp", ln.Addr().String())
224 t.Fatalf("dial failed: %v", err)
363 c, err := net.Dial("tcp", ln.Addr().String())
365 t.Errorf("dial failed: %v", err)
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
HeadsetClientService.java 386 public BluetoothHeadsetClientCall dial(BluetoothDevice device, String number) { method in class:HeadsetClientService.BluetoothHeadsetClientBinder
391 return service.dial(device, number);
725 BluetoothHeadsetClientCall dial(BluetoothDevice device, String number) { method in class:HeadsetClientService
  /prebuilts/go/darwin-x86/src/net/
dial_test.go 50 c, err := Dial(tt.network, JoinHostPort(tt.address, port))
68 c, err := Dial("tcp", JoinHostPort("", port))
105 // It may happen when the Dial call bumps against TCP
123 // This dial never starts to send any SYN
144 t.Skipf("not implemented a way to cancel dial racers in TCP SYN-SENT state on %s", runtime.GOOS)
186 c, err := d.Dial("tcp", JoinHostPort("localhost", dss.port))
243 c, err := Dial("tcp", addr)
475 c, err := d.Dial("tcp", JoinHostPort("slow6loopback4", dss.port))
702 c, err := d.Dial(tt.network, addr)
757 c, err := d.Dial("tcp", JoinHostPort("localhost", dss.port)
    [all...]
fd_unix.go 112 // interrupts the dial (by altering the fd's write deadline, which
127 // dial. This was issue 16523.
unixsock.go 197 return nil, &OpError{Op: "dial", Net: net, Source: laddr.opAddr(), Addr: raddr.opAddr(), Err: UnknownNetworkError(net)}
201 return nil, &OpError{Op: "dial", Net: net, Source: laddr.opAddr(), Addr: raddr.opAddr(), Err: err}
  /prebuilts/go/linux-x86/src/net/
dial_test.go 50 c, err := Dial(tt.network, JoinHostPort(tt.address, port))
68 c, err := Dial("tcp", JoinHostPort("", port))
105 // It may happen when the Dial call bumps against TCP
123 // This dial never starts to send any SYN
144 t.Skipf("not implemented a way to cancel dial racers in TCP SYN-SENT state on %s", runtime.GOOS)
186 c, err := d.Dial("tcp", JoinHostPort("localhost", dss.port))
243 c, err := Dial("tcp", addr)
475 c, err := d.Dial("tcp", JoinHostPort("slow6loopback4", dss.port))
702 c, err := d.Dial(tt.network, addr)
757 c, err := d.Dial("tcp", JoinHostPort("localhost", dss.port)
    [all...]
fd_unix.go 112 // interrupts the dial (by altering the fd's write deadline, which
127 // dial. This was issue 16523.
unixsock.go 197 return nil, &OpError{Op: "dial", Net: net, Source: laddr.opAddr(), Addr: raddr.opAddr(), Err: UnknownNetworkError(net)}
201 return nil, &OpError{Op: "dial", Net: net, Source: laddr.opAddr(), Addr: raddr.opAddr(), Err: err}
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhone.java 588 dial(String dialString, int videoState) throws CallStateException { method in class:ImsPhone
594 dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) method in class:ImsPhone
617 return mCT.dial(dialString, videoState, intentExtras);
628 return mCT.dial(dialString, videoState, intentExtras);
630 return mCT.dial(mmi.getDialingNumber(), mmi.getCLIRMode(), videoState, intentExtras);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
GsmCdmaPhone.java 1051 public Connection dial(String dialString, int videoState) throws CallStateException { method in class:GsmCdmaPhone
1056 public Connection dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) method in class:GsmCdmaPhone
    [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...]
CommandsInterface.java 52 // Used as parameter to dial() and setCLIR() below
826 void dial (String address, int clirMode, Message result); method in interface:CommandsInterface
839 void dial(String address, int clirMode, UUSInfo uusInfo, Message result); method in interface:CommandsInterface
    [all...]
  /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/test/
SimulatedCommands.java 513 public void dial (String address, int clirMode, Message result) { method in class:SimulatedCommands
514 SimulatedCommandsVerifier.getInstance().dial(address, clirMode, result);
532 public void dial(String address, int clirMode, UUSInfo uusInfo, Message result) { method in class:SimulatedCommands
533 SimulatedCommandsVerifier.getInstance().dial(address, clirMode, uusInfo, result);
    [all...]
SimulatedCommandsVerifier.java 663 public void dial(String address, int clirMode, Message result) { method in class:SimulatedCommandsVerifier
668 public void dial(String address, int clirMode, UUSInfo uusInfo, Message result) { method in class:SimulatedCommandsVerifier
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
GsmCdmaPhoneTest.java 301 Connection connection = mPhoneUT.dial("1234567890", 0);
302 verify(mCT).dial("1234567890", null, null);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
ImsPhoneTest.java 154 // dial string length > 1
173 // dial string length > 2
176 // dial string length > 1
200 // dial string length > 2
203 // dial string length > 1
226 // dial string length > 1
229 // dial string length == 1
239 // dial string length > 1
242 // dial string length == 1
256 // dial string length >
    [all...]

Completed in 1130 milliseconds

1 23 4 5 6