Home
last modified time | relevance | path

Searched refs:context (Results 1 – 8 of 8) sorted by relevance

/DragonOS/user/apps/test_ebpf/syscall_ebpf/xtask/src/
H A Dbuild.rs39 .context("Error while building eBPF program")?; in build()
40 build_project(&opts).context("Error while building userspace application")?; in build()
H A Drun.rs31 }).context("Error while building project")?; in run()
/DragonOS/kernel/crates/asm_macros/src/riscv64/
H A Dmod.rs1 pub mod context; module
/DragonOS/kernel/src/arch/x86_64/kvm/vmx/
H A Dmmu.rs177 let context = &mut vcpu.lock().mmu; in init_kvm_tdp_mmu() localVariable
178 context.page_fault = Some(tdp_page_fault); in init_kvm_tdp_mmu()
179 context.get_cr3 = Some(tdp_get_cr3); in init_kvm_tdp_mmu()
180 context.set_eptp = Some(tdp_set_eptp); in init_kvm_tdp_mmu()
/DragonOS/tools/debugging/logmonitor/
H A DCargo.toml12 clap = { version = "4.4.7", features = ["color", "error-context", "help", "std", "suggestions", "us…
/DragonOS/.github/workflows/
H A Dpublish-dragonos-docker-image.yml35 context: "{{defaultContext}}:tools"
/DragonOS/kernel/src/arch/x86_64/ipc/
H A Dsignal.rs326 pub context: SigContext, field
511 let mut sigmask: SigSet = unsafe { (*frame).context.oldmask }; in sys_rt_sigreturn()
514 if !unsafe { &mut (*frame).context }.restore_sigcontext(trap_frame) { in sys_rt_sigreturn()
649 .context in setup_frame()
/DragonOS/kernel/src/net/socket/
H A Dinet.rs760 match socket.connect(inner_iface.context(), ip, temp_port) { in connect()