Home
last modified time | relevance | path

Searched refs:chunk (Results 26 – 44 of 44) sorted by relevance

12

/Zephyr-latest/tests/lib/heap/src/
Dmain.c128 size_t chunk = ROUND_DOWN(addr - 1, 8); in testalloc() local
129 size_t hdr = addr - chunk; in testalloc()
/Zephyr-latest/subsys/mgmt/hawkbit/
Dhawkbit.c675 struct hawkbit_dep_res_chunk *chunk; in hawkbit_parse_deployment() local
685 chunk = &res->deployment.chunks[0]; in hawkbit_parse_deployment()
686 if (strcmp("bApp", chunk->part)) { in hawkbit_parse_deployment()
687 LOG_ERR("Only part 'bApp' is supported; got %s", chunk->part); in hawkbit_parse_deployment()
691 num_artifacts = chunk->num_artifacts; in hawkbit_parse_deployment()
697 artifact = &chunk->artifacts[0]; in hawkbit_parse_deployment()
DKconfig217 0 means that the progress will be saved every time a new chunk is downloaded.
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/
Dblob_cli.rst108 callback, and the resulting capabilities can be used to determine the block and chunk sizes required
117 block size in logarithmic representation and the chunk size. The BLOB ID is application defined, but
Dblob_srv.rst20 and chunk only once. The BLOB Transfer Server also ensures that any missing chunks are resent by the
Dblob.rst70 Each block is divided into chunks. A chunk is the smallest data unit in the BLOB transfer, and must
145 will transfer the BLOB with the highest possible block and chunk size.
/Zephyr-latest/tests/bsim/bluetooth/mesh/src/
Dtest_blob.c77 const struct bt_mesh_blob_chunk *chunk) in blob_chunk_wr() argument
79 partial_block += chunk->size; in blob_chunk_wr()
103 const struct bt_mesh_blob_chunk *chunk) in blob_chunk_rd() argument
105 memset(chunk->data, 0, chunk->size); in blob_chunk_rd()
Dtest_dfu.c99 const struct bt_mesh_blob_chunk *chunk) in dummy_blob_chunk_wr() argument
107 const struct bt_mesh_blob_chunk *chunk) in dummy_blob_chunk_rd() argument
109 memset(chunk->data, 0, chunk->size); in dummy_blob_chunk_rd()
/Zephyr-latest/subsys/bluetooth/mesh/
Dblob_cli.c676 struct bt_mesh_blob_chunk chunk; in chunk_tx() local
682 chunk.size = chunk_size(cli->xfer, &cli->block, cli->chunk_idx); in chunk_tx()
683 chunk.offset = cli->xfer->chunk_size * cli->chunk_idx; in chunk_tx()
684 chunk.data = net_buf_simple_add(&buf, chunk.size); in chunk_tx()
686 err = cli->io->rd(cli->io, cli->xfer, &cli->block, &chunk); in chunk_tx()
DKconfig849 int "Maximum delayable message storage chunk"
860 It is recommended to keep chunk size equal to the reasonable small value to prevent
926 control the chunk count in the request. If the BLOB Transfer Server
966 int "BLOB Server chunk size"
970 Set the chunk size for the BLOB Server.
971 The actual maximum chunk size depends on how many segments are
994 int "BLOB Client chunk size"
998 Set the chunk size for the BLOB Client.
999 The actual maximum chunk size depends on how many segments are
1005 int "BLOB Client chunk send interval"
[all …]
/Zephyr-latest/doc/services/device_mgmt/smp_groups/
Dsmp_group_8.rst36 Request does not carry size of requested chunk, the size is specified
144 | "data" | chunk of data read from file; it is CBOR encoded stream of bytes with |
164 The protocol supports stateless upload where each requests carries different chunk
226 | "data" | chunk of data to write to the file; |
Dsmp_group_1.rst262 The image upload request is sent for each chunk of image that is uploaded, until
300 | "off" | offset of image chunk the request carries. |
321 There is no field representing size of chunk that is carried as "data" because
/Zephyr-latest/subsys/mgmt/ec_host_cmd/backends/
DKconfig132 chunk.
/Zephyr-latest/tests/bluetooth/tester/src/
Dbtp_mesh.c82 const struct bt_mesh_blob_chunk *chunk) in blob_chunk_wr() argument
84 for (int i = 0; i < chunk->size; ++i) { in blob_chunk_wr()
85 blob_rx_sum += chunk->data[i]; in blob_chunk_wr()
86 if (chunk->data[i] != in blob_chunk_wr()
87 blob_data[(i + chunk->offset) % strlen(blob_data)]) { in blob_chunk_wr()
98 const struct bt_mesh_blob_chunk *chunk) in blob_chunk_rd() argument
100 for (int i = 0; i < chunk->size; ++i) { in blob_chunk_rd()
101 chunk->data[i] = in blob_chunk_rd()
102 blob_data[(i + chunk->offset) % strlen(blob_data)]; in blob_chunk_rd()
/Zephyr-latest/scripts/
Dcheckpatch.pl5496 for my $chunk (@chunks) {
5497 my ($cond, $block) = @{$chunk};
/Zephyr-latest/doc/releases/
Drelease-notes-1.13.rst183 * HTTP fix when sending the last chunk.
Drelease-notes-2.5.rst915 * Allow the final data chunk in the image to be unaligned in
Drelease-notes-3.1.rst955 buffer to copy data out of CBOR encoded buffer. The file/image chunk size
Drelease-notes-3.3.rst3707 * :github:`40928` - mgmt/mcumgr/lib: Check image consistency after writing last chunk

12