Home | History | Annotate | Download | only in storage

Lines Matching defs:requests

61         ArrayList<CacheQuotaHint> requests = new ArrayList<>();
62 requests.add(buildCacheQuotaHint("uuid", 0, 100));
64 CacheQuotaStrategy.saveToXml(mOut, requests, 1000);
76 ArrayList<CacheQuotaHint> requests = new ArrayList<>();
77 requests.add(buildCacheQuotaHint("uuid", 0, 100));
78 requests.add(buildCacheQuotaHint("uuid2", 10, 250));
80 CacheQuotaStrategy.saveToXml(mOut, requests, 1000);
93 ArrayList<CacheQuotaHint> requests = new ArrayList<>();
94 requests.add(buildCacheQuotaHint(null, 0, 100));
95 requests.add(buildCacheQuotaHint(null, 10, 250));
97 CacheQuotaStrategy.saveToXml(mOut, requests, 1000);