/Zephyr-latest/samples/subsys/zbus/work_queue/ |
D | README.rst | 28 I: Sensor msg processed by CALLBACK fh1: temp = 10, press = 1, humidity = 100 29 I: Sensor msg processed by CALLBACK fh2: temp = 10, press = 1, humidity = 100 30 I: Sensor msg processed by CALLBACK fh3: temp = 10, press = 1, humidity = 100 31 I: Sensor msg processed by WORK QUEUE handler dh1: temp = 10, press = 1, humidity = 100 32 I: Sensor msg processed by WORK QUEUE handler dh2: temp = 10, press = 1, humidity = 100 33 I: Sensor msg processed by WORK QUEUE handler dh3: temp = 10, press = 1, humidity = 100 34 I: Sensor msg processed by THREAD handler 1: temp = 10, press = 1, humidity = 100 35 I: Sensor msg processed by THREAD handler 2: temp = 10, press = 1, humidity = 100 36 I: Sensor msg processed by THREAD handler 3: temp = 10, press = 1, humidity = 100 37 I: Sensor msg processed by CALLBACK fh1: temp = 20, press = 2, humidity = 200 [all …]
|
/Zephyr-latest/scripts/footprint/ |
D | size_report | 295 def do_simple_name_matching(dwarfinfo, symbol_dict, processed): argument 301 mapped_symbols = processed['mapped_symbols'] 302 mapped_addresses = processed['mapped_addr'] 303 unmapped_symbols = processed['unmapped_symbols'] 380 processed['mapped_symbols'] = mapped_symbols 381 processed['mapped_addr'] = mapped_addresses 382 processed['unmapped_symbols'] = unmapped_symbols 383 processed['unmapped_dies'] = unmapped_dies 386 def mark_address_aliases(symbol_dict, processed): argument 396 mapped_symbols = processed['mapped_symbols'] [all …]
|
/Zephyr-latest/samples/userspace/prod_consumer/ |
D | README.rst | 11 to perform some processing on this data and then write the processed data 27 driver, buffer incoming data, and write it back once processed by 46 the processed data into another queue to be written back to the driver. 48 new items containing processed data. As it gets them it will write 72 I:writing processed data blob back to the sample device 76 I:writing processed data blob back to the sample device 80 I:writing processed data blob back to the sample device 84 I:writing processed data blob back to the sample device 88 I:writing processed data blob back to the sample device 92 I:writing processed data blob back to the sample device [all …]
|
/Zephyr-latest/include/zephyr/logging/ |
D | log_output.h | 202 int processed; in log_output_write() local 205 processed = outf(buf, len, ctx); in log_output_write() 206 len -= processed; in log_output_write() 207 buf += processed; in log_output_write()
|
/Zephyr-latest/subsys/storage/stream/ |
D | stream_flash.c | 203 int processed = 0; in stream_flash_buffered_write() local 215 while ((len - processed) >= in stream_flash_buffered_write() 217 memcpy(ctx->buf + ctx->buf_bytes, data + processed, in stream_flash_buffered_write() 227 processed += buf_empty_bytes; in stream_flash_buffered_write() 231 if (processed < len) { in stream_flash_buffered_write() 233 data + processed, len - processed); in stream_flash_buffered_write() 234 ctx->buf_bytes += len - processed; in stream_flash_buffered_write()
|
/Zephyr-latest/subsys/logging/ |
D | Kconfig.links | 18 Dedicated buffer allows to maintain ordering of processed messages. 19 If 0, main buffer is used and messages are processed in the order of
|
D | Kconfig.mode | 15 Log messages are buffered and processed later. This mode has the 22 When enabled log is processed in the context of the call. It impacts
|
/Zephyr-latest/samples/net/sockets/http_server/src/ |
D | main.c | 77 static size_t processed; in echo_handler() local 80 LOG_DBG("Transaction aborted after %zd bytes.", processed); in echo_handler() 81 processed = 0; in echo_handler() 87 processed += request_ctx->data_len; in echo_handler() 94 LOG_DBG("All data received (%zd bytes).", processed); in echo_handler() 95 processed = 0; in echo_handler()
|
/Zephyr-latest/subsys/net/l2/ieee802154/ |
D | ieee802154_6lo.h | 24 uint16_t processed; /* in bytes */ member
|
D | ieee802154_6lo_fragment.h | 39 ctx->processed = 0U; in ieee802154_6lo_fragment_ctx_init()
|
D | ieee802154_6lo_fragment.c | 188 ctx->processed += capacity; in ieee802154_6lo_fragment() 209 ctx->offset = ctx->processed >> 3; in ieee802154_6lo_fragment()
|
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/ |
D | srpl_srv.rst | 11 device. The SRPL is used to reject Solicitation PDUs that are already processed by a node. When a 12 valid Solicitation PDU message is successfully processed by a node, the SSRC field and SSEQ field
|
/Zephyr-latest/subsys/shell/ |
D | Kconfig.template.shell_log_queue_size | 7 Size of buffer for messages that can be enqueued in order to be processed
|
/Zephyr-latest/soc/nxp/mcx/mcxw/ |
D | Kconfig.defconfig | 26 # need to be queued and processed by a dedicated thread
|
/Zephyr-latest/include/zephyr/net/http/ |
D | client.h | 179 size_t processed; member
|
/Zephyr-latest/subsys/input/ |
D | Kconfig | 28 Input events callbacks are processed synchronously in the context of 36 processed asynchronously in a dedicated thread.
|
/Zephyr-latest/samples/arch/smp/pktqueue/ |
D | README.rst | 79 Each of 2 parallel queues is processed by 3 threads on 2 cores and contain 5000 packet headers. 84 All 20000 packet headers were processed in 89 msec
|
/Zephyr-latest/subsys/usb/device_next/class/ |
D | usbd_msc_scsi.c | 920 size_t processed = 0; in scsi_write_data() local 926 processed = ctx->write_cb(ctx, buf, length); in scsi_write_data() 928 ctx->remaining_data -= processed; in scsi_write_data() 929 if (processed == 0) { in scsi_write_data() 933 return processed; in scsi_write_data()
|
/Zephyr-latest/subsys/logging/backends/ |
D | Kconfig.uart | 28 In immediate logging mode, processed log messages are not buffered and are always
|
/Zephyr-latest/drivers/input/ |
D | Kconfig.kbd_matrix | 50 Maximum column count for a device processed by the input
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | http_server.rst | 240 static size_t processed; 245 LOG_DBG("Transaction aborted after %zd bytes.", processed); 246 processed = 0; 250 processed += request_ctx->data_len; 257 LOG_DBG("All data received (%zd bytes).", processed); 258 processed = 0;
|
/Zephyr-latest/doc/build/snippets/ |
D | writing.rst | 110 Snippets are processed in the order they are listed in the :makevar:`SNIPPET` 127 by the last processed snippet ends up in the final configurations. 131 be ``CONFIG_FOO=2`` because ``bar`` is processed after ``foo``.
|
/Zephyr-latest/doc/connectivity/bluetooth/api/ |
D | l2cap.rst | 17 marked as processed by returning 0 or using
|
/Zephyr-latest/doc/kernel/services/threads/ |
D | workqueue.rst | 11 work items in a first in, first out manner. Each work item is processed by 21 * A **queue** of work items that have been added, but not yet processed. 51 * Safe handling of work item resubmission when the item is being processed 67 executed by the workqueue's thread when the work item is processed. This 76 to the workqueue's queue. Once the workqueue's thread has processed all of 80 other items in the queue, a queued work item may be processed quickly or it 125 A pending work item *must not* be altered until the item has been processed 136 An ISR or a thread may need to schedule a work item that is to be processed 149 queued until it is processed in the standard manner. 189 where it remains queued until it is processed in the standard manner. [all …]
|
/Zephyr-latest/drivers/bluetooth/hci/ |
D | Kconfig.nxp | 30 If enabled, the HCI RX message is queued by the ISR, and the message is processed
|