HomeSort by relevance Sort by last modified time
    Searched refs:connection_manager (Results 1 - 13 of 13) sorted by null

  /external/autotest/scheduler/
scheduler_lib_unittest.py 24 self.connection_manager = None
38 connection_manager = scheduler_lib.ConnectionManager()
39 connection_manager.open_connection = mock.MagicMock()
40 connection = connection_manager.get_connection()
41 connection_manager.open_connection.assert_called_once_with()
42 connection_manager.open_connection.reset_mock()
43 connection = connection_manager.get_connection()
45 connection_manager.open_connection.call_count == 0)
46 connection_manager.open_connection.reset_mock()
49 connection_manager.disconnect = mock.MagicMock(
    [all...]
rdb_testing_utils.py 361 connection_manager = scheduler_lib.ConnectionManager(autocommit=False)
362 self.god.stub_with(connection_manager, 'db_connection', self._database)
363 self.god.stub_with(monitor_db, '_db_manager', connection_manager)
monitor_db_unittest.py 111 connection_manager = scheduler_lib.ConnectionManager(autocommit=False)
112 self.god.stub_with(connection_manager, 'db_connection', self._database)
113 self.god.stub_with(monitor_db, '_db_manager', connection_manager)
    [all...]
  /system/update_engine/
connection_manager_android.cc 21 namespace connection_manager { namespace in namespace:chromeos_update_engine
connection_manager_interface.h 56 namespace connection_manager { namespace in namespace:chromeos_update_engine
system_state.h 72 virtual ConnectionManagerInterface* connection_manager() = 0;
fake_system_state.h 64 inline ConnectionManagerInterface* connection_manager() override {
118 ConnectionManagerInterface* connection_manager) {
119 connection_manager_ = (connection_manager ? connection_manager :
real_system_state.h 89 inline ConnectionManagerInterface* connection_manager() override {
connection_manager.cc 17 #include "update_engine/connection_manager.h"
41 namespace connection_manager { namespace in namespace:chromeos_update_engine
real_system_state.cc 77 connection_manager_ = connection_manager::CreateConnectionManager(this);
common_service.cc 301 ConnectionManagerInterface* cm = system_state_->connection_manager();
omaha_request_action.cc 1704 ConnectionManagerInterface* connection_manager = local
    [all...]
payload_state.cc 200 ConnectionManagerInterface* connection_manager = local
201 system_state_->connection_manager();
202 if (!connection_manager->GetConnectionProperties(&network_connection_type,
    [all...]

Completed in 395 milliseconds