Home
last modified time | relevance | path

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

/DragonOS/tools/debugging/logmonitor/src/constant/
H A Dmod.rs3 use crate::command::CommandLineArgs;
6 pub static CMD_ARGS: RwLock<Option<CommandLineArgs>> = RwLock::new(None);
/DragonOS/tools/debugging/logmonitor/src/backend/
H A Dmod.rs9 use crate::{command::CommandLineArgs, event::Event};
18 _command_line_args: CommandLineArgs,
27 pub fn new(command_line_args: CommandLineArgs, sender: mpsc::Sender<Event>) -> Arc<Self> { in new() argument
74 command_line_args: CommandLineArgs,
81 command_line_args: CommandLineArgs, in new() argument
/DragonOS/tools/debugging/logmonitor/src/
H A Dmain.rs3 use logmonitor::command::{self, CommandLineArgs};
16 let command_line_args = command::CommandLineArgs::parse(); in main()
38 cmdargs: CommandLineArgs, in start_headless_app() argument
62 cmdargs: CommandLineArgs, in start_tui_app() argument
H A Dlogging.rs6 use crate::command::CommandLineArgs;
9 pub fn init(cmd_args: &CommandLineArgs) -> LoggingInitResult { in init()
H A Dcommand.rs6 pub struct CommandLineArgs { struct