Home
last modified time | relevance | path

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

/Zephyr-latest/scripts/utils/
Dmigrate_posix_kconfigs.py89 longest = ""
94 longest = m
98 line = line.replace(longest, REPLACEMENTS[longest])
99 msg = MESSAGES.get(longest)
Dmigrate_mcumgr_kconfigs.py122 longest = ""
127 longest = m
131 line = line.replace(longest, REPLACEMENTS[longest])
/Zephyr-latest/subsys/shell/
Dshell_help.c158 uint16_t longest = 0U; in z_shell_help_subcmd_print() local
163 longest = Z_MAX(longest, z_shell_strlen(entry->syntax)); in z_shell_help_subcmd_print()
167 if (longest == 0) { in z_shell_help_subcmd_print()
179 help_item_print(sh, entry->syntax, longest, entry->help); in z_shell_help_subcmd_print()
Dshell.c328 uint16_t *longest) in find_completion_candidates() argument
336 *longest = 0U; in find_completion_candidates()
344 *longest = Z_MAX(strlen(candidate->syntax), *longest); in find_completion_candidates()
427 uint16_t longest) in tab_options_print() argument
434 tab_item_print(sh, SHELL_INIT_OPTION_PRINTER, longest); in tab_options_print()
448 tab_item_print(sh, match->syntax, longest); in tab_options_print()
819 uint16_t longest; in tab_handle() local
831 &longest); in tab_handle()
838 longest); in tab_handle()
/Zephyr-latest/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()
DKconfig538 has been scheduled, the longest time for which it was scheduled and
/Zephyr-latest/include/zephyr/kernel/
Dstats.h26 uint64_t longest; /**< \# of cycles in longest usage window */ member
/Zephyr-latest/drivers/spi/
DKconfig.mcux_lpspi30 as the longest set of spi_buf_sets used, where normal spi operations are
DKconfig.sam32 as the longest set of spi_buf_sets used, where normal SPI operations are
DKconfig.max3239 as the longest set of spi_buf_sets used, where normal SPI operations are
/Zephyr-latest/subsys/net/ip/
Dutils.c167 uint8_t longest = 1U; in z_impl_net_addr_ntop() local
197 if (zeros[i] > longest) { in z_impl_net_addr_ntop()
198 longest = zeros[i]; in z_impl_net_addr_ntop()
203 if (longest == 1U) { in z_impl_net_addr_ntop()
255 i += (int)longest - 1; in z_impl_net_addr_ntop()
/Zephyr-latest/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-latest/tests/kernel/obj_core/obj_core_stats/src/
Dmain.c93 zassert_true(cpu_raw.longest >= kernel_raw[i].longest); in ZTEST()
/Zephyr-latest/doc/kernel/services/synchronization/
Dsemaphores.rst38 that has waited longest.
Dmutexes.rst46 thread that has waited the longest.
/Zephyr-latest/doc/kernel/memory_management/
Dslabs.rst49 thread that has waited the longest.
/Zephyr-latest/doc/kernel/services/scheduling/
Dindex.rst40 exist, the scheduler chooses the one that has been waiting longest.