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:netif_list
(Results
1 - 11
of
11
) sorted by relevance
/third_party/lwip/test/unit/mqtt/
H
A
D
test_mqtt.c
30
for (n =
netif_list
; n != NULL; n = n->next) {
in test_mqtt_init_netif()
36
netif_list
= netif;
in test_mqtt_init_netif()
46
old_netif_list =
netif_list
;
in mqtt_setup()
48
netif_list
= NULL;
in mqtt_setup()
56
netif_list
= NULL;
in mqtt_teardown()
58
/* restore
netif_list
for next tests (e.g. loopif) */
in mqtt_teardown()
59
netif_list
= old_netif_list;
in mqtt_teardown()
/third_party/lwip/test/unit/ip4/
H
A
D
test_ip4.c
20
struct netif *input_netif =
netif_list
; /* just use any netif */
in create_ip4_input_fragment()
66
if (
netif_list
->loop_first != NULL) {
in ip4_teardown()
67
pbuf_free(
netif_list
->loop_first);
in ip4_teardown()
68
netif_list
->loop_first = NULL;
in ip4_teardown()
70
netif_list
->loop_last = NULL;
in ip4_teardown()
/third_party/lwip/test/unit/udp/
H
A
D
test_udp.c
74
fail_unless(
netif_list
!= NULL); /* the loopif */
in default_netif_add()
75
fail_unless(
netif_list
->next == NULL);
in default_netif_add()
77
fail_unless(
netif_list
== NULL);
in default_netif_add()
108
fail_unless(
netif_list
!= NULL); /* the loopif */
in default_netif_remove()
109
fail_unless(
netif_list
->next == NULL);
in default_netif_remove()
111
fail_unless(
netif_list
== NULL);
in default_netif_remove()
/third_party/lwip/test/unit/ip6/
H
A
D
test_ip6.c
78
if (
netif_list
->loop_first != NULL) {
in ip6_teardown()
79
pbuf_free(
netif_list
->loop_first);
in ip6_teardown()
80
netif_list
->loop_first = NULL;
in ip6_teardown()
82
netif_list
->loop_last = NULL;
in ip6_teardown()
/third_party/lwip/src/core/ipv6/
H
A
D
ip6.c
103
if ((group->
netif_list
!= NULL) && (group->
netif_list
->next == NULL)) {
104
if (!netif_is_up(group->
netif_list
) || !netif_is_link_up(group->
netif_list
) ||
105
(ip6_addr_has_zone(dest) && !ip6_addr_test_zone(dest, group->
netif_list
))) {
107
if ((
netif_list
!= NULL) && (
netif_list
->next == NULL)) {
108
if (!netif_is_up(
netif_list
) || !netif_is_link_up(
netif_list
) ||
109
(ip6_addr_has_zone(dest) && !ip6_addr_test_zone(dest,
netif_list
))) {
[all...]
/third_party/lwip/src/core/
H
A
D
netif.c
111
struct netif *
netif_list
;
variable
461
for (netif2 = group->
netif_list
; netif2 != NULL; netif2 = netif2->next) {
463
for (netif2 =
netif_list
; netif2 != NULL; netif2 = netif2->next) {
491
netif->next = group->
netif_list
;
492
group->
netif_list
= netif;
494
netif->next =
netif_list
;
495
netif_list
= netif;
887
if (group->
netif_list
== netif) {
888
group->
netif_list
= netif->next;
890
if (
netif_list
[all...]
/third_party/lwip/src/include/lwip/
H
A
D
net_group.h
44
struct netif *
netif_list
;
member
H
A
D
netif.h
416
#define NETIF_FOREACH(netif, group) for ((netif) = group->
netif_list
; (netif) != NULL; (netif) = (netif)->next)
419
extern struct netif *
netif_list
;
420
#define NETIF_FOREACH(netif) for ((netif) =
netif_list
; (netif) != NULL; (netif) = (netif)->next)
/third_party/lwip/test/unit/tcp/
H
A
D
test_tcp_oos.c
127
old_netif_list =
netif_list
;
in tcp_oos_setup()
129
netif_list
= NULL;
in tcp_oos_setup()
138
netif_list
= NULL;
in tcp_oos_teardown()
141
/* restore
netif_list
for next tests (e.g. loopif) */
in tcp_oos_teardown()
142
netif_list
= old_netif_list;
in tcp_oos_teardown()
H
A
D
tcp_helper.c
312
for (n =
netif_list
; n != NULL; n = n->next) {
in test_tcp_init_netif()
318
netif_list
= netif;
in test_tcp_init_netif()
H
A
D
test_tcp.c
51
old_netif_list =
netif_list
;
in tcp_setup()
53
netif_list
= NULL;
in tcp_setup()
69
netif_list
= NULL;
in tcp_teardown()
72
/* restore
netif_list
for next tests (e.g. loopif) */
in tcp_teardown()
73
netif_list
= old_netif_list;
in tcp_teardown()
Completed in 10 milliseconds