Home
last modified time | relevance | path

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

/packages/modules/Virtualization/android/virtmgr/src/
Ddebug_config.rs156 ramdump: bool, field
168 ramdump: get_fdt_prop_bool(fdt, &DP_RAMDUMP_PATH)?, in from_overlay()
177 ramdump: get_debug_policy_bool(&DP_RAMDUMP_PATH.to_path())?, in from_host()
261 self.debug_level != DebugLevel::NONE || self.debug_policy.ramdump in is_ramdump_needed()
275 assert!(debug_policy.ramdump); in test_read_avf_debug_policy_with_ramdump()
287 assert!(!debug_policy.ramdump); in test_read_avf_debug_policy_without_ramdump()
299 assert!(!debug_policy.ramdump); in test_read_avf_debug_policy_with_adb()
311 assert!(!debug_policy.ramdump); in test_read_avf_debug_policy_without_adb()
323 assert!(!debug_policy.ramdump); in test_invalid_sysprop_disables_debug_policy()
Dcrosvm.rs122 pub ramdump: Option<File>, field
1145 if config.ramdump.is_some() { in run_vm()
1151 } else if config.ramdump.is_some() { in run_vm()
1227 let ramdump_arg = format_serial_out_arg(&mut preserved_fds, config.ramdump); in run_vm()
Daidl.rs709 let ramdump = if !uses_gki_kernel(config) && debug_config.is_ramdump_needed() { in create_vm_internal() localVariable
996 ramdump, in create_vm_internal()
2048 let ramdump = File::create(ramdump_path) in prepare_ramdump_file() localVariable
2052 Ok(ramdump) in prepare_ramdump_file()
/packages/modules/Virtualization/docs/debug/
DREADME.md99 ramdump = <1>; // Enable ramdump
136 * [Capturing kernel ramdump](ramdump.md) (only for Microdroid)
Dramdump.md64 $ adb root && adb pull /data/tombstones/tombstone_47 ramdump && adb unroot
104 $ crash-8.0.2/crash ramdump vmlinux
/packages/modules/Virtualization/tests/pvmfw/assets/
Davf_debug_policy_without_ramdump.dts12 ramdump = <0>;
Davf_debug_policy_with_ramdump.dts12 ramdump = <1>;
/packages/modules/Virtualization/guest/microdroid_manager/src/
Dmain.rs652 let ramdump = get_debug_policy_bool(AVF_DEBUG_POLICY_RAMDUMP)?.unwrap_or_default(); in load_crashkernel_if_supported() localVariable
653 let requested = debuggable | ramdump; in load_crashkernel_if_supported()