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

/frameworks/base/core/java/android/net/http/
H A DHttpResponseCache.java149 * Returns the currently-installed {@code HttpResponseCache}, or null if
150 * there is no cache installed or it is not a {@code HttpResponseCache}.
153 ResponseCache installed = ResponseCache.getDefault();
154 return installed instanceof HttpResponseCache ? (HttpResponseCache) installed : null;
163 * @return the newly-installed cache
169 HttpResponseCache installed = getInstalled();
170 if (installed != null) {
171 // don't close and reopen if an equivalent cache is already installed
172 DiskLruCache installedCache = installed
[all...]
/frameworks/base/core/tests/coretests/src/android/net/http/
H A DHttpResponseCacheTest.java46 HttpResponseCache installed = HttpResponseCache.install(cacheDir, 10 * 1024 * 1024);
47 assertNotNull(installed);
48 assertSame(installed, ResponseCache.getDefault());
49 assertSame(installed, HttpResponseCache.getDefault());
/frameworks/compile/libbcc/runtime/test/timing/
H A Dtime32 test $ARCH $FILE installed $INSTALLED
/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/opengl/libs/
H A DAndroid.mk69 # make sure we depend on egl.cfg, so it gets installed
/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) {
589 static void android_hardware_Camera_setHasPreviewCallback(JNIEnv *env, jobject thiz, jboolean installed, jboolean manualBuffer) argument
591 LOGV("setHasPreviewCallback: installed:%d, manualBuffer:%d", (int)installed, (int)manualBuffer);
601 context->setCallbackMode(env, installed, manualBuffer);
/frameworks/base/core/java/android/hardware/
H A DCamera.java541 private native final void setHasPreviewCallback(boolean installed, boolean manualBuffer); argument
765 * should not be installed on devices <em>without</em> auto-focus, you must
803 * <p>If your application should not be installed

Completed in 187 milliseconds