Lines Matching refs:space
1456 int64_t space; in collectQuotaStats() local
1459 if ((space = GetOccupiedSpaceForUid(uuid, uid)) != -1) { in collectQuotaStats()
1460 stats->dataSize += space; in collectQuotaStats()
1465 if ((space = GetOccupiedSpaceForGid(uuid, cacheGid)) != -1) { in collectQuotaStats()
1466 stats->cacheSize += space; in collectQuotaStats()
1472 if ((space = GetOccupiedSpaceForGid(uuid, sharedGid)) != -1) { in collectQuotaStats()
1473 stats->codeSize += space; in collectQuotaStats()
1481 if ((space = GetOccupiedSpaceForGid(uuid, extGid)) != -1) { in collectQuotaStats()
1482 extStats->dataSize += space; in collectQuotaStats()
1488 if ((space = GetOccupiedSpaceForGid(uuid, extCacheGid)) != -1) { in collectQuotaStats()
1489 extStats->dataSize += space; in collectQuotaStats()
1490 extStats->cacheSize += space; in collectQuotaStats()
1769 int64_t space; in getUserSize() local
1772 if ((space = GetOccupiedSpaceForGid(uuidString, AID_MEDIA_OBB)) != -1) { in getUserSize()
1773 extStats.codeSize += space; in getUserSize()
1799 if ((space = GetOccupiedSpaceForUid(uuidString, uid)) != -1) { in getUserSize()
1800 extStats.dataSize += space; in getUserSize()
1914 int64_t space; in getExternalSize() local
1918 if ((space = GetOccupiedSpaceForUid(uuidString, uid)) != -1) { in getExternalSize()
1919 totalSize = space; in getExternalSize()
1923 if ((space = GetOccupiedSpaceForGid(uuidString, audioGid)) != -1) { in getExternalSize()
1924 audioSize = space; in getExternalSize()
1927 if ((space = GetOccupiedSpaceForGid(uuidString, videoGid)) != -1) { in getExternalSize()
1928 videoSize = space; in getExternalSize()
1931 if ((space = GetOccupiedSpaceForGid(uuidString, imageGid)) != -1) { in getExternalSize()
1932 imageSize = space; in getExternalSize()
1934 if ((space = GetOccupiedSpaceForGid(uuidString, AID_MEDIA_OBB)) != -1) { in getExternalSize()
1935 obbSize = space; in getExternalSize()