()
| 1972 | } |
| 1973 | |
| 1974 | fn android_display_metrics_cache() -> &'static Mutex<DisplayMetricsCache> { |
| 1975 | static CACHE: OnceLock<Mutex<DisplayMetricsCache>> = OnceLock::new(); |
| 1976 | CACHE.get_or_init(|| Mutex::new(HashMap::new())) |
| 1977 | } |
| 1978 | |
| 1979 | fn android_console_connection_cache() -> &'static Mutex<ConsoleConnectionCache> { |
| 1980 | static CACHE: OnceLock<Mutex<ConsoleConnectionCache>> = OnceLock::new(); |
no outgoing calls
no test coverage detected