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:block_opt
(Results
1 - 3
of
3
) sorted by relevance
/third_party/libcoap/include/coap3/
H
A
D
coap_block.h
96
* Returns the value of field @c num in the given block option @p
block_opt
.
98
unsigned int coap_opt_block_num(const coap_opt_t *
block_opt
);
110
/** Sets the More-bit in @p
block_opt
*/
112
coap_opt_block_set_m(coap_opt_t *
block_opt
, int m) {
114
*(coap_opt_value(
block_opt
) + (coap_opt_length(
block_opt
) - 1)) |= 0x08;
116
*(coap_opt_value(
block_opt
) + (coap_opt_length(
block_opt
) - 1)) &= ~0x08;
/third_party/libcoap/src/
H
A
D
coap_block.c
39
coap_opt_block_num(const coap_opt_t *
block_opt
) {
in coap_opt_block_num()
argument
43
len = coap_opt_length(
block_opt
);
in coap_opt_block_num()
50
num = coap_decode_var_bytes(coap_opt_value(
block_opt
),
in coap_opt_block_num()
51
coap_opt_length(
block_opt
) - 1);
in coap_opt_block_num()
54
return (num << 4) | ((COAP_OPT_BLOCK_END_BYTE(
block_opt
) & 0xF0) >> 4);
in coap_opt_block_num()
1034
uint16_t
block_opt
= (session->block_mode & COAP_BLOCK_HAS_Q_BLOCK) ?
in coap_add_data_large_response()
local
1037
uint16_t
block_opt
= COAP_OPTION_BLOCK2;
in coap_add_data_large_response()
local
1068
block_opt
= COAP_OPTION_Q_BLOCK2;
in coap_add_data_large_response()
1090
res = coap_write_block_b_opt(session, &block,
block_opt
, response,
in coap_add_data_large_response()
2221
uint16_t
block_opt
in coap_handle_request_send_block()
local
3346
uint16_t
block_opt
= 0;
coap_handle_response_get_block()
local
[all...]
/third_party/libcoap/examples/
H
A
D
coap-client.c
385
coap_opt_t *
block_opt
;
in message_handler()
local
436
block_opt
= coap_check_option(received, COAP_OPTION_BLOCK2, &opt_iter);
in message_handler()
437
if (!single_block_requested &&
block_opt
) { /* handle Block2 */
in message_handler()
440
if (coap_opt_block_num(
block_opt
) == 0) {
in message_handler()
445
if (COAP_OPT_BLOCK_MORE(
block_opt
)) {
in message_handler()
Completed in 10 milliseconds