HomeSort by relevance Sort by last modified time
    Searched full:newconn (Results 1 - 25 of 66) sorted by null

1 2 3

  /prebuilts/go/darwin-x86/src/net/textproto/
textproto.go 65 // NewConn returns a new Conn using conn for I/O.
66 func NewConn(conn io.ReadWriteCloser) *Conn {
86 return NewConn(c), nil
  /prebuilts/go/linux-x86/src/net/textproto/
textproto.go 65 // NewConn returns a new Conn using conn for I/O.
66 func NewConn(conn io.ReadWriteCloser) *Conn {
86 return NewConn(c), nil
  /external/syslinux/core/lwip/src/api/
api_msg.c 434 struct netconn *newconn; local
446 newconn = netconn_alloc(conn->type, conn->callback);
447 if (newconn == NULL) {
450 newconn->pcb.tcp = newpcb;
451 setup_tcp(newconn);
454 newconn->last_err = err;
456 if (sys_mbox_trypost(&conn->acceptmbox, newconn) != ERR_OK) {
459 newconn->pcb.tcp = NULL;
461 sys_mbox_free(&newconn->recvmbox);
462 sys_mbox_set_invalid(&newconn->recvmbox)
706 struct netconn *newconn = (struct netconn *)mem; local
    [all...]
sockets.c 237 * @param newconn the netconn for which to allocate a socket
243 alloc_socket(struct netconn *newconn, int accepted)
253 sockets[i].conn = newconn;
262 sockets[i].sendevent = (newconn->type == NETCONN_TCP ? (accepted != 0) : 1);
315 struct netconn *newconn; local
336 err = netconn_accept(sock->conn, &newconn);
342 LWIP_ASSERT("newconn != NULL", newconn != NULL);
344 netconn_set_noautorecved(newconn, 1);
347 err = netconn_peer(newconn, &naddr, &port)
    [all...]
api_lib.c 280 struct netconn *newconn; local
299 if (sys_arch_mbox_fetch(&conn->acceptmbox, (void **)&newconn, conn->recv_timeout) == SYS_ARCH_TIMEOUT) {
304 sys_arch_mbox_fetch(&conn->acceptmbox, (void **)&newconn, 0);
309 if (newconn == NULL) {
322 *new_conn = newconn;
  /external/selinux/libsepol/tests/policies/test-deps/
base-metreq.conf 208 newconn
252 newconn
base-notmetreq.conf 207 newconn
251 newconn
small-base.conf 208 newconn
252 newconn
  /external/selinux/libsepol/tests/policies/test-expander/
alias-base.conf 208 newconn
252 newconn
role-base.conf 208 newconn
252 newconn
user-base.conf 208 newconn
252 newconn
small-base.conf 208 newconn
252 newconn
  /external/selinux/libsepol/tests/policies/test-hooks/
cmp_policy.conf 208 newconn
252 newconn
small-base.conf 208 newconn
252 newconn
  /external/selinux/libsepol/tests/policies/test-linker/
small-base.conf 208 newconn
252 newconn
  /prebuilts/go/darwin-x86/src/net/http/
export_test.go 24 ExportServerNewConn = (*Server).newConn
  /prebuilts/go/linux-x86/src/net/http/
export_test.go 24 ExportServerNewConn = (*Server).newConn
  /prebuilts/go/darwin-x86/src/net/smtp/
smtp.go 63 text := textproto.NewConn(conn)
165 c.Text = textproto.NewConn(c.conn)
  /prebuilts/go/linux-x86/src/net/smtp/
smtp.go 63 text := textproto.NewConn(conn)
165 c.Text = textproto.NewConn(c.conn)
  /prebuilts/go/darwin-x86/src/net/http/fcgi/
fcgi.go 111 func newConn(rwc io.ReadWriteCloser) *conn {
fcgi_test.go 102 c := newConn(&nilCloser{buf})
  /prebuilts/go/linux-x86/src/net/http/fcgi/
fcgi.go 111 func newConn(rwc io.ReadWriteCloser) *conn {
fcgi_test.go 102 c := newConn(&nilCloser{buf})
  /external/selinux/python/sepolgen/src/share/
perm_map 307 newconn w 1
475 newconn w 1
    [all...]
  /external/selinux/python/sepolgen/tests/
perm_map 300 newconn w 1
468 newconn w 1
    [all...]

Completed in 1077 milliseconds

1 2 3