Searched refs:persistent (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/services/java/com/android/server/am/
H A DProcessRecord.java49 // 'persistent' is true (in which case we
98 boolean persistent; // always keep this application running? field in class:ProcessRecord
105 int persistentActivities; // number of activities that are persistent
161 pw.print(prefix); pw.print("persistent="); pw.print(persistent);
214 persistent = false;
H A DHistoryRecord.java95 boolean persistent; // requested to be persistent? field in class:HistoryRecord
155 pw.print(" persistent="); pw.print(persistent);
202 persistent = false;
H A DActivityManagerService.java526 * List of persistent applications that are in the process
542 * any persistent application records (since we never want to exit them).
1206 app.persistent = true;
1983 if (app.persistent) {
4216 if (r.persistent) {
4675 if (app.persistent) {
4676 // Ah, but the application itself is persistent. Whatever!
4680 // App is no longer persistent... make sure it and the ones
4708 if (r.persistent) {
4710 if (localLOGV) Log.v(TAG, "Already persistent!");
7813 setDebugApp(String packageName, boolean waitForDebugger, boolean persistent) argument
[all...]
/frameworks/base/core/java/android/preference/
H A DPreference.java715 * Checks whether this Preference is persistent. If it is, it stores its value(s) into
716 * the persistent {@link SharedPreferences} storage.
718 * @return True if it is persistent.
728 * Preference is persistent and it currently has a key. Before you
738 * Sets whether this Preference is persistent. When persistent,
739 * it stores its value(s) into the persistent {@link SharedPreferences}
742 * @param persistent Set true if it should store its value(s) into the {@link SharedPreferences}.
744 public void setPersistent(boolean persistent) { argument
745 mPersistent = persistent;
[all...]
/frameworks/base/core/java/android/app/
H A DIActivityManager.java216 String packageName, boolean waitForDebugger, boolean persistent)
241 * This will deliver the specified signal to all the persistent processes. Currently only
215 setDebugApp( String packageName, boolean waitForDebugger, boolean persistent) argument
H A DActivityManagerNative.java2133 String packageName, boolean waitForDebugger, boolean persistent)
2141 data.writeInt(persistent ? 1 : 0);
2132 setDebugApp( String packageName, boolean waitForDebugger, boolean persistent) argument

Completed in 115 milliseconds