/Zephyr-latest/drivers/ieee802154/ |
D | ieee802154_uart_pipe.c | 184 if (upipe->stopped) { in upipe_cca() 280 if (upipe->stopped) { in upipe_tx() 301 if (!upipe->stopped) { in upipe_start() 305 upipe->stopped = false; in upipe_start() 314 if (upipe->stopped) { in upipe_stop() 318 upipe->stopped = true; in upipe_stop()
|
D | ieee802154_uart_pipe.h | 17 bool stopped; member
|
/Zephyr-latest/tests/bluetooth/audio/cap_initiator/uut/ |
D | bap_unicast_client.c | 248 if (stream->ops != NULL && stream->ops->stopped != NULL) { in bt_bap_unicast_client_disable() 249 stream->ops->stopped(stream, BT_HCI_ERR_LOCALHOST_TERM_CONN); in bt_bap_unicast_client_disable() 289 if (stream->ops != NULL && stream->ops->stopped != NULL) { in bt_bap_unicast_client_stop() 290 stream->ops->stopped(stream, BT_HCI_ERR_LOCALHOST_TERM_CONN); in bt_bap_unicast_client_stop() 310 if (pair_stream->ops != NULL && pair_stream->ops->stopped != NULL) { in bt_bap_unicast_client_stop() 311 pair_stream->ops->stopped(pair_stream, in bt_bap_unicast_client_stop()
|
/Zephyr-latest/tests/bluetooth/audio/bap_broadcast_source/uut/ |
D | bap_broadcast_source.c | 25 .stopped = mock_bap_broadcast_source_stopped_cb,
|
/Zephyr-latest/doc/kernel/services/timing/ |
D | timers.rst | 40 * A **stop function** that is executed if the timer is stopped prematurely 49 and puts the timer into the **stopped** state. 65 If the timer's period is zero the timer enters the stopped state; 68 A running timer can be stopped in mid-countdown, if desired. 69 The timer's status is left unchanged, then the timer enters the stopped state 73 but has no effect on the timer since it is already stopped. 84 a value of zero indicates that the timer is stopped. 88 (indicating that it has expired at least once) or the timer is stopped; 89 if the timer status is already non-zero or the timer is already stopped 179 /* timer was stopped (by someone else) before expiring */
|
/Zephyr-latest/tests/bluetooth/audio/mocks/src/ |
D | iso.c | 192 if (iso_cb != NULL && iso_cb->stopped != NULL) { in bt_iso_big_terminate() 193 iso_cb->stopped(big, BT_HCI_ERR_LOCALHOST_TERM_CONN); in bt_iso_big_terminate()
|
D | bap_stream.c | 56 mock_bap_stream_ops.stopped = mock_bap_stream_stopped_cb; in mock_bap_stream_init()
|
/Zephyr-latest/subsys/bluetooth/audio/ |
D | cap_stream.c | 202 if (ops != NULL && ops->stopped != NULL) { in cap_stream_stopped_cb() 203 ops->stopped(bap_stream, reason); in cap_stream_stopped_cb() 273 .stopped = cap_stream_stopped_cb,
|
D | Kconfig.ascs | 52 of a stopped stream. The delay is added as it is the Unicast Client's
|
D | bap_broadcast_source.c | 235 if (ops != NULL && ops->stopped != NULL) { in broadcast_source_iso_disconnected() 236 ops->stopped(stream, reason); in broadcast_source_iso_disconnected() 1227 if (listener->stopped != NULL) { in big_stopped_cb() 1228 listener->stopped(source, reason); in big_stopped_cb() 1252 .stopped = big_stopped_cb, in bt_bap_broadcast_source_register_cb()
|
D | bap_broadcast_sink.c | 407 if (ops != NULL && ops->stopped != NULL) { in broadcast_sink_iso_disconnected() 408 ops->stopped(stream, reason); in broadcast_sink_iso_disconnected() 1004 if (listener->stopped != NULL) { in big_stopped_cb() 1005 listener->stopped(sink, reason); in big_stopped_cb() 1029 .stopped = big_stopped_cb, in bt_bap_broadcast_sink_register_cb()
|
/Zephyr-latest/soc/st/stm32/stm32u5x/ |
D | Kconfig | 29 All clocks in the core domain are stopped.
|
/Zephyr-latest/samples/boards/espressif/light_sleep/ |
D | README.rst | 12 of code on both CPUs is stopped when :c:func:`esp_light_sleep_start()` function is called. 14 was stopped, and :c:func:`esp_light_sleep_start()` function returns.
|
/Zephyr-latest/subsys/bluetooth/host/classic/ |
D | Kconfig | 117 stopped by the HFP AG. The unit is seconds. 126 stopped by the HFP AG. The unit is seconds. 134 call is not active before timeout, it will be stopped
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | coap_server.rst | 65 server thread. Services can be manually started and stopped with ``coap_service_start`` and 269 printk("CoAP service %s stopped", net_event->service->name); 271 printk("CoAP service stopped");
|
/Zephyr-latest/drivers/timer/ |
D | Kconfig.cortex_m_systick | 55 another timer that is not stopped, but it has lower frequency e.g.
|
D | Kconfig.stm32_lptim | 71 another timer that is not stopped, but it has lower frequency e.g.
|
/Zephyr-latest/samples/bluetooth/cap_initiator/src/ |
D | cap_initiator_broadcast.c | 218 .stopped = broadcast_stream_stopped_cb, in init_cap_initiator()
|
/Zephyr-latest/include/zephyr/bluetooth/audio/ |
D | bap.h | 866 void (*stopped)(struct bt_bap_stream *stream, uint8_t reason); member 2023 void (*stopped)(struct bt_bap_broadcast_source *source, uint8_t reason); member 2309 void (*stopped)(struct bt_bap_broadcast_sink *sink, uint8_t reason); member
|
/Zephyr-latest/samples/bluetooth/bap_broadcast_sink/ |
D | README.rst | 12 the first found and listens to it until the source is (potentially) stopped.
|
/Zephyr-latest/doc/services/debugging/ |
D | gdbstub.rst | 156 GDB also shows where the code execution is stopped. In this case, 175 code execution is stopped. 229 Once code execution reaches :c:func:`main`, execution will be stopped
|
/Zephyr-latest/doc/hardware/peripherals/can/ |
D | shell.rst | 76 state: stopped 102 The CAN controller mode and timing can only be changed while the CAN controller is stopped, which 160 Prior to reconfiguring the timing or mode, the CAN controller needs to be stopped using the ``can
|
/Zephyr-latest/tests/bsim/bluetooth/audio/src/ |
D | pbp_public_broadcast_source_test.c | 253 .stopped = stopped_cb,
|
D | bap_broadcast_source_test.c | 236 .stopped = steam_stopped_cb, 561 .stopped = source_stopped_cb, in init()
|
/Zephyr-latest/samples/bluetooth/tmap_bmr/src/ |
D | bap_broadcast_sink.c | 106 .stopped = stream_stopped_cb,
|