Home
last modified time | relevance | path

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

/packages/modules/Virtualization/virtualizationmanager/src/
Ddebug_config.rs172 Ok(debug_config) => { in new()
174 return debug_config; in new()
181 Ok(debug_config) => { in new()
183 return debug_config; in new()
249 let debug_config = DebugConfig::from_custom_debug_overlay_policy( in test_read_avf_debug_policy_with_ramdump() localVariable
255 assert_eq!(DebugLevel::FULL, debug_config.debug_level); in test_read_avf_debug_policy_with_ramdump()
256 assert!(!debug_config.debug_policy_log); in test_read_avf_debug_policy_with_ramdump()
257 assert!(debug_config.debug_policy_ramdump); in test_read_avf_debug_policy_with_ramdump()
258 assert!(debug_config.debug_policy_adb); in test_read_avf_debug_policy_with_ramdump()
265 let debug_config = DebugConfig::from_custom_debug_overlay_policy( in test_read_avf_debug_policy_without_ramdump() localVariable
[all …]
Dpayload.rs17 use crate::debug_config::DebugConfig;
259 debug_config: &DebugConfig, in make_payload_disk()
278 let mut apex_infos = collect_apex_infos(&apex_list, &vm_payload_config.apexes, debug_config)?; in make_payload_disk()
390 debug_config: &DebugConfig, in collect_apex_infos()
395 if debug_config.should_include_debug_apexes() { &["com.android.adbd"] } else { &[] }; in collect_apex_infos()
464 debug_config: &DebugConfig, in add_microdroid_payload_images()
474 debug_config, in add_microdroid_payload_images()
Daidl.rs21 use crate::debug_config::DebugConfig;
406 let debug_config = DebugConfig::new(config); in create_vm_internal() localVariable
407 let ramdump = if !uses_gki_kernel(config) && debug_config.is_ramdump_needed() { in create_vm_internal()
415 clone_or_prepare_logger_fd(&debug_config, console_out_fd, format!("Console({})", cid))?; in create_vm_internal()
417 let log_fd = clone_or_prepare_logger_fd(&debug_config, log_fd, format!("Log({})", cid))?; in create_vm_internal()
428 let config = load_app_config(config, &debug_config, &temporary_directory) in create_vm_internal()
591 debug_config, in create_vm_internal()
898 debug_config: &DebugConfig, in load_app_config()
983 debug_config, in load_app_config()
1499 debug_config: &DebugConfig, in clone_or_prepare_logger_fd()
[all …]
Dmain.rs21 mod debug_config; module
Dcrosvm.rs19 use crate::debug_config::DebugConfig;
115 pub debug_config: DebugConfig, field
927 if config.debug_config.debug_level == DebugLevel::NONE in run_vm()
928 && config.debug_config.should_prepare_console_output() in run_vm()