Searched refs:ramdump_path (Results 1 – 2 of 2) sorted by relevance
657 let ramdump_path = self.temporary_directory.join("ramdump"); in handle_ramdump() localVariable658 if !ramdump_path.as_path().try_exists()? { in handle_ramdump()661 if std::fs::metadata(&ramdump_path)?.len() > 0 { in handle_ramdump()662 Self::send_ramdump_to_tombstoned(&ramdump_path)?; in handle_ramdump()667 fn send_ramdump_to_tombstoned(ramdump_path: &Path) -> Result<(), Error> { in send_ramdump_to_tombstoned()668 let mut input = File::open(ramdump_path) in send_ramdump_to_tombstoned()669 .context(format!("Failed to open ramdump {:?} for reading", ramdump_path))?; in send_ramdump_to_tombstoned()680 info!("Ramdump {:?} sent to tombstoned", ramdump_path); in send_ramdump_to_tombstoned()
1398 let ramdump_path = temporary_directory.join("ramdump"); in prepare_ramdump_file() localVariable1399 let ramdump = File::create(ramdump_path) in prepare_ramdump_file()