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:autoip
(Results
1 - 3
of
3
) sorted by relevance
/third_party/lwip/src/core/ipv4/
H
A
D
autoip.c
8
* @defgroup
autoip
AUTOIP
67
#include "lwip/
autoip
.h"
69
#include "lwip/prot/
autoip
.h"
98
* @ingroup
autoip
99
* Set a statically allocated struct
autoip
to work with.
102
* @param netif the netif for which to set the struct
autoip
103
* @param
autoip
(uninitialised)
autoip
struct allocated by the application
106
autoip_set_struct(struct netif *netif, struct
autoip
*
autoip
)
in autoip_set_struct()
argument
127
struct
autoip
*
autoip
= netif_
autoip
_data(netif);
autoip_restart()
local
138
struct
autoip
*
autoip
= netif_
autoip
_data(netif);
autoip_handle_arp_conflict()
local
171
struct
autoip
*
autoip
= netif_
autoip
_data(netif);
autoip_create_addr()
local
206
struct
autoip
*
autoip
= netif_
autoip
_data(netif);
autoip_arp_probe()
local
230
struct
autoip
*
autoip
= netif_
autoip
_data(netif);
autoip_bind()
local
257
struct
autoip
*
autoip
= netif_
autoip
_data(netif);
autoip_start()
local
301
struct
autoip
*
autoip
= netif_
autoip
_data(netif);
autoip_start_probing()
local
335
struct
autoip
*
autoip
= netif_
autoip
_data(netif);
autoip_network_changed()
local
351
struct
autoip
*
autoip
= netif_
autoip
_data(netif);
autoip_stop()
local
371
struct
autoip
*
autoip
= netif_
autoip
_data(netif);
autoip_tmr_tick()
local
395
struct
autoip
*
autoip
= netif_
autoip
_data(netif);
autoip_tmr()
local
478
struct
autoip
*
autoip
= netif_
autoip
_data(netif);
autoip_arp_reply()
local
537
struct
autoip
*
autoip
= netif_
autoip
_data(netif);
autoip_supplied_address()
local
546
struct
autoip
*
autoip
= netif_
autoip
_data(netif);
autoip_accept_packet()
local
[all...]
/third_party/lwip/src/include/lwip/
H
A
D
autoip.h
61
struct
autoip
struct
78
void autoip_set_struct(struct netif *netif, struct
autoip
*
autoip
);
79
/** Remove a struct
autoip
previously set to the netif using autoip_set_struct() */
80
#define autoip_remove_struct(netif) do { (netif)->
autoip
= NULL; } while (0)
91
#define netif_autoip_data(netif) ((struct
autoip
*)netif_get_client_data(netif, LWIP_NETIF_CLIENT_DATA_INDEX_AUTOIP))
/third_party/lwip/src/
H
A
D
Filelists.mk
56
CORE4FILES=$(LWIPDIR)/core/ipv4/
autoip
.c \
Completed in 2 milliseconds