Lines Matching refs:report_path
125 let report_path = path.join("report/index.html"); in if_exists() localVariable
126 if PathBuf::from(output_directory).join(&report_path).is_file() { in if_exists()
127 Some(report_path.to_string_lossy().to_string()) in if_exists()
390 let mut report_path = report_context.output_directory.clone(); in measurement_complete() localVariable
391 report_path.push(id.as_directory_name()); in measurement_complete()
392 report_path.push("report"); in measurement_complete()
393 report_path.push("index.html"); in measurement_complete()
394 debug_context(&report_path, &context); in measurement_complete()
400 try_else_return!(fs::save_string(&text, &report_path)); in measurement_complete()
557 let report_path = output_directory.join("report").join("index.html"); in final_summary() localVariable
561 debug_context(&report_path, &context); in final_summary()
567 try_else_return!(fs::save_string(&text, &report_path,)); in final_summary()
805 let mut report_path = report_context.output_directory.clone(); in generate_summary() localVariable
806 report_path.push(id.as_directory_name()); in generate_summary()
807 report_path.push("report"); in generate_summary()
808 report_path.push("index.html"); in generate_summary()
809 debug_context(&report_path, &context); in generate_summary()
815 try_else_return!(fs::save_string(&text, &report_path,), || {}); in generate_summary()