Searched refs:installed (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/net/http/
H A DHttpResponseCache.java164 * Returns the currently-installed {@code HttpResponseCache}, or null if
165 * there is no cache installed or it is not a {@code HttpResponseCache}.
168 ResponseCache installed = ResponseCache.getDefault();
169 return installed instanceof HttpResponseCache ? (HttpResponseCache) installed : null;
178 * @return the newly-installed cache
184 HttpResponseCache installed = getInstalled();
185 if (installed != null) {
186 // don't close and reopen if an equivalent cache is already installed
187 DiskLruCache installedCache = installed
[all...]
/frameworks/compile/libbcc/runtime/test/timing/
H A Dtime32 test $ARCH $FILE installed $INSTALLED
/frameworks/base/core/tests/coretests/src/android/net/http/
H A DHttpResponseCacheTest.java50 HttpResponseCache installed = HttpResponseCache.install(cacheDir, 10 * 1024 * 1024);
51 assertNotNull(installed);
52 assertSame(installed, ResponseCache.getDefault());
53 assertSame(installed, HttpResponseCache.getDefault());
/frameworks/base/core/java/android/server/search/
H A DSearchables.java57 // Contains all installed activities that handle the global search
254 * Returns a sorted list of installed search providers as per
280 private ComponentName findGlobalSearchActivity(List<ResolveInfo> installed) { argument
282 // and if it's still installed, return it.
292 return getDefaultGlobalSearchProvider(installed);
297 * component name is installed on the system or not. This deals with
298 * cases such as the removal of an installed provider.
/frameworks/base/core/jni/
H A Dandroid_hardware_Camera.cpp67 void setCallbackMode(JNIEnv *env, bool installed, bool manualMode);
359 void JNICameraContext::setCallbackMode(JNIEnv *env, bool installed, bool manualMode) argument
372 if (!installed) {
599 static void android_hardware_Camera_setHasPreviewCallback(JNIEnv *env, jobject thiz, jboolean installed, jboolean manualBuffer) argument
601 ALOGV("setHasPreviewCallback: installed:%d, manualBuffer:%d", (int)installed, (int)manualBuffer);
611 context->setCallbackMode(env, installed, manualBuffer);
/frameworks/native/opengl/libs/
H A DAndroid.mk78 # make sure we depend on egl.cfg, so it gets installed
/frameworks/base/core/java/android/hardware/
H A DCamera.java577 private native final void setHasPreviewCallback(boolean installed, boolean manualBuffer); argument
823 * should not be installed on devices <em>without</em> auto-focus, you must
861 * <p>If your application should not be installed

Completed in 5114 milliseconds