HomeSort by relevance Sort by last modified time
    Searched refs:CacheControl (Results 1 - 21 of 21) sorted by null

  /external/chromium-trace/catapult/devil/devil/android/perf/
cache_control.py 6 class CacheControl(object):
15 self._device.WriteFile(CacheControl._DROP_CACHES, '3', as_root=True)
  /external/libmojo/third_party/catapult/devil/devil/android/perf/
cache_control.py 6 class CacheControl(object):
15 self._device.WriteFile(CacheControl._DROP_CACHES, '3', as_root=True)
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
CacheControlTest.java 30 CacheControl cacheControl = new CacheControl.Builder().build();
31 assertEquals("", cacheControl.toString());
32 assertFalse(cacheControl.noCache());
33 assertFalse(cacheControl.noStore());
34 assertEquals(-1, cacheControl.maxAgeSeconds());
35 assertEquals(-1, cacheControl.sMaxAgeSeconds());
36 assertFalse(cacheControl.isPrivate());
37 assertFalse(cacheControl.isPublic())
    [all...]
RequestTest.java 140 @Test public void cacheControl() throws Exception {
142 .cacheControl(new CacheControl.Builder().noCache().build())
151 .cacheControl(new CacheControl.Builder().build())
CacheTest.java     [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/Include/
AcpiCpuData.h 25 CacheControl
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
CacheControl.java 14 public final class CacheControl {
20 public static final CacheControl FORCE_NETWORK = new Builder().noCache().build();
28 public static final CacheControl FORCE_CACHE = new Builder()
47 private CacheControl(boolean noCache, boolean noStore, int maxAgeSeconds, int sMaxAgeSeconds,
64 private CacheControl(Builder builder) {
151 public static CacheControl parse(Headers headers) {
244 return new CacheControl(noCache, noStore, maxAgeSeconds, sMaxAgeSeconds, isPrivate, isPublic,
362 public CacheControl build() {
363 return new CacheControl(this);
Request.java 37 private volatile CacheControl cacheControl; // Lazily initialized.
101 public CacheControl cacheControl() {
102 CacheControl result = cacheControl;
103 return result != null ? result : (cacheControl = CacheControl.parse(headers));
214 * control headers already present. If {@code cacheControl} doesn't define
217 public Builder cacheControl(CacheControl cacheControl)
    [all...]
Response.java 48 private volatile CacheControl cacheControl; // Lazily initialized.
204 public CacheControl cacheControl() {
205 CacheControl result = cacheControl;
206 return result != null ? result : (cacheControl = CacheControl.parse(headers));
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
CacheStrategy.java 3 import com.squareup.okhttp.CacheControl;
72 || response.cacheControl().maxAgeSeconds() != -1
73 || response.cacheControl().isPublic()
74 || response.cacheControl().isPrivate()) {
85 return !response.cacheControl().noStore() && !request.cacheControl().noStore();
163 if (candidate.networkRequest != null && request.cacheControl().onlyIfCached()) {
190 CacheControl requestCaching = request.cacheControl();
208 CacheControl responseCaching = cacheResponse.cacheControl()
    [all...]
  /external/chromium-trace/catapult/systrace/profile_chrome/
chrome_startup_tracing_agent.py 56 cache_control.CacheControl(self._device).DropRamCaches()
  /external/caliper/lib/
jsr311-api-1.1.1.jar 
jersey-core-1.11.jar 
  /device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/
CpuS3.c 328 case CacheControl:
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.5.0/
okhttp-2.5.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.7.2/
okhttp-2.7.2.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.7.4/
okhttp-2.7.4.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp3/okhttp/3.3.0/
okhttp-3.3.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp3/okhttp/3.4.1/
okhttp-3.4.1.jar 
  /external/v8/tools/
run_perf.py 817 cache = cache_control.CacheControl(self.device)
    [all...]
  /frameworks/base/config/
preloaded-classes     [all...]

Completed in 340 milliseconds