Home
last modified time | relevance | path

Searched refs:BluetoothProfileManager (Results 1 – 18 of 18) sorted by relevance

/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_profile_manager.cpp36 BluetoothProfileManager::BluetoothProfileManager() in BluetoothProfileManager() function in OHOS::Bluetooth::BluetoothProfileManager
42 BluetoothProfileManager::~BluetoothProfileManager() in ~BluetoothProfileManager()
47 BluetoothProfileManager &BluetoothProfileManager::GetInstance() in GetInstance()
49 static BluetoothNoDestructor<BluetoothProfileManager> instance; in GetInstance()
53 void BluetoothProfileManager::SubScribeBluetoothSystemAbility() in SubScribeBluetoothSystemAbility()
62 void BluetoothProfileManager::UnSubScribeBluetoothSystemAbility() in UnSubScribeBluetoothSystemAbility()
71 sptr<IRemoteObject> BluetoothProfileManager::GetHostRemote() in GetHostRemote()
148 void BluetoothProfileManager::RunFuncWhenBluetoothServiceStarted() in RunFuncWhenBluetoothServiceStarted()
206 int32_t BluetoothProfileManager::GetValidId() in GetValidId()
253 void BluetoothProfileManager::DeregisterFunc(int32_t id) in DeregisterFunc()
[all …]
H A Dbluetooth_pan.cpp156 profileRegisterId = BluetoothProfileManager::GetInstance().RegisterFunc(PROFILE_PAN_SERVER, in impl()
170 BluetoothProfileManager::GetInstance().DeregisterFunc(profileRegisterId); in ~impl()
H A Dbluetooth_map_mse.cpp76 profileRegisterId = BluetoothProfileManager::GetInstance().RegisterFunc(PROFILE_MAP_MSE, in impl()
87 BluetoothProfileManager::GetInstance().DeregisterFunc(profileRegisterId); in ~impl()
H A Dbluetooth_a2dp_snk.cpp98 profileRegisterId = BluetoothProfileManager::GetInstance().RegisterFunc(PROFILE_A2DP_SINK, in impl()
109 BluetoothProfileManager::GetInstance().DeregisterFunc(profileRegisterId); in ~impl()
H A Dbluetooth_pbap_pse.cpp80 profileRegisterId = BluetoothProfileManager::GetInstance().RegisterFunc(PROFILE_PBAP_PSE, in impl()
91 BluetoothProfileManager::GetInstance().DeregisterFunc(profileRegisterId); in ~impl()
H A Dbluetooth_opp.cpp87 profileRegisterId = BluetoothProfileManager::GetInstance().RegisterFunc(PROFILE_OPP_SERVER, in impl()
96 BluetoothProfileManager::GetInstance().DeregisterFunc(profileRegisterId); in ~impl()
H A Dbluetooth_host.cpp125 BluetoothProfileManager::GetInstance().NotifyBluetoothStateChange(transport, status); in OnStateChanged()
208 bool isBluetoothSeriviceOn = BluetoothProfileManager::GetInstance().IsBluetoothServiceOn(); in isNeedInterceptSwitchStatus()
474 profileRegisterId = BluetoothProfileManager::GetInstance().RegisterFunc(BLUETOOTH_HOST, in impl()
489 BluetoothProfileManager::GetInstance().DeregisterFunc(profileRegisterId); in ~impl()
507 …sptr<IRemoteObject> hostRemote = BluetoothProfileManager::GetInstance().GetProfileRemote(BLUETOOTH… in LoadBluetoothHostService()
1234 BluetoothProfileManager::GetInstance().NotifyBluetoothStateChange( in OnRemoveBluetoothSystemAbility()
H A Dbluetooth_avrcp_tg.cpp66 profileRegisterId = BluetoothProfileManager::GetInstance().RegisterFunc(PROFILE_AVRCP_TG, in impl()
77 BluetoothProfileManager::GetInstance().DeregisterFunc(profileRegisterId); in ~impl()
H A Dbluetooth_hid_host.cpp203 profileRegisterId = BluetoothProfileManager::GetInstance().RegisterFunc(PROFILE_HID_HOST_SERVER, in impl()
214 BluetoothProfileManager::GetInstance().DeregisterFunc(profileRegisterId); in ~impl()
H A Dbluetooth_ble_advertiser.cpp172 BluetoothProfileManager::GetInstance().DeregisterFunc(profileRegisterId); in ~impl()
198 profileRegisterId = BluetoothProfileManager::GetInstance().RegisterFunc(BLE_ADVERTISER_SERVER, in Init()
H A Dbluetooth_ble_central_manager.cpp176 profileRegisterId = BluetoothProfileManager::GetInstance().RegisterFunc( in impl()
299 BluetoothProfileManager::GetInstance().DeregisterFunc(profileRegisterId); in ~impl()
H A Dbluetooth_a2dp_src.cpp126 profileRegisterId = BluetoothProfileManager::GetInstance().RegisterFunc(PROFILE_A2DP_SRC, in impl()
137 BluetoothProfileManager::GetInstance().DeregisterFunc(profileRegisterId); in ~impl()
H A Dbluetooth_hfp_ag.cpp393 profileRegisterId = BluetoothProfileManager::GetInstance().RegisterFunc(PROFILE_HFP_AG, in impl()
404 BluetoothProfileManager::GetInstance().DeregisterFunc(profileRegisterId); in ~impl()
H A Dbluetooth_hfp_hf.cpp455 profileRegisterId = BluetoothProfileManager::GetInstance().RegisterFunc(PROFILE_HFP_HF, in impl()
466 BluetoothProfileManager::GetInstance().DeregisterFunc(profileRegisterId); in ~impl()
H A Dbluetooth_gatt_server.cpp457 profileRegisterId = BluetoothProfileManager::GetInstance().RegisterFunc(PROFILE_GATT_SERVER, in Init()
842 BluetoothProfileManager::GetInstance().DeregisterFunc(pimpl->profileRegisterId); in ~GattServer()
H A Dbluetooth_gatt_client.cpp377 profileRegisterId = BluetoothProfileManager::GetInstance().RegisterFunc( in impl()
384 BluetoothProfileManager::GetInstance().DeregisterFunc(profileRegisterId); in ~impl()
H A Dbluetooth_avrcp_ct.cpp444 BluetoothProfileManager::GetInstance().DeregisterFunc(profileRegisterId); in ~impl()
894 profileRegisterId = BluetoothProfileManager::GetInstance().RegisterFunc(PROFILE_AVRCP_CT, in impl()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/include/
H A Dbluetooth_profile_manager.h46 class BluetoothProfileManager {
48 BluetoothProfileManager();
49 ~BluetoothProfileManager();
91 static BluetoothProfileManager &GetInstance();
119 return iface_cast<T>(BluetoothProfileManager::GetInstance().GetProfileRemote(objectName)); in GetRemoteProxy()