Home
last modified time | relevance | path

Searched refs:terminate (Results 1 – 25 of 49) sorted by relevance

12

/Zephyr-Core-3.7.0/lib/smf/
Dsmf.c19 bool terminate: 1; member
112 if (internal->terminate) { in smf_execute_all_entry_actions()
124 if (internal->terminate) { in smf_execute_all_entry_actions()
145 if (internal->terminate) { in smf_execute_ancestor_run_actions()
165 if (internal->terminate) { in smf_execute_ancestor_run_actions()
202 if (internal->terminate) { in smf_execute_all_exit_actions()
227 internal->terminate = false; in smf_set_initial()
243 if (internal->terminate) { in smf_set_initial()
308 if (internal->terminate) { in smf_set_state()
320 if (internal->terminate) { in smf_set_state()
[all …]
/Zephyr-Core-3.7.0/tests/lib/smf/src/
Dtest_lib_hierarchical_smf.c115 enum terminate_action terminate; member
126 if (o->terminate == PARENT_ENTRY) { in parent_ab_entry()
143 if (o->terminate == PARENT_RUN) { in parent_ab_run()
162 if (o->terminate == PARENT_EXIT) { in parent_ab_exit()
207 if (o->terminate == ENTRY) { in state_a_entry()
260 if (o->terminate == RUN) { in state_b_run()
314 if (o->terminate == EXIT) { in state_c_exit()
359 test_obj.terminate = NONE; in ZTEST()
376 test_obj.terminate = PARENT_ENTRY; in ZTEST()
393 test_obj.terminate = PARENT_RUN; in ZTEST()
[all …]
Dtest_lib_flat_smf.c78 enum terminate_action terminate; member
89 if (o->terminate == ENTRY) { in state_a_entry()
140 if (o->terminate == RUN) { in state_b_run()
190 if (o->terminate == EXIT) { in state_c_exit()
227 test_obj.terminate = NONE; in ZTEST()
244 test_obj.terminate = ENTRY; in ZTEST()
261 test_obj.terminate = RUN; in ZTEST()
278 test_obj.terminate = EXIT; in ZTEST()
Dtest_lib_self_transition_smf.c153 enum terminate_action terminate; member
199 if (o->terminate == PARENT_ENTRY) { in parent_ab_entry()
215 if (o->terminate == PARENT_RUN) { in parent_ab_run()
239 if (o->terminate == PARENT_EXIT) { in parent_ab_exit()
299 if (o->terminate == ENTRY) { in state_a_entry()
349 if (o->terminate == RUN) { in state_b_run()
416 if (o->terminate == EXIT) { in state_c_exit()
468 test_obj.terminate = NONE; in ZTEST()
485 test_obj.terminate = PARENT_ENTRY; in ZTEST()
503 test_obj.terminate = PARENT_RUN; in ZTEST()
[all …]
/Zephyr-Core-3.7.0/scripts/native_simulator/common/src/
Dnce.c33 bool terminate; /* Are we terminating the program == cleaning up */ member
66 this->terminate = false; in nce_init()
104 } else if (this->terminate == false) { in nce_terminate()
106 this->terminate = true; in nce_terminate()
217 if (this->terminate) { in nce_boot_cpu()
264 if (this->terminate) { in nce_wake_cpu()
Dnct.c124 bool terminate; /* Are we terminating the program == cleaning up */ member
303 if (!this->terminate) { in nct_cleanup_handler()
345 if (!this->threads_table || this->terminate) { in nct_thread_starter()
561 this->terminate = true; in nct_clean_up()
/Zephyr-Core-3.7.0/arch/posix/core/
Dposix_core.c82 static bool terminate; /* Are we terminating the program == cleaning up */ variable
228 if (!terminate) { in posix_cleanup_handler()
428 terminate = true; in posix_arch_clean_up()
/Zephyr-Core-3.7.0/scripts/pylib/pytest-twister-harness/src/twister_harness/device/
Dutils.py49 proc.terminate()
/Zephyr-Core-3.7.0/samples/subsys/smf/hsm_psicc2/src/
Dhsm_psicc2_console_cmds.c84 SHELL_CMD_ARG(terminate, NULL,
/Zephyr-Core-3.7.0/doc/connectivity/bluetooth/api/audio/shell/
Dccp.rst49 terminate :terminate a call [<{instance_index, gtbs}>]
152 uart:~$ tbs_client terminate 0 5
154 … <dbg> bt_tbs_client.call_cp_notify_handler: Status: success for the terminate opcode for call 0x05
181 terminate :Terminate call <call_index>
191 remote_terminate :Simulate remote terminate <call_index>
/Zephyr-Core-3.7.0/include/zephyr/bluetooth/classic/
Dhfp_ag.h153 void (*terminate)(struct bt_hfp_ag *ag); member
/Zephyr-Core-3.7.0/samples/subsys/smf/hsm_psicc2/
DREADME.rst43 * ``psicc2 terminate`` sends the ``EVENT_TERMINATE`` event to terminate the state machine. There
/Zephyr-Core-3.7.0/doc/hardware/peripherals/can/
Dtransceiver.rst26 terminate the bus. The dominant state always overrides the recessive state.
/Zephyr-Core-3.7.0/scripts/west_commands/runners/
Dspi_burn.py98 self.ice_process.terminate()
Dcore.py43 def terminate(self): member in _DebugDummyPopen
751 server_proc.terminate()
/Zephyr-Core-3.7.0/scripts/pylib/twister/twisterlib/
Dhandlers.py63 proc.terminate()
100 def terminate(self, proc): member in Handler
233 self.terminate(proc)
338 self.terminate(proc)
725 self.terminate(proc)
1056 self.terminate(proc)
1327 proc.terminate()
/Zephyr-Core-3.7.0/modules/hostap/src/
Dsupp_api.c55 bool terminate; member
144 if (ctrl->status_thread_state == STATUS_THREAD_RUNNING && ctrl->terminate) { in supp_shell_connect_status()
258 wpas_api_ctrl.terminate = 1; in wpa_supp_restart_status_work()
260 wpas_api_ctrl.terminate = 0; in wpa_supp_restart_status_work()
/Zephyr-Core-3.7.0/scripts/tests/twister/
Dtest_handlers.py227 mock_proc.terminate = mock.Mock(return_value=None)
235 handler.terminate(mock_proc)
238 mock_proc.terminate.assert_called_once()
251 handler.terminate(mock_proc)
386 handler.terminate = mock.Mock()
410 handler.terminate.assert_called_once_with(proc)
587 handler.terminate = mock.Mock()
1352 handler.terminate = mock.Mock(side_effect=mock_terminate)
2022 handler.terminate = mock.Mock()
/Zephyr-Core-3.7.0/kernel/
Dsched.c457 bool terminate) in z_thread_halt() argument
461 wq = terminate ? wq : &thread->halt_queue; in z_thread_halt()
474 thread->base.thread_state |= (terminate ? _THREAD_ABORTING in z_thread_halt()
490 halt_thread(thread, terminate ? _THREAD_DEAD : _THREAD_SUSPENDED); in z_thread_halt()
493 __ASSERT(!terminate, "aborted _current back from dead"); in z_thread_halt()
/Zephyr-Core-3.7.0/subsys/bluetooth/audio/
Dtbs_internal.h260 struct bt_tbs_call_cp_term terminate; member
/Zephyr-Core-3.7.0/doc/services/smf/
Dindex.rst124 To terminate the state machine, the :c:func:`smf_set_terminate` function
149 from the entry action of a 'terminate' state. Orthogonal regions are modelled
250 /* handle return code and terminate state machine */
354 /* handle return code and terminate state machine */
516 /* handle return code and terminate state machine */
/Zephyr-Core-3.7.0/boards/innblue/innblue22/
Dinnblue22_common.dtsi120 terminate-voltage = <3000>;
/Zephyr-Core-3.7.0/doc/connectivity/networking/api/
Dnet_pkt_filter.rst40 recommended to always terminate a non-empty rule list with an explicit
/Zephyr-Core-3.7.0/samples/bluetooth/handsfree_ag/src/
Dmain.c111 .terminate = ag_terminate,
/Zephyr-Core-3.7.0/subsys/net/l2/ppp/
Dfsm.c186 static void terminate(struct ppp_fsm *fsm, enum ppp_state next_state) in terminate() function
235 terminate(fsm, PPP_CLOSING); in ppp_fsm_close()
1009 terminate(fsm, PPP_STOPPING); in ppp_fsm_proto_reject()

12