Lines Matching refs:connection_manager
282 let connection_manager = ConnectionManager::new(mock_le_manager.clone()); in test_single_direct_connection() localVariable
285 connection_manager.as_ref().start_direct_connection(CLIENT_1, ADDRESS_1).unwrap(); in test_single_direct_connection()
299 let connection_manager = ConnectionManager::new(mock_le_manager.clone()); in test_failed_direct_connection() localVariable
300 connection_manager.as_ref().start_direct_connection(CLIENT_1, ADDRESS_1).unwrap(); in test_failed_direct_connection()
315 let connection_manager = ConnectionManager::new(mock_le_manager.clone()); in test_single_background_connection() localVariable
318 connection_manager.as_ref().add_background_connection(CLIENT_1, ADDRESS_1).unwrap(); in test_single_background_connection()
332 let connection_manager = ConnectionManager::new(mock_le_manager.clone()); in test_resolved_connection() localVariable
335 connection_manager.as_ref().start_direct_connection(CLIENT_1, ADDRESS_1).unwrap(); in test_resolved_connection()
348 let connection_manager = ConnectionManager::new(mock_le_manager.clone()); in test_resolved_background_connection() localVariable
351 connection_manager.as_ref().add_background_connection(CLIENT_1, ADDRESS_1).unwrap(); in test_resolved_background_connection()
364 let connection_manager = ConnectionManager::new(mock_le_manager.clone()); in test_resolved_direct_connection_after_disconnect() localVariable
367 connection_manager.as_ref().start_direct_connection(CLIENT_1, ADDRESS_1).unwrap(); in test_resolved_direct_connection_after_disconnect()
381 let connection_manager = ConnectionManager::new(mock_le_manager.clone()); in test_resolved_background_connection_after_disconnect() localVariable
384 connection_manager.as_ref().add_background_connection(CLIENT_1, ADDRESS_1).unwrap(); in test_resolved_background_connection_after_disconnect()
398 let connection_manager = ConnectionManager::new(mock_le_manager.clone()); in test_direct_connection_timeout() localVariable
399 connection_manager.as_ref().start_direct_connection(CLIENT_1, ADDRESS_1).unwrap(); in test_direct_connection_timeout()
417 let connection_manager = ConnectionManager::new(mock_le_manager.clone()); in test_stacked_direct_connections_timeout() localVariable
420 connection_manager.as_ref().start_direct_connection(CLIENT_1, ADDRESS_1).unwrap(); in test_stacked_direct_connections_timeout()
423 connection_manager.as_ref().start_direct_connection(CLIENT_2, ADDRESS_1).unwrap(); in test_stacked_direct_connections_timeout()