HomeSort by relevance Sort by last modified time
    Searched defs:Conn (Results 1 - 22 of 22) sorted by null

  /prebuilts/go/darwin-x86/doc/progs/
timeout2.go 7 type Conn string
9 func (c Conn) DoQuery(query string) Result {
15 func Query(conns []Conn, query string) Result {
17 for _, conn := range conns {
18 go func(c Conn) {
23 }(conn)
  /prebuilts/go/linux-x86/doc/progs/
timeout2.go 7 type Conn string
9 func (c Conn) DoQuery(query string) Result {
15 func Query(conns []Conn, query string) Result {
17 for _, conn := range conns {
18 go func(c Conn) {
23 }(conn)
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue7405.go 20 Conn
41 type Conn interface {
  /prebuilts/go/linux-x86/test/fixedbugs/
issue7405.go 20 Conn
41 type Conn interface {
  /prebuilts/go/darwin-x86/src/net/textproto/
textproto.go 23 // Conn, a convenient packaging of Reader, Writer, and Pipeline for use
53 // A Conn represents a textual network protocol connection.
58 type Conn struct {
62 conn io.ReadWriteCloser
65 // NewConn returns a new Conn using conn for I/O.
66 func NewConn(conn io.ReadWriteCloser) *Conn {
67 return &Conn{
68 Reader: Reader{R: bufio.NewReader(conn)},
    [all...]
  /prebuilts/go/linux-x86/src/net/textproto/
textproto.go 23 // Conn, a convenient packaging of Reader, Writer, and Pipeline for use
53 // A Conn represents a textual network protocol connection.
58 type Conn struct {
62 conn io.ReadWriteCloser
65 // NewConn returns a new Conn using conn for I/O.
66 func NewConn(conn io.ReadWriteCloser) *Conn {
67 return &Conn{
68 Reader: Reader{R: bufio.NewReader(conn)},
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiDriver.c 357 ISCSI_CONNECTION *Conn;
376 Conn = NET_LIST_HEAD (&Private->Session.Conns, ISCSI_CONNECTION, Link);
391 Conn->Tcp4Io.Handle,
IScsiMisc.c 771 ISCSI_CONNECTION *Conn;
782 Conn = NET_LIST_USER_STRUCT_S (
788 Tcp4Io = &Conn->Tcp4Io;
IScsiProto.c 23 @param[in, out] Conn The iSCSI connection.
28 IN OUT ISCSI_CONNECTION *Conn
31 InsertTailList (&Session->Conns, &Conn->Link);
32 Conn->Session = Session;
39 @param[in, out] Conn The iSCSI connection.
43 IN OUT ISCSI_CONNECTION *Conn
46 RemoveEntryList (&Conn->Link);
47 Conn->Session->NumConns--;
48 Conn->Session = NULL;
115 @param[in, out] Conn The iSCSI connection to login.
    [all...]
IScsiProto.h 613 ISCSI_CONNECTION *Conn;
627 @param[in, out] Conn The iSCSI connection.
632 IN OUT ISCSI_CONNECTION *Conn
638 @param[in, out] Conn The iSCSI connection.
642 IN OUT ISCSI_CONNECTION *Conn
648 @param[in, out] Conn The iSCSI connection to login.
656 IN OUT ISCSI_CONNECTION *Conn
676 @param[in] Conn The connection to destroy.
680 IN ISCSI_CONNECTION *Conn
703 @param[in] Conn The connection in the iSCSI login phase.
    [all...]
  /prebuilts/go/darwin-x86/src/database/sql/driver/
driver.go 55 Open(name string) (Conn, error)
66 // package that a driver.Conn is in a bad state (such as the server
76 // Pinger is an optional interface that may be implemented by a Conn.
78 // If a Conn does not implement Pinger, the sql package's DB.Ping and
79 // DB.PingContext will check if there is at least one Conn available.
81 // If Conn.Ping returns ErrBadConn, DB.Ping and DB.PingContext will remove
82 // the Conn from pool.
87 // Execer is an optional interface that may be implemented by a Conn.
89 // If a Conn does not implement Execer, the sql package's DB.Exec will
100 // ExecerContext is an optional interface that may be implemented by a Conn
    [all...]
  /prebuilts/go/linux-x86/src/database/sql/driver/
driver.go 55 Open(name string) (Conn, error)
66 // package that a driver.Conn is in a bad state (such as the server
76 // Pinger is an optional interface that may be implemented by a Conn.
78 // If a Conn does not implement Pinger, the sql package's DB.Ping and
79 // DB.PingContext will check if there is at least one Conn available.
81 // If Conn.Ping returns ErrBadConn, DB.Ping and DB.PingContext will remove
82 // the Conn from pool.
87 // Execer is an optional interface that may be implemented by a Conn.
89 // If a Conn does not implement Execer, the sql package's DB.Exec will
100 // ExecerContext is an optional interface that may be implemented by a Conn
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
conn.go 23 // A Conn represents a secured connection.
24 // It implements the net.Conn interface.
25 type Conn struct {
27 conn net.Conn
33 // to running the handshake for this Conn. Other goroutines that need
70 // closeNotifySent is true if the Conn attempted to send an
99 // in Conn.Write.
105 // Access to net.Conn methods.
106 // Cannot just embed net.Conn because that woul
    [all...]
  /prebuilts/go/darwin-x86/src/net/
net.go 12 Conn and Listener interfaces. The crypto/tls package uses
17 conn, err := net.Dial("tcp", "golang.org:80")
21 fmt.Fprintf(conn, "GET / HTTP/1.0\r\n\r\n")
22 status, err := bufio.NewReader(conn).ReadString('\n')
32 conn, err := ln.Accept()
36 go handleConnection(conn)
114 // Conn is a generic stream-oriented network connection.
116 // Multiple goroutines may invoke methods on a Conn simultaneously.
117 type Conn interface {
168 type conn struct type
    [all...]
  /prebuilts/go/linux-x86/src/crypto/tls/
conn.go 23 // A Conn represents a secured connection.
24 // It implements the net.Conn interface.
25 type Conn struct {
27 conn net.Conn
33 // to running the handshake for this Conn. Other goroutines that need
70 // closeNotifySent is true if the Conn attempted to send an
99 // in Conn.Write.
105 // Access to net.Conn methods.
106 // Cannot just embed net.Conn because that woul
    [all...]
  /prebuilts/go/linux-x86/src/net/
net.go 12 Conn and Listener interfaces. The crypto/tls package uses
17 conn, err := net.Dial("tcp", "golang.org:80")
21 fmt.Fprintf(conn, "GET / HTTP/1.0\r\n\r\n")
22 status, err := bufio.NewReader(conn).ReadString('\n')
32 conn, err := ln.Accept()
36 go handleConnection(conn)
114 // Conn is a generic stream-oriented network connection.
116 // Multiple goroutines may invoke methods on a Conn simultaneously.
117 type Conn interface {
168 type conn struct type
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiDriver.c     [all...]
IScsiMisc.c     [all...]
IScsiProto.c 23 @param[in, out] Conn The iSCSI connection.
29 IN OUT ISCSI_CONNECTION *Conn
32 InsertTailList (&Session->Conns, &Conn->Link);
33 Conn->Session = Session;
40 @param[in, out] Conn The iSCSI connection.
45 IN OUT ISCSI_CONNECTION *Conn
48 RemoveEntryList (&Conn->Link);
49 Conn->Session->NumConns--;
50 Conn->Session = NULL;
122 @param[in, out] Conn The iSCSI connection to login.
    [all...]
IScsiProto.h 613 ISCSI_CONNECTION *Conn;
627 @param[in, out] Conn The iSCSI connection.
633 IN OUT ISCSI_CONNECTION *Conn
639 @param[in, out] Conn The iSCSI connection.
644 IN OUT ISCSI_CONNECTION *Conn
650 @param[in, out] Conn The iSCSI connection to login.
660 IN OUT ISCSI_CONNECTION *Conn,
680 @param[in] Conn The connection to destroy.
685 IN ISCSI_CONNECTION *Conn
723 @param[in] Conn The connection in the iSCSI login phase.
    [all...]
  /external/boringssl/src/ssl/test/runner/
conn.go 27 // A Conn represents a secured connection.
28 // It implements the net.Conn interface.
29 type Conn struct {
31 conn net.Conn
105 func (c *Conn) init() {
114 // Access to net.Conn methods.
115 // Cannot just embed net.Conn because that would
119 func (c *Conn) LocalAddr() net.Addr {
120 return c.conn.LocalAddr(
    [all...]
  /external/robolectric/v1/lib/main/
sqlite-jdbc-3.7.2.jar 

Completed in 407 milliseconds