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

1 2 3 4 5 6

  /prebuilts/go/darwin-x86/src/net/
external_test.go 40 dial func(string, string) (Conn, error)
46 dial: (&Dialer{DualStack: true}).Dial,
51 dial: Dial,
56 dial: Dial,
78 if err := fetchGoogle(tt.dial, network, addr); err != nil {
147 func fetchGoogle(dial func(string, string) (Conn, error), network, address string) error {
148 c, err := dial(network, address
    [all...]
dial_unix_test.go 76 // cancel the dial by messing with its write
92 t.Fatal("unexpected successful dial; want context canceled error")
102 if !ok || oe.Op != "dial" {
103 t.Fatalf("Dial error = %#v; want dial *OpError", err)
dial.go 17 // is therefore equivalent to just calling the Dial function.
19 // Timeout is the maximum amount of time a dial will wait for
66 // the dial should be canceled. Not all types of dials support
174 if op == "dial" && addr == "" {
183 if op == "dial" && hint != nil && addr.Network() != hint.Network() {
189 if err != nil || op != "dial" || hint == nil {
238 // Dial connects to the address on the named network.
253 // Dial("tcp", "192.0.2.1:80")
254 // Dial("tcp", "golang.org:http")
255 // Dial("tcp", "[2001:db8::1]:http"
    [all...]
server_test.go 100 c, err := d.Dial(tt.tnet, JoinHostPort(tt.taddr, port))
180 c, err := d.Dial(lss[i].Listener.Addr().Network(), lss[i].Listener.Addr().String())
209 dial bool // test with Dial
246 {snet: "udp", saddr: "127.0.0.1:0", tnet: "udp", taddr: "127.0.0.1", dial: true},
248 {snet: "udp", saddr: "[::1]:0", tnet: "udp", taddr: "::1", dial: true},
282 if tt.dial {
284 c2, err := d.Dial(tt.tnet, JoinHostPort(tt.taddr, port))
321 dial bool // test with Dial
    [all...]
  /prebuilts/go/linux-x86/src/net/
external_test.go 40 dial func(string, string) (Conn, error)
46 dial: (&Dialer{DualStack: true}).Dial,
51 dial: Dial,
56 dial: Dial,
78 if err := fetchGoogle(tt.dial, network, addr); err != nil {
147 func fetchGoogle(dial func(string, string) (Conn, error), network, address string) error {
148 c, err := dial(network, address
    [all...]
dial_unix_test.go 76 // cancel the dial by messing with its write
92 t.Fatal("unexpected successful dial; want context canceled error")
102 if !ok || oe.Op != "dial" {
103 t.Fatalf("Dial error = %#v; want dial *OpError", err)
dial.go 17 // is therefore equivalent to just calling the Dial function.
19 // Timeout is the maximum amount of time a dial will wait for
66 // the dial should be canceled. Not all types of dials support
174 if op == "dial" && addr == "" {
183 if op == "dial" && hint != nil && addr.Network() != hint.Network() {
189 if err != nil || op != "dial" || hint == nil {
238 // Dial connects to the address on the named network.
253 // Dial("tcp", "192.0.2.1:80")
254 // Dial("tcp", "golang.org:http")
255 // Dial("tcp", "[2001:db8::1]:http"
    [all...]
server_test.go 100 c, err := d.Dial(tt.tnet, JoinHostPort(tt.taddr, port))
180 c, err := d.Dial(lss[i].Listener.Addr().Network(), lss[i].Listener.Addr().String())
209 dial bool // test with Dial
246 {snet: "udp", saddr: "127.0.0.1:0", tnet: "udp", taddr: "127.0.0.1", dial: true},
248 {snet: "udp", saddr: "[::1]:0", tnet: "udp", taddr: "::1", dial: true},
282 if tt.dial {
284 c2, err := d.Dial(tt.tnet, JoinHostPort(tt.taddr, port))
321 dial bool // test with Dial
    [all...]
  /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);
  /prebuilts/go/darwin-x86/src/net/http/httptest/
server_test.go 64 dial := func() net.Conn {
65 c, err := net.Dial("tcp", ts.Listener.Addr().String())
73 cnew := dial()
77 cidle := dial()
  /prebuilts/go/linux-x86/src/net/http/httptest/
server_test.go 64 dial := func() net.Conn {
65 c, err := net.Dial("tcp", ts.Listener.Addr().String())
73 cnew := dial()
77 cidle := dial()
  /frameworks/base/core/java/android/bluetooth/
IBluetoothHeadsetClient.aidl 52 BluetoothHeadsetClientCall dial(in BluetoothDevice device, String number);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java.broken 161 mGSMPhone.dial("+13125551212");
649 mGSMPhone.dial("+13125551212");
771 Connection cn = mGSMPhone.dial("+13125551212");
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
GsmCdmaCallTracker.java 263 public synchronized Connection dial(String dialString, int clirMode, UUSInfo uusInfo, method in class:GsmCdmaCallTracker
270 throw new CallStateException("cannot dial in current state");
281 // but the dial might fail before this happens
285 // This is a hack to delay DIAL so that it is sent out to RIL only after
287 // multi-way conference calls due to DIAL being sent out before SWITCH is processed
303 throw new CallStateException("cannot dial in current state");
325 mCi.dial(mPendingMO.getAddress(), clirMode, uusInfo, obtainCompleteMessage());
376 private Connection dial(String dialString, int clirMode) throws CallStateException { method in class:GsmCdmaCallTracker
381 throw new CallStateException("cannot dial in current state");
440 mCi.dial(mPendingMO.getAddress(), clirMode, obtainCompleteMessage())
492 public Connection dial(String dialString) throws CallStateException { method in class:GsmCdmaCallTracker
501 public Connection dial(String dialString, UUSInfo uusInfo, Bundle intentExtras) method in class:GsmCdmaCallTracker
507 private Connection dial(String dialString, int clirMode, Bundle intentExtras) method in class:GsmCdmaCallTracker
    [all...]
PhoneInternalInterface.java 400 * @param dialString The dial string.
407 Connection dial(String dialString, int videoState) throws CallStateException; method in interface:PhoneInternalInterface
416 * encapsulate all dial arguments and decrease scaffolding headache.
418 * @param dialString The dial string.
427 Connection dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) method in interface:PhoneInternalInterface
432 * without SEND (so <code>dial</code> is not appropriate).
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
CallManagerTest.java 143 //verify can dial and dial function of the phone is being triggered
144 CallManager.getInstance().dial(mPhone,
148 verify(mPhone, times(1)).dial(mCaptorString.capture(), mCaptorInt.capture());
162 //verify can dial and dial function of the phone is being triggered
285 /* try dial with non-idle foreground call and background call */
286 CallManager.getInstance().dial(mPhone,
291 verify(mPhone, times(1)).dial(mCaptorString.capture(), mCaptorInt.capture());
GsmCdmaCallTrackerTest.java 83 /* Make sure radio state is power on before dial.
105 mCTUT.dial(mDialString);
116 verify(mSimulatedCommandsVerifier).dial(eq(PhoneNumberUtils.
219 mCTUT.dial(mDialString);
  /prebuilts/go/darwin-x86/test/stress/
runstress.go 44 c, err := d.Dial("tcp", a.String())
46 Println("did dial")
50 Println("closed dial")
  /prebuilts/go/linux-x86/test/stress/
runstress.go 44 c, err := d.Dial("tcp", a.String())
46 Println("did dial")
50 Println("closed 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/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...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
ImsPhoneCallTrackerTest.java 357 mCTUT.dial("+17005554141", ImsCallProfile.CALL_TYPE_VOICE, null);
384 mCTUT.dial("+17005554141", ImsCallProfile.CALL_TYPE_VOICE, null);
464 mCTUT.dial("+17005554141", ImsCallProfile.CALL_TYPE_VOICE, null);
  /prebuilts/go/darwin-x86/src/net/rpc/
server_test.go 141 client, err := Dial("tcp", addr)
279 client, err := Dial("tcp", addr)
501 return Dial("tcp", serverAddr)
508 func countMallocs(dial func() (*Client, error), t *testing.T) float64 {
510 client, err := dial()
633 func benchmarkEndToEnd(dial func() (*Client, error), b *testing.B) {
635 client, err := dial()
659 func benchmarkEndToEndAsync(dial func() (*Client, error), b *testing.B) {
665 client, err := dial()
  /prebuilts/go/linux-x86/src/net/rpc/
server_test.go 141 client, err := Dial("tcp", addr)
279 client, err := Dial("tcp", addr)
501 return Dial("tcp", serverAddr)
508 func countMallocs(dial func() (*Client, error), t *testing.T) float64 {
510 client, err := dial()
633 func benchmarkEndToEnd(dial func() (*Client, error), b *testing.B) {
635 client, err := dial()
659 func benchmarkEndToEndAsync(dial func() (*Client, error), b *testing.B) {
665 client, err := dial()

Completed in 393 milliseconds

1 2 3 4 5 6