/Zephyr-latest/tests/lib/heap/src/ |
D | main.c | 128 size_t chunk = ROUND_DOWN(addr - 1, 8); in testalloc() local 129 size_t hdr = addr - chunk; in testalloc()
|
/Zephyr-latest/subsys/mgmt/hawkbit/ |
D | hawkbit.c | 675 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()
|
D | Kconfig | 217 0 means that the progress will be saved every time a new chunk is downloaded.
|
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/ |
D | blob_cli.rst | 108 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
|
D | blob_srv.rst | 20 and chunk only once. The BLOB Transfer Server also ensures that any missing chunks are resent by the
|
D | blob.rst | 70 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/ |
D | test_blob.c | 77 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()
|
D | test_dfu.c | 99 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/ |
D | blob_cli.c | 676 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()
|
D | Kconfig | 849 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/ |
D | smp_group_8.rst | 36 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; |
|
D | smp_group_1.rst | 262 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/ |
D | Kconfig | 132 chunk.
|
/Zephyr-latest/tests/bluetooth/tester/src/ |
D | btp_mesh.c | 82 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/ |
D | checkpatch.pl | 5496 for my $chunk (@chunks) { 5497 my ($cond, $block) = @{$chunk};
|
/Zephyr-latest/doc/releases/ |
D | release-notes-1.13.rst | 183 * HTTP fix when sending the last chunk.
|
D | release-notes-2.5.rst | 915 * Allow the final data chunk in the image to be unaligned in
|
D | release-notes-3.1.rst | 955 buffer to copy data out of CBOR encoded buffer. The file/image chunk size
|
D | release-notes-3.3.rst | 3707 * :github:`40928` - mgmt/mcumgr/lib: Check image consistency after writing last chunk
|