Searched refs:sym (Results 1 – 7 of 7) sorted by relevance
/DragonOS/tools/debugging/logmonitor/src/backend/ |
H A D | loader.rs | 26 for sym in elf.syms.iter() { in load() 27 let name = elf.strtab.get_at(sym.st_name).unwrap_or(""); in load() 28 result.add_symbol(sym.clone(), name.to_string()); in load() 58 pub fn add_symbol(&mut self, sym: Sym, name: String) { in add_symbol() 59 self.sym_collection.add_symbol(sym, name); in add_symbol() 75 pub fn add_symbol(&mut self, sym: Sym, name: String) { in add_symbol() 76 self.symbols.push(Symbol::new(sym, name)); in add_symbol() 85 self.symbols.iter().find(|sym| sym.name() == name) in find_by_name() 91 sym: Sym, field 96 pub fn new(sym: Sym, name: String) -> Self { in new() [all …]
|
/DragonOS/kernel/src/arch/x86_64/process/ |
H A D | kthread.rs | 92 stage2_func = sym kernel_thread_bootstrap_stage2, in kernel_thread_bootstrap_stage1()
|
H A D | mod.rs | 500 switch_hook = sym crate::process::switch_finish_hook, in switch_to_inner()
|
/DragonOS/kernel/src/arch/riscv64/interrupt/ |
H A D | entry.rs | 29 _restore_kernel_tpsp = sym _restore_kernel_tpsp in handle_exception() 49 _save_context = sym _save_context in _restore_kernel_tpsp()
|
/DragonOS/kernel/src/arch/riscv64/process/ |
H A D | kthread.rs | 114 stage2_func = sym jump_to_stage2 in kernel_thread_bootstrap_stage1()
|
H A D | mod.rs | 304 before_switch_finish_hook = sym before_switch_finish_hook); in switch_to_inner()
|
/DragonOS/kernel/src/arch/x86_64/smp/ |
H A D | mod.rs | 73 stage1 = sym smp_ap_start_stage1); in smp_init_switch_stack()
|