(serial: &str)
| 1801 | } |
| 1802 | |
| 1803 | fn console_port_from_serial(serial: &str) -> Option<u16> { |
| 1804 | serial.strip_prefix("emulator-")?.parse::<u16>().ok() |
| 1805 | } |
| 1806 | |
| 1807 | fn android_mouse_button_state_for_touch_phase(phase: &str) -> Result<u8, AppError> { |
| 1808 | match phase.trim().to_ascii_lowercase().as_str() { |
no outgoing calls
no test coverage detected