Home
last modified time | relevance | path

Searched refs:MAX_MAP_SIZE (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/multimedia/media_foundation/services/media_monitor/common/src/
H A Devent_bean.cpp28 constexpr int MAX_MAP_SIZE = 1000; variable
42 FALSE_RETURN_V_MSG_E(intMap_.size() < MAX_MAP_SIZE, false, in WriteToParcel()
50 FALSE_RETURN_V_MSG_E(stringMap_.size() < MAX_MAP_SIZE, false, in WriteToParcel()
58 FALSE_RETURN_V_MSG_E(uint64Map_.size() < MAX_MAP_SIZE, false, in WriteToParcel()
66 FALSE_RETURN_V_MSG_E(floatMap_.size() < MAX_MAP_SIZE, false, in WriteToParcel()
83 FALSE_RETURN_MSG(intMapSize < MAX_MAP_SIZE, in ReadFromParcel()
92 FALSE_RETURN_MSG(stringMapSize < MAX_MAP_SIZE, in ReadFromParcel()
101 FALSE_RETURN_MSG(uint64MapSize < MAX_MAP_SIZE, in ReadFromParcel()
110 FALSE_RETURN_MSG(floatMapSize < MAX_MAP_SIZE, in ReadFromParcel()
/ohos5.0/foundation/filemanagement/dfs_service/frameworks/native/cloudsync_kit_inner/src/
H A Dcloud_sync_common.cpp23 constexpr uint32_t MAX_MAP_SIZE = 1024; variable
168 if (size > MAX_MAP_SIZE) { in ReadFromParcel()
169 LOGE("switch data is oversize, the limit is %{public}d", MAX_MAP_SIZE); in ReadFromParcel()
196 if (size > MAX_MAP_SIZE) { in ReadFromParcel()
197 LOGE("appActions data is oversize, the limit is %{public}d", MAX_MAP_SIZE); in ReadFromParcel()
/ohos5.0/foundation/multimedia/av_codec/services/engine/codeclist/
H A Dcodec_ability_singleton.cpp85 if ((*iter).profileLevelsMap.size() > MAX_MAP_SIZE) { in RegisterCapabilityArray()
86 while ((*iter).profileLevelsMap.size() > MAX_MAP_SIZE) { in RegisterCapabilityArray()
98 while ((*iter).measuredFrameRate.size() > MAX_MAP_SIZE) { in RegisterCapabilityArray()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/include/
H A Dbluetooth_object_map.h24 constexpr uint32_t MAX_MAP_SIZE = 100; variable
25 template <typename T, int maxSize = MAX_MAP_SIZE>
/ohos5.0/foundation/communication/dsoftbus/tests/core/adapter/unittest/
H A Dlnn_kv_adapter_test.cpp32 constexpr int32_t MAX_MAP_SIZE = 10000; variable
176 for (int32_t i = 0; i < MAX_MAP_SIZE + 5; i++) {
/ohos5.0/foundation/multimedia/av_codec/services/services/sa_avcodec/ipc/
H A Dcodeclist_parcel.cpp153 CHECK_AND_RETURN_RET_LOG(size <= MAX_MAP_SIZE, false, "mapSizeToRange is invalid"); in Unmarshalling()
169 CHECK_AND_RETURN_RET_LOG(size <= MAX_MAP_SIZE, false, "mapIntToVec is invalid"); in Unmarshalling()
183 CHECK_AND_RETURN_RET_LOG(size <= MAX_MAP_SIZE, false, "mapIntToFormat is invalid"); in Unmarshalling()
/ohos5.0/foundation/multimedia/media_foundation/services/media_monitor/client/src/
H A Dmedia_monitor_client.cpp30 constexpr int MAX_MAP_SIZE = 1000; variable
63 if (mapSize > MAX_MAP_SIZE) { in GetAudioRouteMsg()
/ohos5.0/foundation/communication/dsoftbus/core/adapter/kv_store/src/
H A Dlnn_kv_adapter.cpp35 constexpr int32_t MAX_MAP_SIZE = 10000; variable
180 if (values.empty() || values.size() > MAX_MAP_SIZE) { in PutBatch()
/ohos5.0/foundation/multimedia/player_framework/services/utils/
H A Dmedia_dfx.cpp34 constexpr int64_t MAX_MAP_SIZE = 100; variable
93 g_reachMaxMapSize = (reportMediaInfoMap_[ct].size() >= MAX_MAP_SIZE); in CollectReportMediaInfo()
/ohos5.0/foundation/multimedia/av_codec/interfaces/inner_api/native/
H A Davcodec_info.h490 constexpr uint32_t MAX_MAP_SIZE = 20; variable
/ohos5.0/foundation/multimedia/player_framework/services/services/player/ipc/
H A Dplayer_service_stub.cpp38 constexpr uint32_t MAX_MAP_SIZE = 100; variable
875 if (mapSize >= MAX_MAP_SIZE) { in SetMediaSource()
/ohos5.0/base/notification/distributed_notification_service/frameworks/ans/src/
H A Dnotification_request.cpp55 constexpr int32_t MAX_MAP_SIZE = 1000; variable
1714 mapSize = (mapSize < MAX_MAP_SIZE) ? mapSize : MAX_MAP_SIZE; in ReadFromParcel()