/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) {
|
/external/syzkaller/pkg/rpctype/ |
rpc.go | 60 func Dial(addr string) (net.Conn, error) { 75 conn, err := Dial(addr)
|
/external/flatbuffers/grpc/tests/ |
go_test.go | 85 conn, err := grpc.Dial(addr, grpc.WithInsecure(), grpc.WithCodec(flatbuffers.FlatbuffersCodec{}))
|
/external/syzkaller/vendor/google.golang.org/appengine/internal/ |
net.go | 33 // Dial with a timeout in case the API host is MIA.
|
api.go | 62 Dial: limitDial,
|
api_pre17.go | 62 Dial: limitDial,
|
/external/syzkaller/vendor/google.golang.org/grpc/transport/ |
go16.go | 34 return (&net.Dialer{Cancel: ctx.Done()}).Dial(network, address)
|
/external/syzkaller/vendor/google.golang.org/grpc/ |
go16.go | 37 return (&net.Dialer{Cancel: ctx.Done()}).Dial(network, address)
|
clientconn.go | 80 // The following errors are returned from Dial and DialContext 97 // dialOptions configure a Dial call. dialOptions are set by the DialOption 98 // values passed to Dial. 111 // This is used by v1 balancer dial option WithBalancer to support v1 112 // balancer, and also by WithBalancerName dial option. 298 // WithBlock returns a DialOption which makes caller of Dial blocks until the underlying 299 // connection is up. Without this, Dial returns immediately and connecting the server 373 // FailOnNonTempDialError returns a DialOption that specifies if gRPC fails on non-temporary dial errors. 422 // parent. This function is used in nested channel creation (e.g. grpclb dial). 438 // Dial creates a client connection to the given target [all...] |
/external/syzkaller/vendor/cloud.google.com/go/compute/metadata/ |
metadata.go | 69 Dial: (&net.Dialer{ 72 }).Dial, 78 Dial: (&net.Dialer{ 81 }).Dial, 251 // Transport.Dial.Timeout fires (in two seconds).
|
/build/soong/ui/build/paths/ |
logs.go | 112 func dial(name string, lookup socketAddrFunc, timeout time.Duration) (net.Conn, error) { func 122 return dialer.Dial("unix", socket) 142 conn, err := dial(logSocket, lookup, timeout)
|
/external/syzkaller/syz-fuzzer/ |
testing.go | 35 conn, err := rpctype.Dial(hostAddr)
|
/external/syzkaller/vm/gvisor/ |
gvisor.go | 309 conn, err := net.Dial("tcp", fmt.Sprintf("127.0.0.1:%v", inst.port))
|
/external/ppp/pppd/plugins/radius/etc/ |
dictionary.ascend | 121 ATTRIBUTE Ascend-Dial-Number 227 string
|
/device/google/cuttlefish_common/guest/hals/ril/libril/ |
ril_service.cpp | 170 Return<void> dial(int32_t serial, const Dial& dialInfo); 517 const ::android::hardware::radio::V1_0::Dial& dialInfo, 1004 Return<void> RadioImpl_1_4::dial(int32_t serial, const Dial& dialInfo) { function in class:RadioImpl_1_4 1012 RIL_Dial dial = {}; local 3382 RIL_Dial dial = {}; local [all...] |
/external/syzkaller/vendor/golang.org/x/net/http2/ |
transport.go | 57 // DialTLS specifies an optional dial function for creating 60 // If DialTLS is nil, tls.Dial is used. 493 cn, err := tls.Dial(network, addr, cfg) [all...] |