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:udphdr
(Results
1 - 18
of
18
) sorted by relevance
/third_party/lwip/src/core/
H
A
D
udp.c
207
struct udp_hdr *
udphdr
;
local
240
udphdr
= (struct udp_hdr *)p->payload;
248
src = lwip_ntohs(
udphdr
->src);
249
dest = lwip_ntohs(
udphdr
->dest);
251
udp_debug_print(
udphdr
);
256
LWIP_DEBUGF(UDP_DEBUG, (", %"U16_F") <-- (", lwip_ntohs(
udphdr
->dest)));
258
LWIP_DEBUGF(UDP_DEBUG, (", %"U16_F")\n", lwip_ntohs(
udphdr
->src)));
354
u16_t chklen = lwip_ntohs(
udphdr
->len);
374
if (
udphdr
->chksum != 0) {
759
struct udp_hdr *
udphdr
;
[all...]
/third_party/lwip/src/netif/
H
A
D
lowpan6_common.c
709
struct udp_hdr *
udphdr
;
in lowpan6_decompress_hdr()
local
714
udphdr
= (struct udp_hdr *)((u8_t *)decomp_buffer + ip6_offset);
in lowpan6_decompress_hdr()
729
udphdr
->src = lwip_htons(lowpan6_buffer[lowpan6_offset] << 8 | lowpan6_buffer[lowpan6_offset + 1]);
in lowpan6_decompress_hdr()
730
udphdr
->dest = lwip_htons(lowpan6_buffer[lowpan6_offset + 2] << 8 | lowpan6_buffer[lowpan6_offset + 3]);
in lowpan6_decompress_hdr()
733
udphdr
->src = lwip_htons(lowpan6_buffer[lowpan6_offset] << 8 | lowpan6_buffer[lowpan6_offset + 1]);
in lowpan6_decompress_hdr()
734
udphdr
->dest = lwip_htons(0xf000 | lowpan6_buffer[lowpan6_offset + 2]);
in lowpan6_decompress_hdr()
737
udphdr
->src = lwip_htons(0xf000 | lowpan6_buffer[lowpan6_offset]);
in lowpan6_decompress_hdr()
738
udphdr
->dest = lwip_htons(lowpan6_buffer[lowpan6_offset + 1] << 8 | lowpan6_buffer[lowpan6_offset + 2]);
in lowpan6_decompress_hdr()
741
udphdr
->src = lwip_htons(0xf0b0 | ((lowpan6_buffer[lowpan6_offset] >> 4) & 0x0f));
in lowpan6_decompress_hdr()
742
udphdr
in lowpan6_decompress_hdr()
[all...]
/third_party/lwip/src/include/lwip/
H
A
D
udp.h
186
void udp_debug_print(struct udp_hdr *
udphdr
);
188
#define udp_debug_print(
udphdr
)
/third_party/musl/porting/uniproton/kernel/include/netinet/
H
A
D
udp.h
18
struct
udphdr
{
struct
/third_party/musl/porting/liteos_m_iccarm/kernel/include/netinet/
H
A
D
udp.h
18
struct
udphdr
{
struct
/third_party/musl/porting/liteos_m/kernel/include/netinet/
H
A
D
udp.h
18
struct
udphdr
{
struct
/third_party/musl/include/netinet/
H
A
D
udp.h
18
struct
udphdr
{
struct
/third_party/toybox/toys/pending/
H
A
D
traceroute.c
266
struct
udphdr
*hudp;
in do_trace()
271
hudp = (struct
udphdr
*) ((char*)hip + (hip->ip_hl << 2));
in do_trace()
389
struct
udphdr
*hudp;
in do_trace()
393
hudp = (struct
udphdr
*) (hip + 1);
in do_trace()
H
A
D
dhcp6.c
114
struct
udphdr
udph;
H
A
D
dhcpd.c
164
struct
udphdr
udph;
170
struct
udphdr
udph;
H
A
D
dhcp.c
170
struct
udphdr
udph;
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H
A
D
fils_hlp.c
162
struct
udphdr
*udph;
in fils_dhcp_handler()
483
const struct
udphdr
*udph;
in fils_process_hlp_udp()
489
udph = (const struct
udphdr
*) (iph + 1);
in fils_process_hlp_udp()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H
A
D
fils_hlp.c
162
struct
udphdr
*udph;
in fils_dhcp_handler()
483
const struct
udphdr
*udph;
in fils_process_hlp_udp()
489
udph = (const struct
udphdr
*) (iph + 1);
in fils_process_hlp_udp()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
H
A
D
dhcp.h
43
struct
udphdr
udph;
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
H
A
D
dhcp.h
43
struct
udphdr
udph;
/third_party/lwip/src/core/ipv4/
H
A
D
ip4.c
623
const struct udp_hdr *
udphdr
= (const struct udp_hdr *)((const u8_t *)iphdr + iphdr_hlen);
local
625
lwip_ntohs(
udphdr
->dest)));
626
if (IP_ACCEPT_LINK_LAYER_ADDRESSED_PORT(
udphdr
->dest)) {
/third_party/nghttp2/bpf/
H
A
D
reuseport_kern.c
585
if (bpf_skb_load_bytes(reuse_md, sizeof(struct
udphdr
), qpktbuf,
in select_reuseport()
/third_party/lwip/src/api/
H
A
D
api_msg.c
263
const struct udp_hdr *
udphdr
= (const struct udp_hdr *)ip_next_header_ptr();
local
266
buf->toport_chksum =
udphdr
->dest;
Completed in 18 milliseconds