MCPcopy Create free account

hub / github.com/Simple-XX/SimpleKernel / functions

Functions1,141 in github.com/Simple-XX/SimpleKernel

Functionsync_lower_el_aarch32_handler
src/arch/aarch64/interrupt_main.cpp:142
Functionsync_lower_el_aarch64_handler
src/arch/aarch64/interrupt_main.cpp:114
Functiontest_affinity_errors
tests/system_test/affinity_test.cpp:186
Functiontest_affinity_get_self
tests/system_test/affinity_test.cpp:28
Functiontest_affinity_other_task
tests/system_test/affinity_test.cpp:125
Functiontest_affinity_set_get
tests/system_test/affinity_test.cpp:64
Functiontest_balance_imbalanced_load
tests/system_test/balance_test.cpp:69
Functiontest_balance_respects_affinity
tests/system_test/balance_test.cpp:158
Functiontest_clone_flags_auto_completion
tests/system_test/clone_test.cpp:362
Functiontest_clone_parent_flag
tests/system_test/clone_test.cpp:264
Functiontest_clone_process
tests/system_test/clone_test.cpp:97
Functiontest_clone_thread
tests/system_test/clone_test.cpp:172
Functiontest_cross_core_exit_wait
tests/system_test/cross_core_test.cpp:188
Functiontest_cross_core_mutex_counter
tests/system_test/cross_core_test.cpp:258
Functiontest_cross_core_wakeup
tests/system_test/cross_core_test.cpp:82
Functiontest_exit_normal
tests/system_test/exit_test.cpp:50
Functiontest_exit_with_error
tests/system_test/exit_test.cpp:130
Functiontest_fork_basic
tests/system_test/fork_test.cpp:35
Functiontest_fork_multiple
tests/system_test/fork_test.cpp:108
Functiontest_kill_invalid_pid
tests/system_test/signal_test.cpp:348
Functiontest_many_tasks
tests/system_test/stress_test.cpp:36
Functiontest_mutex_basic_lock_unlock
tests/system_test/mutex_test.cpp:27
Functiontest_mutex_contention
tests/system_test/mutex_test.cpp:169
Functiontest_mutex_ordering
tests/system_test/mutex_test.cpp:247
Functiontest_mutex_trylock
tests/system_test/mutex_test.cpp:93
Functiontest_orphan_exit
tests/system_test/exit_test.cpp:281
Functiontest_orphan_reparent
tests/system_test/zombie_reap_test.cpp:114
Functiontest_rapid_create_exit
tests/system_test/stress_test.cpp:145
Functiontest_runner_entry
tests/system_test/main.cpp:131
Functiontest_runtime_tracking
tests/system_test/tick_test.cpp:74
Functiontest_sigaction_ignore
tests/system_test/signal_test.cpp:163
Functiontest_sigaction_uncatchable
tests/system_test/signal_test.cpp:222
Functiontest_sigkill
tests/system_test/signal_test.cpp:96
Functiontest_sigprocmask
tests/system_test/signal_test.cpp:290
Functiontest_sigterm_default
tests/system_test/signal_test.cpp:36
Functiontest_sleep_timing
tests/system_test/tick_test.cpp:48
Functiontest_thread_entry
tests/system_test/main.cpp:67
Functiontest_thread_exit
tests/system_test/exit_test.cpp:214
Functiontest_thread_group_basic
* @brief 测试线程组的基本功能 */
tests/system_test/thread_group_test.cpp:52
Functiontest_thread_group_concurrent_exit
tests/system_test/thread_group_test.cpp:195
Functiontest_thread_group_dynamic
* @brief 测试线程组的动态加入和离开 */
tests/system_test/thread_group_test.cpp:123
Functiontest_tick_increments
tests/system_test/tick_test.cpp:23
Functiontest_wait_any_child
* @brief 测试等待任意子进程 */
tests/system_test/wait_test.cpp:107
Functiontest_wait_basic
* @brief 测试基本的 wait 功能 */
tests/system_test/wait_test.cpp:51
Functiontest_wait_multi_children
tests/system_test/zombie_reap_test.cpp:186
Functiontest_wait_no_hang
tests/system_test/wait_test.cpp:176
Functiontest_wait_non_child
tests/system_test/stress_test.cpp:105
Functiontest_wait_process_group
* @brief 测试等待同进程组的子进程 */
tests/system_test/wait_test.cpp:223
Functiontest_wait_zombie_reap
tests/system_test/wait_test.cpp:286
Functiontest_zombie_process
tests/system_test/exit_test.cpp:363
Functiontest_zombie_reap
tests/system_test/zombie_reap_test.cpp:33
Functionthread_func_a
tests/system_test/kernel_task_test.cpp:28
Functionthread_func_b
tests/system_test/kernel_task_test.cpp:39
Functionthread_group_test
* @brief 线程组系统测试入口 */
tests/system_test/thread_group_test.cpp:243
Functionthread_increment
* @brief 线程函数,增加计数器 */
tests/system_test/thread_group_test.cpp:34
Functiontick_test
tests/system_test/tick_test.cpp:109
Functiontolower
src/libc/sk_ctype.c:40
Methodtransport
* @brief 获取底层传输层引用 * * 允许访问底层传输层的其他功能(如读取配置空间、处理中断等)。 * * @return 传输层的引用 */
src/device/virtio/device/device_initializer.hpp:179
Functiontrap_entry
tests/unit_test/mocks/arch.cpp:46
Functiontrap_return
tests/unit_test/mocks/arch.cpp:45
Functiontrylock_holder
tests/system_test/mutex_test.cpp:83
Functionuart_handler
* @brief UART 中断处理函数 * @param cause 中断号 * @return 中断号 */
src/arch/aarch64/interrupt_main.cpp:174
Functionuser_task_test
@todo Implement user task tests when ELF loading path is testable
tests/system_test/user_task_test.cpp:22
Functionvirtual_memory_test
tests/system_test/virtual_memory_test.cpp:29
Functionwait_test
* @brief Wait 系统测试入口 */
tests/system_test/wait_test.cpp:332
Functionwakeup_task_a
tests/system_test/cross_core_test.cpp:38
Functionwakeup_task_b
tests/system_test/cross_core_test.cpp:54
Functionyield_basic_work
tests/system_test/yield_test.cpp:22
Functionyield_task_a
tests/system_test/yield_test.cpp:33
Functionyield_task_b
tests/system_test/yield_test.cpp:41
Functionyield_test
tests/system_test/yield_test.cpp:52
Functionzombie_child_work
* @brief 测试僵尸进程回收 */
tests/system_test/wait_test.cpp:279
Functionzombie_child_work
tests/system_test/zombie_reap_test.cpp:28
Functionzombie_reap_test
* @brief Zombie reap system test entry */
tests/system_test/zombie_reap_test.cpp:244
Method~AbsClass
tests/system_test/ctor_dtor_test.cpp:53
Method~Acpi
src/device/acpi/acpi.hpp:32
Method~ArrayObj
tests/unit_test/sk_unique_ptr_test.cpp:246
Method~Base
tests/unit_test/sk_unique_ptr_test.cpp:204
Method~BasicInfo
src/include/basic_info.hpp:63
Method~BlockDevice
src/filesystem/vfs/include/block_device.hpp:21
Method~CfsScheduler
src/task/include/cfs_scheduler.hpp:198
Method~CpuSchedData
src/task/include/task_manager.hpp:76
Method~DeviceInitializer
src/device/virtio/device/device_initializer.hpp:200
Method~DeviceManager
src/device/include/device_manager.hpp:101
Method~DriverRegistry
src/device/include/driver_registry.hpp:113
Method~EarlyConsole
src/arch/aarch64/early_console.cpp:31
Method~Error
src/include/expected.hpp:349
Method~FatFsFileSystem
src/filesystem/fatfs/fatfs.cpp:101
Method~FifoScheduler
src/task/include/fifo_scheduler.hpp:94
Method~FileDescriptorTable
src/filesystem/file_descriptor.cpp:14
Method~FileOps
src/filesystem/vfs/include/vfs_types.hpp:256
Method~FileSystem
src/filesystem/vfs/include/filesystem.hpp:19
Method~Gic
src/arch/aarch64/gic/include/gic.h:673
Method~Gicd
src/arch/aarch64/gic/include/gic.h:107
Method~Gicr
src/arch/aarch64/gic/include/gic.h:477
Method~IdleScheduler
src/task/include/idle_scheduler.hpp:113
Method~InodeOps
src/filesystem/vfs/include/vfs_types.hpp:167
Method~Interrupt
src/arch/riscv64/include/interrupt.h:88
Method~Interrupt
src/arch/aarch64/include/interrupt.h:105
Method~InterruptBase
src/include/interrupt_base.h:41
← previousnext →1,001–1,100 of 1,141, ranked by callers