Home
last modified time | relevance | path

Searched refs:hello_len (Results 1 – 2 of 2) sorted by relevance

/external/tcpdump/
Dprint-olsr.c235 const u_char *msg_data, u_int hello_len) in olsr_print_lq_neighbor4() argument
239 while (hello_len >= sizeof(struct olsr_lq_neighbor4)) { in olsr_print_lq_neighbor4()
252 hello_len -= sizeof(struct olsr_lq_neighbor4); in olsr_print_lq_neighbor4()
259 const u_char *msg_data, u_int hello_len) in olsr_print_lq_neighbor6() argument
263 while (hello_len >= sizeof(struct olsr_lq_neighbor6)) { in olsr_print_lq_neighbor6()
276 hello_len -= sizeof(struct olsr_lq_neighbor6); in olsr_print_lq_neighbor6()
286 const u_char *msg_data, u_int hello_len) in olsr_print_neighbor() argument
293 while (hello_len >= sizeof(struct in_addr)) { in olsr_print_neighbor()
303 hello_len -= sizeof(struct in_addr); in olsr_print_neighbor()
323 u_int msg_type, msg_len, msg_tlen, hello_len; in olsr_print() local
[all …]
/external/compiler-rt/lib/asan/tests/
Dasan_str_test.cc100 size_t hello_len = 13; in TEST() local
101 size_t hello_size = (hello_len + 1) * sizeof(wchar_t); in TEST()
102 EXPECT_EQ(hello_len, wcslen(Ident(L"Hello, World!"))); in TEST()
105 EXPECT_EQ(hello_len, Ident(wcslen(heap_string))); in TEST()