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:coap_queue_t
(Results
1 - 10
of
10
) sorted by relevance
/third_party/libcoap/include/coap3/
H
A
D
coap_net_internal.h
34
struct
coap_queue_t
{
struct
35
struct
coap_queue_t
*next;
73
coap_queue_t
*sendqueue;
202
int coap_insert_node(
coap_queue_t
**queue,
coap_queue_t
*node);
211
int coap_delete_node(
coap_queue_t
*node);
220
void coap_delete_all(
coap_queue_t
*queue);
227
coap_queue_t
*coap_new_node(void);
239
coap_queue_t
*coap_peek_next(coap_context_t *context);
244
coap_queue_t
*coap_pop_nex
[all...]
H
A
D
coap_forward_decls.h
76
typedef struct
coap_queue_t
coap_queue_t
;
typedef
H
A
D
coap_session_internal.h
94
coap_queue_t
*delayqueue; /**< list of delayed messages waiting to
345
coap_queue_t
*node);
/third_party/libcoap/tests/
H
A
D
test_sendqueue.c
29
coap_queue_t
*node[5];
32
add_timestamps(
coap_queue_t
*queue, size_t num) {
in add_timestamps()
119
coap_queue_t
*p;
in t_sendqueue5()
163
coap_queue_t
*tmpqueue = ctx->sendqueue;
in t_sendqueue6()
167
coap_queue_t
*p;
in t_sendqueue6()
192
coap_queue_t
*tmp_node;
in t_sendqueue7()
215
coap_queue_t
*tmp_node;
in t_sendqueue8()
236
coap_queue_t
*tmp_node;
in t_sendqueue9()
259
coap_queue_t
*tmp_node;
in t_sendqueue10()
294
for (n = 1; n < sizeof(node)/sizeof(
coap_queue_t
*);
in t_sendqueue_tests_create()
[all...]
/third_party/libcoap/src/
H
A
D
coap_net.c
104
COAP_STATIC_INLINE
coap_queue_t
*
106
return (
coap_queue_t
*)coap_malloc_type(COAP_NODE, sizeof(
coap_queue_t
));
in coap_malloc_node()
110
coap_free_node(
coap_queue_t
*node) {
in coap_free_node()
117
COAP_STATIC_INLINE
coap_queue_t
*
119
return (
coap_queue_t
*)memp_malloc(MEMP_COAP_NODE);
in coap_malloc_node()
123
coap_free_node(
coap_queue_t
*node) {
in coap_free_node()
143
coap_queue_t
*q = ctx->sendqueue;
in coap_adjust_basetime()
166
coap_insert_node(
coap_queue_t
**queue,
coap_queue_t
*nod
[all...]
H
A
D
coap_session.c
596
coap_queue_t
*q, *tmp;
in coap_session_mfree()
608
coap_queue_t
*queue = session->context->sendqueue;
in coap_session_mfree()
782
coap_queue_t
*node) {
in coap_session_delay_pdu()
784
coap_queue_t
*removed = NULL;
in coap_session_delay_pdu()
792
coap_queue_t
*q = NULL;
in coap_session_delay_pdu()
914
coap_queue_t
*q = session->delayqueue;
in coap_session_connected()
994
coap_queue_t
*q = session->context->sendqueue;
in coap_session_disconnected()
1045
coap_queue_t
*q = session->delayqueue;
in coap_session_disconnected()
H
A
D
coap_mem.c
246
static
coap_queue_t
node_storage_data[COAP_MAX_NODES];
H
A
D
coap_io.c
1360
coap_queue_t
*nextpdu;
H
A
D
coap_block.c
1660
coap_queue_t
*delayqueue;
in coap_send_q_blocks()
/third_party/libcoap/examples/lwip/config/
H
A
D
lwippools.h
143
LWIP_MEMPOOL(COAP_NODE, MEMP_NUM_COAPNODE, sizeof(
coap_queue_t
), "COAP_NODE")
Completed in 15 milliseconds