Home
last modified time | relevance | path

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

/DragonOS/kernel/crates/rbpf/examples/
H A Drbpf_plugin.rs20 let mut program_text = String::new(); in main() localVariable
68 program_text.clone_from(&args[0]); in main()
77 if program_text.is_empty() { in main()
79 std::io::stdin().read_to_string(&mut program_text).unwrap(); in main()
83 program_text.retain(|c| !c.is_whitespace()); in main()
86 let bytecode = hex::decode(program_text).unwrap(); in main()