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:max_retransmit
(Results
1 - 7
of
7
) sorted by relevance
/third_party/libcoap/include/coap3/
H
A
D
coap_session_internal.h
150
uint16_t
max_retransmit
; /**< maximum re-transmit count
member
391
#define COAP_MAX_RETRANSMIT(s) ((s)->
max_retransmit
)
423
((1 << ((s)->
max_retransmit
)) -1) * \
436
((1 << ((s)->
max_retransmit
+ 1)) -1) * \
/third_party/libcoap/tests/
H
A
D
test_session.c
53
CU_ASSERT(session->
max_retransmit
== COAP_DEFAULT_MAX_RETRANSMIT);
in t_session2()
/third_party/libcoap/src/
H
A
D
coap_session.c
307
session->
max_retransmit
= value;
in coap_session_set_max_retransmit()
308
coap_log_debug("***%s: session
max_retransmit
set to %u\n",
in coap_session_set_max_retransmit()
309
coap_session_str(session), session->
max_retransmit
);
in coap_session_set_max_retransmit()
420
return session->
max_retransmit
;
in coap_session_get_max_retransmit()
565
session->
max_retransmit
= COAP_DEFAULT_MAX_RETRANSMIT;
in coap_make_session()
H
A
D
coap_gnutls.c
2389
if ((++c_session->dtls_timeout_count > c_session->
max_retransmit
) ||
in coap_dtls_handle_timeout()
H
A
D
coap_mbedtls.c
2035
if ((++c_session->dtls_timeout_count > c_session->
max_retransmit
) ||
H
A
D
coap_net.c
1622
if (node->retransmit_cnt < node->session->
max_retransmit
) {
in coap_retransmit()
H
A
D
coap_openssl.c
3103
if ((++session->dtls_timeout_count > session->
max_retransmit
) ||
in coap_dtls_handle_timeout()
Completed in 21 milliseconds