Home
last modified time | relevance | path

Searched full:processed (Results 1 – 25 of 299) sorted by relevance

12345678910>>...12

/Zephyr-latest/samples/subsys/zbus/work_queue/
DREADME.rst28 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 …]
Dsample.yaml12 - "I: Sensor msg processed by CALLBACK fh1: temp = 10, press = 1, humidity = 100"
13 - "I: Sensor msg processed by CALLBACK fh2: temp = 10, press = 1, humidity = 100"
14 - "I: Sensor msg processed by CALLBACK fh3: temp = 10, press = 1, humidity = 100"
15 - "I: Sensor msg processed by WORK QUEUE handler dh1: temp = 10, press = 1, humidity = 100"
16 - "I: Sensor msg processed by WORK QUEUE handler dh2: temp = 10, press = 1, humidity = 100"
17 - "I: Sensor msg processed by WORK QUEUE handler dh3: temp = 10, press = 1, humidity = 100"
18 - "I: Sensor msg processed by THREAD handler 1: temp = 10, press = 1, humidity = 100"
19 - "I: Sensor msg processed by THREAD handler 2: temp = 10, press = 1, humidity = 100"
20 - "I: Sensor msg processed by THREAD handler 3: temp = 10, press = 1, humidity = 100"
21 - "I: Sensor msg processed by CALLBACK fh1: temp = 20, press = 2, humidity = 200"
[all …]
/Zephyr-latest/samples/userspace/prod_consumer/
DREADME.rst11 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/scripts/footprint/
Dsize_report295 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/subsys/logging/
DKconfig.links18 Dedicated buffer allows to maintain ordering of processed messages.
19 If 0, main buffer is used and messages are processed in the order of
DKconfig.mode15 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/subsys/zbus/work_queue/src/
Dmain.c42 LOG_INF("Sensor msg processed by CALLBACK fh1: temp = %u, press = %u, humidity = %u", in fh1_cb()
52 LOG_INF("Sensor msg processed by CALLBACK fh2: temp = %u, press = %u, humidity = %u", in fh2_cb()
62 LOG_INF("Sensor msg processed by CALLBACK fh3: temp = %u, press = %u, humidity = %u", in fh3_cb()
85 LOG_INF("Sensor msg processed by WORK QUEUE handler dh%u: temp = %u, press = %u, " in wq_dh_cb()
140 LOG_INF("Sensor msg processed by THREAD handler 1: temp = %u, press = %u, " in thread_handler1_task()
159 LOG_INF("Sensor msg processed by THREAD handler 2: temp = %u, press = %u, " in thread_handler2_task()
178 LOG_INF("Sensor msg processed by THREAD handler 3: temp = %u, press = %u, " in thread_handler3_task()
/Zephyr-latest/samples/userspace/prod_consumer/src/
Dsample_driver.h34 * Write some processed data to the sample driver
37 * write this processed data back to the driver.
40 * @param buf Processed data, of size SAMPLE_DRIVER_MSG_SIZE
Dapp_b.c53 * Do some processing, and the put the processed data in processor_thread()
60 * to the data, which is untrusted and hence processed in in processor_thread()
68 /* Stick the now-processed data into the outgoing queue, in processor_thread()
/Zephyr-latest/subsys/storage/stream/
Dstream_flash.c203 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/doc/connectivity/bluetooth/api/mesh/
Dsrpl_srv.rst11 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/tests/drivers/uart/uart_basic_api/src/
Dtest_uart_pending.c28 * indicating there are no more pending interrupts to be processed. If 0
33 * even tho there aren't any further RX and TX IRQs to be processed it
60 * that there are no more RX interrupts to be processed. in uart_pending_callback()
62 * there is no more RX data in the RX buffer to be processed, in uart_pending_callback()
/Zephyr-latest/subsys/input/
DKconfig28 Input events callbacks are processed synchronously in the context of
36 processed asynchronously in a dedicated thread.
/Zephyr-latest/samples/arch/smp/pktqueue/src/
Dmain.c9 /* Amount of parallel processed sender/receiver queues of packet headers */
37 /* Variable which indicates the amount of processed queues */
162 printk("Each of %d parallel queues is processed by %d threads" in main()
184 /* Wait until all queues are not processed */ in main()
214 "All %d headers were processed in %d msec\n", in main()
/Zephyr-latest/include/zephyr/logging/
Dlog_output.h80 * @return Number of bytes processed, dropped or discarded.
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/include/zephyr/net/http/
Dserver.h163 /** Indicates the status of the currently processed piece of data. */
345 /** Currently processed resource detail. */
405 /** Cursor indicating currently processed byte. */
417 /** Currently processed HTTP/2 frame. */
420 /** Currently processed resource detail. */
423 /** Currently processed stream. */
447 /** Temp buffer for currently processed header (HTTP/1 only). */
459 /** Length of the payload length in the currently processed request
489 /** Flag indicating Websocket key is being processed. */
/Zephyr-latest/samples/net/sockets/http_server/src/
Dmain.c77 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/soc/nxp/mcx/mcxw/
DKconfig.defconfig26 # need to be queued and processed by a dedicated thread
/Zephyr-latest/subsys/shell/
DKconfig.template.shell_log_queue_size7 Size of buffer for messages that can be enqueued in order to be processed
/Zephyr-latest/subsys/net/l2/ieee802154/
Dieee802154_6lo_fragment.h39 ctx->processed = 0U; in ieee802154_6lo_fragment_ctx_init()
53 * @return pointer to the next buffer to be processed or NULL if no more
/Zephyr-latest/tests/bsim/bluetooth/mesh/tests_scripts/beacon/
Dbeacon_cache.sh13 # 3. RX device verifies that only one of the two identical beacons was processed.
/Zephyr-latest/tests/bsim/bluetooth/mesh/tests_scripts/priv_beacon/
Dpriv_beacon_cache.sh13 # 3. RX device verifies that only one of the two identical beacons was processed.
/Zephyr-latest/samples/drivers/i2c/custom_target/src/
Dmain.c49 * @brief Callback which is called when a read is processed from the master.
55 printk("sample target read processed: 0x%02x\n", *val); in sample_target_read_processed_cb()
/Zephyr-latest/include/zephyr/mgmt/mcumgr/transport/
Dsmp_dummy.h29 * @brief Adds SMPC data to the internal buffer to be processed
40 * @retval net buffer of processed data
/Zephyr-latest/subsys/net/lib/dns/
Ddns_cache.c37 NET_WARN("Query string to big to be processed %u >= " in dns_cache_add()
79 NET_WARN("Query string to big to be processed %u >= " in dns_cache_remove()
110 NET_WARN("Query string to big to be processed %u >= " in dns_cache_find()

12345678910>>...12