Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:newconn
(Results
1 - 4
of
4
) sorted by relevance
/third_party/lwip/src/api/
H
A
D
api_msg.c
564
struct netconn *
newconn
;
local
589
* the new socket is unknown.
newconn
->socket is marked as -1. */
590
newconn
= netconn_alloc(conn->type, conn->callback);
591
if (
newconn
== NULL) {
599
newconn
->pcb.tcp = newpcb;
600
setup_tcp(
newconn
);
605
if (sys_mbox_trypost(&conn->acceptmbox,
newconn
) != ERR_OK) {
609
struct tcp_pcb *pcb =
newconn
->pcb.tcp;
616
newconn
->pcb.tcp = NULL;
618
sys_mbox_free(&
newconn
920
struct netconn *
newconn
= (struct netconn *)mem;
global()
local
[all...]
H
A
D
api_lib.c
476
struct netconn *
newconn
;
in netconn_accept()
local
543
newconn
= (struct netconn *)accept_ptr;
in netconn_accept()
546
API_MSG_VAR_REF(msg).conn =
newconn
;
in netconn_accept()
552
*new_conn =
newconn
;
in netconn_accept()
H
A
D
sockets.c
503
* @param
newconn
the netconn for which to allocate a socket
509
alloc_socket(struct netconn *
newconn
, int accepted)
in alloc_socket()
argument
528
sockets[i].conn =
newconn
;
in alloc_socket()
538
sockets[i].sendevent = (NETCONNTYPE_GROUP(
newconn
->type) == NETCONN_TCP ? (accepted != 0) : 1);
in alloc_socket()
632
struct netconn *
newconn
;
in lwip_accept()
local
647
err = netconn_accept(sock->conn, &
newconn
);
in lwip_accept()
660
LWIP_ASSERT("
newconn
!= NULL",
newconn
!= NULL);
in lwip_accept()
662
newsock = alloc_socket(
newconn
, 1);
in lwip_accept()
664
netconn_delete(
newconn
);
in lwip_accept()
[all...]
/third_party/python/Lib/test/
H
A
D
test_ssl.py
2686
newconn
, connaddr = self.sock.accept()
2690
handler = self.ConnectionHandler(self,
newconn
, connaddr)
Completed in 12 milliseconds