Home
last modified time | relevance | path

Searched refs:profileList (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/distributedhardware/distributed_camera/services/cameraservice/cameraoperator/handler/include/
H A Ddcamera_handler.h59 std::vector<CameraStandard::Profile>& profileList, std::set<int32_t>& formatSet);
61 std::vector<CameraStandard::Profile>& profileList);
63 std::vector<CameraStandard::Profile>& profileList);
/ohos5.0/foundation/distributedhardware/distributed_camera/services/cameraservice/cameraoperator/handler/src/
H A Ddcamera_handler.cpp321 std::vector<CameraStandard::Profile>& profileList, std::set<int32_t>& formatSet) in ProcessProfile() argument
323 for (auto& profile : profileList) { in ProcessProfile()
341 std::vector<CameraStandard::Profile>& profileList) in ConfigFormatphoto() argument
343 DHLOGI("type: %{public}d, size: %{public}zu", type, profileList.size()); in ConfigFormatphoto()
351 ProcessProfile(type, formatMap, profileList, formatSet); in ConfigFormatphoto()
375 std::vector<CameraStandard::Profile>& profileList) in ConfigFormatvideo() argument
377 DHLOGI("type: %d, size: %{public}zu", type, profileList.size()); in ConfigFormatvideo()
385 ProcessProfile(type, formatMap, profileList, formatSet); in ConfigFormatvideo()
/ohos5.0/foundation/communication/dsoftbus/core/common/dfx/statistics/instant/
H A Dbt_statistic.cpp82 std::vector<uint32_t> profileList = BluetoothHost::GetDefaultHost().GetProfileList(); in GetBtStatisticInfo() local
83 for (size_t i = 0; i < profileList.size(); i++) { in GetBtStatisticInfo()
84 if (getProfileDeviceInfoMap_.find(profileList[i]) == getProfileDeviceInfoMap_.end()) { in GetBtStatisticInfo()
87 GetProfileDeviceInfo func = getProfileDeviceInfoMap_[profileList[i]]; in GetBtStatisticInfo()
/ohos5.0/foundation/communication/nfc/services/src/tag/
H A Dbt_connection_manager.cpp384 std::vector<uint32_t> profileList = Bluetooth::BluetoothHost::GetDefaultHost().GetProfileList(); in GetProfileList() local
385 if (profileList.size() == 0 && profileList.size() > PROFILE_MAX_SIZE) { in GetProfileList()
389 for (uint32_t i = 0; i < profileList.size(); i++) { in GetProfileList()
391 profileList[i] == Bluetooth::PROFILE_ID_HID_HOST) { in GetProfileList()
395 if (profileList[i] == Bluetooth::PROFILE_ID_A2DP_SRC || in GetProfileList()
396 profileList[i] == Bluetooth::PROFILE_ID_HFP_AG) { in GetProfileList()
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/common/
H A Dprofile_list.h239 #define FOR_EACH_LIST(it, profileList, transport) for (auto it : *(profileList.GetProfiles(transpor… argument
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_host.cpp834 std::vector<uint32_t> profileList; in GetProfileList() local
836 CHECK_AND_RETURN_LOG_RET(proxy != nullptr, profileList, "proxy is nullptr"); in GetProfileList()
838 profileList = proxy->GetProfileList(); in GetProfileList()
839 return profileList; in GetProfileList()