Home
last modified time | relevance | path

Searched refs:ACTIVE (Results 1 – 14 of 14) sorted by relevance

/system/bt/gd/hci/
Dle_scanning_manager.cc126 phy_scan_parameters.le_scan_type_ = LeScanType::ACTIVE; in configure_scan()
138 …hci::LeExtendedScanParamsBuilder::Create(LeScanType::ACTIVE, interval_ms_, window_ms_, own_address… in configure_scan()
145 …hci::LeSetScanParametersBuilder::Create(LeScanType::ACTIVE, interval_ms_, window_ms_, own_address_… in configure_scan()
Dhci_packets_test.cc275 ASSERT_EQ(LeScanType::ACTIVE, view.GetLeScanType()); in TEST()
348 ASSERT_EQ(LeScanType::ACTIVE, params[0].le_scan_type_); in TEST()
367 ASSERT_EQ(LeScanType::ACTIVE, params[0].le_scan_type_); in TEST()
Dacl_manager_test.cc953 EXPECT_CALL(mock_connection_management_callbacks_, OnModeChange(Mode::ACTIVE, 0x00)); in TEST_F()
954 …_layer_->IncomingEvent(ModeChangeBuilder::Create(ErrorCode::SUCCESS, handle_, Mode::ACTIVE, 0x00)); in TEST_F()
Dhci_packets.pdl2518 ACTIVE = 0x01,
3992 ACTIVE = 0x00,
/system/bt/gd/hci/cert/
Dle_advertising_manager_test.py61 scan_parameters.le_scan_type = hci_packets.LeScanType.ACTIVE
Ddirect_hci_test.py96 phy_scan_params.le_scan_type = hci_packets.LeScanType.ACTIVE
/system/core/fs_mgr/libdm/include/libdm/
Ddm.h48 enum class DmDeviceState { INVALID, SUSPENDED, ACTIVE }; enumerator
/system/bt/doc/
Dpower_management.md40 states it wants ACTIVE, the power management code will change to ACTIVE.
143 is made, which calls `BTM_SetPowerMode` to set the link into ACTIVE
166 - If the status is `BTM_PM_STS_ACTIVE` (still in the ACTIVE power mode),
/system/core/fs_mgr/libdm/
Ddm_test.cpp147 ASSERT_EQ(dm.GetState(dev.name()), DmDeviceState::ACTIVE); in TEST()
152 ASSERT_TRUE(dm.ChangeState(dev.name(), DmDeviceState::ACTIVE)); in TEST()
153 ASSERT_EQ(dm.GetState(dev.name()), DmDeviceState::ACTIVE); in TEST()
Ddm.cpp218 return DmDeviceState::ACTIVE; in GetState()
224 if (state != DmDeviceState::SUSPENDED && state != DmDeviceState::ACTIVE) { in ChangeState()
/system/update_engine/
Ddynamic_partition_control_android_unittest.cc362 .WillOnce(Return(DmDeviceState::ACTIVE)); in TEST_P()
417 .WillOnce(Return(DmDeviceState::ACTIVE)); in TEST_P()
425 .WillOnce(Return(DmDeviceState::ACTIVE)); in TEST_P()
Ddynamic_partition_control_android.cc193 if (state == DmDeviceState::ACTIVE) { in MapPartitionOnDeviceMapper()
987 if (GetState(partition_name_suffix) != DmDeviceState::ACTIVE) { in GetDynamicPartitionDevice()
/system/bt/gd/hal/cert/
Dsimple_hal_test.py111 phy_scan_params.le_scan_type = hci_packets.LeScanType.ACTIVE
/system/core/fs_mgr/tools/
Ddmctl.cpp478 if (!dm.ChangeState(argv[0], DmDeviceState::ACTIVE)) { in ResumeCmdHandler()