Home
last modified time | relevance | path

Searched refs:installed (Results 1 – 25 of 198) sorted by relevance

12345678

/frameworks/base/core/java/android/net/http/
DHttpResponseCache.java165 ResponseCache installed = ResponseCache.getDefault(); in getInstalled() local
166 if (installed instanceof HttpResponseCache) { in getInstalled()
167 return (HttpResponseCache) installed; in getInstalled()
184 ResponseCache installed = ResponseCache.getDefault(); in install() local
185 if (installed instanceof HttpResponseCache) { in install()
186 HttpResponseCache installedResponseCache = (HttpResponseCache) installed; in install()
/frameworks/base/core/java/android/content/pm/
DPackageUserState.java40 public boolean installed; field in PackageUserState
55 installed = true; in PackageUserState()
65 installed = o.installed; in PackageUserState()
83 return (this.installed && !this.hidden) in isInstalled()
/frameworks/base/docs/html/guide/topics/data/
Dinstall-location.jd34 <p>Beginning with API Level 8, you can allow your application to be installed on the
39 <em>not</em> declare this attribute, your application will be installed on the internal storage
55 <p>If you declare "{@code preferExternal}", you request that your application be installed on the
56 external storage, but the system does not guarantee that your application will be installed on
60 <p>If you declare "{@code auto}", you indicate that your application may be installed on the
65 <p>When your application is installed on the external storage:</p>
73 generated key that can be decrypted only by the device that originally installed it. Thus, an
74 application installed on an SD card works for only one device.</li>
108 <p>When your application is installed on a device with an API Level lower than 8, the {@code
109 android:installLocation} attribute is ignored and the application is installed on the internal
[all …]
/frameworks/base/services/core/java/com/android/server/pm/
DPackageSettingBase.java295 modifyUserState(userId).installed = inst; in setInstalled()
299 return readUserState(userId).installed; in getInstalled()
304 if (readUserState(user).installed) { in isAnyInstalled()
311 int[] queryInstalledUsers(int[] users, boolean installed) { in queryInstalledUsers() argument
314 if (getInstalled(user) == installed) { in queryInstalledUsers()
321 if (getInstalled(user) == installed) { in queryInstalledUsers()
377 void setUserState(int userId, long ceDataInode, int enabled, boolean installed, boolean stopped, in setUserState() argument
385 state.installed = installed; in setUserState()
/frameworks/base/docs/html/guide/topics/manifest/
Dmanifest-element.jd138 <td>The application must be installed on the internal device storage only. If this is set,
139 the application will never be installed on the external storage. If the internal
144 <td>The application may be installed on the external storage, but the system will install the
146 will install it on the external storage. Once installed, the user can move the application
150 <td>The application prefers to be installed on the external storage (SD card). There is no
151 guarantee that the system will honor this request. The application might be installed on internal
152 storage if the external media is unavailable or full. Once installed, the user can move the applica…
157 <p class="note"><strong>Note:</strong> By default, your application will be installed on the
158 internal storage and cannot be installed on the external storage unless you define this attribute
161 <p>When an application is installed on the external storage:</p>
[all …]
/frameworks/base/services/core/java/com/android/server/vr/
DEnabledComponentsObserver.java245 ArraySet<ComponentName> installed = new ArraySet<>(); in loadComponentNames() local
263 installed.add(component); in loadComponentNames()
266 return installed; in loadComponentNames()
DVrManagerService.java334 ArraySet<ComponentName> installed = mComponentObserver.getInstalled(userId);
335 if (installed == null || installed.size() == 0) {
338 for (ComponentName n : installed) {
/frameworks/base/docs/html/google/play/billing/
Dbilling_promotions.jd88 the latest version installed) or to download or update it. (We do not
228 <h4 id="test-app-uninstalled">App is not installed</h4>
231 If the user redeems a promo code for an app that is not installed on the
233 installed but not up-to-date, the Play Store prompts the user to update the
235 have your app installed.
251 <h4 id="test-app-not-running">App is installed, but not running</h4>
254 If the user redeems a promo code for an app that is installed on the device,
256 following sequence on a device that has your app installed but not running:
271 <h4 id="test-app-running">App is installed and running
/frameworks/base/docs/html/ndk/guides/
Dsetup.jd49 <li>Launch Eclipse, which is installed as part of the Android SDK.</li>
60 <p>To confirm that you have installed the NDK, set it up correctly, and properly configured Eclipse,
85 <p>If you have successfully installed and configured the NDK, the screen on your target device looks
/frameworks/base/docs/html/topic/instant-apps/
Dfaqs.jd11 (API level 16) or higher and have Google Play services installed.
32 that is not installed.
/frameworks/base/services/tests/servicestests/src/com/android/server/webkit/
DWebViewUpdateServiceTest.java140 String packageName, boolean enabled, boolean valid, boolean installed) { in createPackageInfo() argument
146 if (installed) { in createPackageInfo()
159 boolean installed, Signature[] signatures, long updateTime) { in createPackageInfo() argument
160 PackageInfo p = createPackageInfo(packageName, enabled, valid, installed); in createPackageInfo()
167 boolean installed, Signature[] signatures, long updateTime, boolean hidden) { in createPackageInfo() argument
169 createPackageInfo(packageName, enabled, valid, installed, signatures, updateTime); in createPackageInfo()
/frameworks/base/docs/html/about/
Dandroid.jd10 countries around the world. It's the largest installed base of any mobile platform
20 <h3>Global partnerships and large installed base</h3>
85 When you publish an app on Google Play, you reach the huge installed base of
Dindex.jd10 countries around the world. It's the largest installed base of any mobile platform
28 <h3>Global partnerships and large installed base</h3>
94 When you publish an app on Google Play, you reach the huge installed base of
/frameworks/base/core/jni/
Dandroid_hardware_Camera.cpp83 void setCallbackMode(JNIEnv *env, bool installed, bool manualMode);
416 void JNICameraContext::setCallbackMode(JNIEnv *env, bool installed, bool manualMode) in setCallbackMode() argument
429 if (!installed) { in setCallbackMode()
750 …rdware_Camera_setHasPreviewCallback(JNIEnv *env, jobject thiz, jboolean installed, jboolean manual… in android_hardware_Camera_setHasPreviewCallback() argument
752 … ALOGV("setHasPreviewCallback: installed:%d, manualBuffer:%d", (int)installed, (int)manualBuffer); in android_hardware_Camera_setHasPreviewCallback()
762 context->setCallbackMode(env, installed, manualBuffer); in android_hardware_Camera_setHasPreviewCallback()
/frameworks/base/services/core/java/com/android/server/notification/
DManagedServices.java425 Set<ComponentName> installed = new ArraySet<>(); in queryPackageForServices() local
450 installed.add(component); in queryPackageForServices()
453 return installed; in queryPackageForServices()
464 Set<ComponentName> installed = queryPackageForServices(null, userId); in updateSettingsAccordingToInstalledServices() local
468 for (ComponentName component : installed) { in updateSettingsAccordingToInstalledServices()
/frameworks/base/docs/html/wear/preview/features/
Dbridger.jd95 the watch app may not be installed on all of them.
100 is installed, use the <a href=
Dime.jd52 To ensure that your IME can only be installed on Wearables that support input
70 IMEs from the list of installed IMEs. Once the users enable your IME, they
/frameworks/base/services/core/java/com/android/server/search/
DSearchables.java300 private ComponentName findGlobalSearchActivity(List<ResolveInfo> installed) { in findGlobalSearchActivity() argument
312 return getDefaultGlobalSearchProvider(installed); in findGlobalSearchActivity()
/frameworks/native/services/surfaceflinger/EventLog/
DEventLogTags.logtags2 # This is installed on the device, in /system/etc, and parsed by logcat.
/frameworks/base/docs/html/distribute/engage/
Dgcm.jd16 installed on Android devices anywhere in the world.
Dads.jd9 already installed it on their phone. AdWords can remind them of key features
/frameworks/base/docs/html/
Doffline.jd44 <h3>If you've installed new SDK components using the Android SDK Manager</h3>
/frameworks/base/tests/AccessoryDisplay/
DREADME42 These applications should be installed on two separate Android
/frameworks/base/docs/html/distribute/stories/games/
Dtiny-co.jd21 installed base and global reach. They also knew that the growing base of
/frameworks/base/docs/html/preview/
Dsetup-sdk.jd46 <p>If you already have Android Studio installed, make sure you have Android
73 agreements for any packages that need to be installed.

12345678