Home
last modified time | relevance | path

Searched refs:Architecture (Results 1 – 3 of 3) sorted by relevance

/DragonOS/user/apps/test_ebpf/syscall_ebpf/xtask/src/
H A Dbuild_ebpf.rs6 pub enum Architecture { enum
11 impl std::str::FromStr for Architecture { implementation
16 "bpfel-unknown-none" => Architecture::BpfEl, in from_str()
17 "bpfeb-unknown-none" => Architecture::BpfEb, in from_str()
23 impl std::fmt::Display for Architecture { implementation
26 Architecture::BpfEl => "bpfel-unknown-none", in fmt()
27 Architecture::BpfEb => "bpfeb-unknown-none", in fmt()
36 pub target: Architecture,
H A Dbuild.rs6 use crate::build_ebpf::{build_ebpf, Architecture, Options as BuildOptions};
12 pub bpf_target: Architecture,
H A Drun.rs6 use crate::{build::{build, Options as BuildOptions}, build_ebpf::Architecture};
12 pub bpf_target: Architecture,