Home
last modified time | relevance | path

Searched refs:mapCount (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/base/telephony/java/android/telephony/mbms/
H A DServiceInfo.java77 int mapCount = in.readInt(); in ServiceInfo() local
78 if (mapCount > MAP_LIMIT || mapCount < 0) { in ServiceInfo()
79 throw new RuntimeException("bad map length" + mapCount); in ServiceInfo()
81 names = new HashMap(mapCount); in ServiceInfo()
82 while (mapCount-- > 0) { in ServiceInfo()
/aosp12/packages/modules/NeuralNetworks/runtime/test/
H A DTestMemoryInternal.cpp85 int mapCount = 0; in GetAshmemMappingsCount() local
88 ++mapCount; in GetAshmemMappingsCount()
91 return mapCount; in GetAshmemMappingsCount()
/aosp12/system/bpf/libbpf_android/
H A DLoader.cpp486 int mapCount = mdData.size() / sizeOfBpfMapDef; in createMaps() local
487 md.resize(mapCount); in createMaps()
/aosp12/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp391 uint16_t mapCount = dtohs(*(data++)); in parseIdmap() local
392 if (mapCount == 0) { in parseIdmap()
397 if (mapCount > 255) { in parseIdmap()
398 … ALOGW("idmap: too many mappings. Only 255 are possible but %u are present", (uint32_t) mapCount); in parseIdmap()