Home
last modified time | relevance | path

Searched refs:longest (Results 1 – 19 of 19) sorted by relevance

/Zephyr-Core-3.7.0/scripts/utils/
Dmigrate_posix_kconfigs.py90 longest = ""
95 longest = m
99 line = line.replace(longest, REPLACEMENTS[longest])
100 msg = MESSAGES.get(longest)
Dmigrate_mcumgr_kconfigs.py121 longest = ""
126 longest = m
130 line = line.replace(longest, REPLACEMENTS[longest])
/Zephyr-Core-3.7.0/subsys/shell/
Dshell_help.c157 uint16_t longest = 0U; in z_shell_help_subcmd_print() local
162 longest = Z_MAX(longest, z_shell_strlen(entry->syntax)); in z_shell_help_subcmd_print()
166 if (longest == 0) { in z_shell_help_subcmd_print()
178 help_item_print(sh, entry->syntax, longest, entry->help); in z_shell_help_subcmd_print()
Dshell.c327 uint16_t *longest) in find_completion_candidates() argument
335 *longest = 0U; in find_completion_candidates()
343 *longest = Z_MAX(strlen(candidate->syntax), *longest); in find_completion_candidates()
426 uint16_t longest) in tab_options_print() argument
433 tab_item_print(sh, SHELL_INIT_OPTION_PRINTER, longest); in tab_options_print()
447 tab_item_print(sh, match->syntax, longest); in tab_options_print()
818 uint16_t longest; in tab_handle() local
830 &longest); in tab_handle()
837 longest); in tab_handle()
/Zephyr-Core-3.7.0/kernel/
Dusage.c48 if (cpu->usage->longest < cpu->usage->current) { in sched_cpu_update_usage()
49 cpu->usage->longest = cpu->usage->current; in sched_cpu_update_usage()
68 if (thread->base.usage.longest < thread->base.usage.current) { in sched_thread_update_usage()
69 thread->base.usage.longest = thread->base.usage.current; in sched_thread_update_usage()
154 stats->peak_cycles = cpu->usage->longest; in z_sched_cpu_usage()
210 stats->peak_cycles = thread->base.usage.longest; in z_sched_thread_usage()
382 stats->longest = 0ULL; in z_thread_stats_reset()
DKconfig537 has been scheduled, the longest time for which it was scheduled and
/Zephyr-Core-3.7.0/include/zephyr/kernel/
Dstats.h26 uint64_t longest; /**< \# of cycles in longest usage window */ member
/Zephyr-Core-3.7.0/drivers/spi/
DKconfig.mcux_lpspi30 as the longest set of spi_buf_sets used, where normal spi operations are
DKconfig.sam30 as the longest set of spi_buf_sets used, where normal SPI operations are
/Zephyr-Core-3.7.0/subsys/net/ip/
Dutils.c170 uint8_t i, bl, bh, longest = 1U; in z_impl_net_addr_ntop() local
202 if (zeros[i] > longest) { in z_impl_net_addr_ntop()
203 longest = zeros[i]; in z_impl_net_addr_ntop()
208 if (longest == 1U) { in z_impl_net_addr_ntop()
260 i += longest - 1U; in z_impl_net_addr_ntop()
/Zephyr-Core-3.7.0/tests/kernel/obj_core/obj_core_stats/src/
Dmain.c93 zassert_true(cpu_raw.longest >= kernel_raw[i].longest); in ZTEST()
/Zephyr-Core-3.7.0/doc/kernel/services/data_passing/
Dmessage_queues.rst41 it is given to the highest priority sending thread that has waited the longest.
51 the highest priority receiving thread that has waited the longest.
Dstacks.rst46 that has waited longest.
Dlifos.rst50 that has waited longest.
Dfifos.rst50 that has waited longest.
/Zephyr-Core-3.7.0/doc/kernel/services/synchronization/
Dsemaphores.rst38 that has waited longest.
Dmutexes.rst46 thread that has waited the longest.
/Zephyr-Core-3.7.0/doc/kernel/memory_management/
Dslabs.rst49 thread that has waited the longest.
/Zephyr-Core-3.7.0/doc/kernel/services/scheduling/
Dindex.rst40 exist, the scheduler chooses the one that has been waiting longest.