Home
last modified time | relevance | path

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

/DragonOS/tools/debugging/logmonitor/src/backend/
H A Derror.rs11 kind: BackendErrorKind, field
16 pub fn new(kind: BackendErrorKind, message: Option<String>) -> Self { in new()
17 Self { kind, message } in new()
25 match &self.kind { in fmt()
/DragonOS/kernel/crates/rbpf/src/
H A Dno_std_error.rs14 kind: ErrorKind, field
22 pub fn new<S: Into<String>>(kind: ErrorKind, error: S) -> Error { in new()
24 kind, in new()
H A Dcranelift.rs203 kind: StackSlotKind::ExplicitSlot, in build_function_prelude()
/DragonOS/kernel/src/arch/riscv64/interrupt/
H A Dipi.rs10 pub fn send_ipi(kind: IpiKind, target: IpiTarget) { in send_ipi()
12 match kind { in send_ipi()
/DragonOS/kernel/src/arch/x86_64/interrupt/
H A Dipi.rs34 fn from(kind: IpiKind) -> Self { in from()
35 match kind { in from()
124 pub fn send_ipi(kind: IpiKind, target: IpiTarget) { in send_ipi()
127 let ipi_vec = ArchIpiKind::from(kind).into(); in send_ipi()
/DragonOS/kernel/crates/rbpf/
H A DREADME.md228 depending on the kind of the VM used. The value returned is the result of the
252 `execute_program()`, again depending on the kind of VM that is used. The result of
317 // Then we execute it. For this kind of VM, a reference to the packet
385 It also uses a kind of VM that uses an internal buffer used to simulate the
458 // This kind of VM takes a reference to the packet data, but does not need
586 process, but there remains a feeling that this crate has a kind of C-ish style
/DragonOS/kernel/src/mm/
H A Dmod.rs298 pub fn kind(&self) -> PageTableKind { in kind() method
H A Dpage.rs1247 EntryFlags::new_page_table(virt.kind() == PageTableKind::User); in map_phys()
1330 EntryFlags::new_page_table(virt.kind() == PageTableKind::User); in allocate_table()