Home
last modified time | relevance | path

Searched refs:IsSupported (Results 1 – 22 of 22) sorted by relevance

/system/bt/gd/hci/
Dcontroller_test.cc388 ASSERT_TRUE(controller_->IsSupported(OpCode::INQUIRY)); in TEST_F()
389 ASSERT_TRUE(controller_->IsSupported(OpCode::REJECT_CONNECTION_REQUEST)); in TEST_F()
390 ASSERT_TRUE(controller_->IsSupported(OpCode::ACCEPT_CONNECTION_REQUEST)); in TEST_F()
391 ASSERT_FALSE(controller_->IsSupported(OpCode::LE_REMOVE_ADVERTISING_SET)); in TEST_F()
392 ASSERT_FALSE(controller_->IsSupported(OpCode::LE_CLEAR_ADVERTISING_SETS)); in TEST_F()
393 ASSERT_FALSE(controller_->IsSupported(OpCode::LE_SET_PERIODIC_ADVERTISING_PARAM)); in TEST_F()
398 EXPECT_TRUE(controller_->IsSupported(OpCode::LE_MULTI_ADVT)); in TEST_F()
399 EXPECT_FALSE(controller_->IsSupported(OpCode::CONTROLLER_DEBUG_INFO)); in TEST_F()
400 EXPECT_FALSE(controller_->IsSupported(OpCode::CONTROLLER_A2DP_OPCODE)); in TEST_F()
406 EXPECT_TRUE(controller_->IsSupported(OpCode::LE_MULTI_ADVT)); in TEST_F()
[all …]
Dcontroller_mock.h128 MOCK_METHOD(bool, IsSupported, (OpCode op_code), (const));
Dcontroller.h157 virtual bool IsSupported(OpCode op_code) const;
Dle_scanning_manager.cc221 if (controller_->IsSupported(OpCode::LE_SET_EXTENDED_SCAN_PARAMETERS)) { in start()
225 } else if (controller_->IsSupported(OpCode::LE_EXTENDED_SCAN_PARAMS)) { in start()
230 is_filter_support_ = controller_->IsSupported(OpCode::LE_ADV_FILTER); in start()
231 is_batch_scan_support_ = controller->IsSupported(OpCode::LE_BATCH_SCAN); in start()
Dle_advertising_manager.cc113 if (controller_->IsSupported(hci::OpCode::LE_SET_EXTENDED_ADVERTISING_PARAMETERS)) { in start()
115 } else if (controller_->IsSupported(hci::OpCode::LE_MULTI_ADVT)) { in start()
Dle_scanning_manager_test.cc52 bool IsSupported(OpCode op_code) const override { in IsSupported() function in bluetooth::hci::__anone6f257030111::TestController
Dcontroller.cc1083 bool Controller::IsSupported(bluetooth::hci::OpCode op_code) const { in IsSupported() function in bluetooth::hci::Controller
Dle_advertising_manager_test.cc53 bool IsSupported(OpCode op_code) const override { in IsSupported() function in bluetooth::hci::__anon003212320111::TestController
Dacl_manager_test.cc96 bool IsSupported(bluetooth::hci::OpCode op_code) const override { in IsSupported() function in bluetooth::hci::acl_manager::__anon0d2b85f20111::TestController
/system/vold/fs/
DF2fs.h28 bool IsSupported();
DExfat.h28 bool IsSupported();
DVfat.h28 bool IsSupported();
DExt4.h28 bool IsSupported();
DExfat.cpp36 bool IsSupported() { in IsSupported() function
DF2fs.cpp40 bool IsSupported() { in IsSupported() function
DVfat.cpp54 bool IsSupported() { in IsSupported() function
DExt4.cpp58 bool IsSupported() { in IsSupported() function
/system/vold/model/
DPublicVolume.cpp103 if (mFsType == "vfat" && vfat::IsSupported()) { in doMount()
108 } else if (mFsType == "exfat" && exfat::IsSupported()) { in doMount()
311 bool useVfat = vfat::IsSupported(); in doFormat()
312 bool useExfat = exfat::IsSupported(); in doFormat()
DPrivateVolume.cpp220 IsVirtioBlkDevice(major(mRawDevice))) && f2fs::IsSupported()) { in doFormat()
/system/bt/main/shim/
Dcontroller.cc215 GetController()->IsSupported((bluetooth::hci::OpCode)
218 GetController()->IsSupported((
222 GetController()->IsSupported((bluetooth::hci::OpCode)
226 GetController()->IsSupported((bluetooth::hci::OpCode)kLeSetPrivacyMode))
/system/memory/libmeminfo/vts/
Dvts_meminfo_test.cpp33 TEST(SmapsRollup, IsSupported) { in TEST() argument
/system/bt/gd/hci/acl_manager/
Dle_impl.h470 if (controller_->IsSupported(OpCode::LE_EXTENDED_CREATE_CONNECTION)) { in create_le_connection()