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

1 2

  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/proxy/
direct.go 16 func (direct) Dial(network, addr string) (net.Conn, error) {
17 return net.Dial(network, addr)
per_host_test.go 18 func (r *recordingProxy) Dial(network, addr string) (net.Conn, error) {
43 perHost.Dial("tcp", addr)
46 perHost.Dial("tcp", addr)
per_host.go 33 // Dial connects to the address addr on the given network through either
35 func (p *PerHost) Dial(network, addr string) (c net.Conn, err error) {
41 return p.dialerForRequest(host).Dial(network, addr)
socks5.go 63 // Dial connects to the address addr on the network net via the SOCKS5 proxy.
64 func (s *socks5) Dial(network, addr string) (net.Conn, error) {
71 conn, err := s.forward.Dial(s.network, s.addr)
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/proxy/
direct.go 16 func (direct) Dial(network, addr string) (net.Conn, error) {
17 return net.Dial(network, addr)
per_host_test.go 18 func (r *recordingProxy) Dial(network, addr string) (net.Conn, error) {
43 perHost.Dial("tcp", addr)
46 perHost.Dial("tcp", addr)
per_host.go 33 // Dial connects to the address addr on the given network through either
35 func (p *PerHost) Dial(network, addr string) (c net.Conn, err error) {
41 return p.dialerForRequest(host).Dial(network, addr)
socks5.go 63 // Dial connects to the address addr on the network net via the SOCKS5 proxy.
64 func (s *socks5) Dial(network, addr string) (net.Conn, error) {
71 conn, err := s.forward.Dial(s.network, s.addr)
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug243.go 25 var conn, _ = Dial("tcp", "", listen.Addr().Error())
48 func Dial(x, y, z string) (int, string) {
  /prebuilts/go/linux-x86/test/fixedbugs/
bug243.go 25 var conn, _ = Dial("tcp", "", listen.Addr().Error())
48 func Dial(x, y, z string) (int, string) {
  /prebuilts/go/darwin-x86/src/crypto/tls/
tls.go 91 // DialWithDialer connects to the given network address using dialer.Dial and
120 rawConn, err := dialer.Dial(network, addr)
163 // Dial connects to the given network address using net.Dial
166 // Dial interprets a nil configuration as equivalent to
169 func Dial(network, addr string, config *Config) (*Conn, error) {
  /prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/
client.go 117 // Dial connects to a JSON-RPC server at the specified network address.
118 func Dial(network, address string) (*rpc.Client, error) {
119 conn, err := net.Dial(network, address)
  /prebuilts/go/darwin-x86/src/net/textproto/
textproto.go 79 // Dial connects to the given address on the given network using net.Dial
81 func Dial(network, addr string) (*Conn, error) {
82 c, err := net.Dial(network, addr)
  /prebuilts/go/linux-x86/src/crypto/tls/
tls.go 91 // DialWithDialer connects to the given network address using dialer.Dial and
120 rawConn, err := dialer.Dial(network, addr)
163 // Dial connects to the given network address using net.Dial
166 // Dial interprets a nil configuration as equivalent to
169 func Dial(network, addr string, config *Config) (*Conn, error) {
  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
client.go 117 // Dial connects to a JSON-RPC server at the specified network address.
118 func Dial(network, address string) (*rpc.Client, error) {
119 conn, err := net.Dial(network, address)
  /prebuilts/go/linux-x86/src/net/textproto/
textproto.go 79 // Dial connects to the given address on the given network using net.Dial
81 func Dial(network, addr string) (*Conn, error) {
82 c, err := net.Dial(network, addr)
  /external/boringssl/src/ssl/test/runner/
tls.go 93 // DialWithDialer connects to the given network address using dialer.Dial and
122 rawConn, err := dialer.Dial(network, addr)
165 // Dial connects to the given network address using net.Dial
168 // Dial interprets a nil configuration as equivalent to
171 func Dial(network, addr string, config *Config) (*Conn, error) {
  /prebuilts/go/darwin-x86/src/net/
dial.go 18 // is therefore equivalent to just calling the Dial function.
20 // Timeout is the maximum amount of time a dial will wait for
68 // the dial should be canceled. Not all types of dials support
179 if op == "dial" && addr == "" {
188 if op == "dial" && hint != nil && addr.Network() != hint.Network() {
194 if err != nil || op != "dial" || hint == nil {
243 // Dial connects to the address on the named network.
261 // Dial will try each IP address in order until one succeeds.
264 // Dial("tcp", "golang.org:http")
265 // Dial("tcp", "192.0.2.1:http"
    [all...]
  /prebuilts/go/linux-x86/src/net/
dial.go 18 // is therefore equivalent to just calling the Dial function.
20 // Timeout is the maximum amount of time a dial will wait for
68 // the dial should be canceled. Not all types of dials support
179 if op == "dial" && addr == "" {
188 if op == "dial" && hint != nil && addr.Network() != hint.Network() {
194 if err != nil || op != "dial" || hint == nil {
243 // Dial connects to the address on the named network.
261 // Dial will try each IP address in order until one succeeds.
264 // Dial("tcp", "golang.org:http")
265 // Dial("tcp", "192.0.2.1:http"
    [all...]
  /prebuilts/go/darwin-x86/src/net/rpc/
client.go 244 conn, err := net.Dial(network, address)
261 Op: "dial-http",
268 // Dial connects to an RPC server at the specified network address.
269 func Dial(network, address string) (*Client, error) {
270 conn, err := net.Dial(network, address)
  /prebuilts/go/darwin-x86/src/net/smtp/
smtp.go 49 // Dial returns a new Client connected to an SMTP server at addr.
51 func Dial(addr string) (*Client, error) {
52 conn, err := net.Dial("tcp", addr)
328 c, err := Dial(addr)
  /prebuilts/go/linux-x86/src/net/rpc/
client.go 244 conn, err := net.Dial(network, address)
261 Op: "dial-http",
268 // Dial connects to an RPC server at the specified network address.
269 func Dial(network, address string) (*Client, error) {
270 conn, err := net.Dial(network, address)
  /prebuilts/go/linux-x86/src/net/smtp/
smtp.go 49 // Dial returns a new Client connected to an SMTP server at addr.
51 func Dial(addr string) (*Client, error) {
52 conn, err := net.Dial("tcp", addr)
328 c, err := Dial(addr)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
iedial.h 96 virtual HRESULT WINAPI Dial(void) = 0;
110 HRESULT (WINAPI *Dial)(IDialEngine *This);
126 #define IDialEngine_Dial(This) (This)->lpVtbl->Dial(This)
  /prebuilts/go/darwin-x86/src/log/syslog/
syslog.go 108 return Dial("", "", priority, tag)
111 // Dial establishes a connection to a log daemon by connecting to
115 // If network is empty, Dial will connect to the local syslog server.
116 // Otherwise, see the documentation for net.Dial for valid values
118 func Dial(network, raddr string, priority Priority, tag string) (*Writer, error) {
162 c, err = net.Dial(w.network, w.raddr)

Completed in 617 milliseconds

1 2