Searched defs:persistent (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DStreamPort.java50 protected synchronized void assignFrame(Frame frame, boolean persistent) { argument
52 checkFrameType(frame, persistent);
54 if (persistent) {
64 mPersistent = persistent;
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java296 boolean persistent = (data.readInt() != 0);
303 restrictedBackupMode, persistent, config, compatInfo, services, coreSettings);
994 boolean openGlTrace, boolean restrictedBackupMode, boolean persistent,
1020 data.writeInt(persistent ? 1 : 0);
990 bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, ProfilerInfo profilerInfo, Bundle testArgs, IInstrumentationWatcher testWatcher, IUiAutomationConnection uiAutomationConnection, int debugMode, boolean openGlTrace, boolean restrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
H A DIApplicationThread.java98 int debugMode, boolean openGlTrace, boolean restrictedBackupMode, boolean persistent,
95 bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, ProfilerInfo profilerInfo, Bundle testArguments, IInstrumentationWatcher testWatcher, IUiAutomationConnection uiAutomationConnection, int debugMode, boolean openGlTrace, boolean restrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
H A DActivityManagerNative.java4313 String packageName, boolean waitForDebugger, boolean persistent)
4321 data.writeInt(persistent ? 1 : 0);
4312 setDebugApp( String packageName, boolean waitForDebugger, boolean persistent) argument
H A DActivityThread.java449 boolean persistent; field in class:ActivityThread.AppBindData
772 boolean enableOpenGlTrace, boolean isRestrictedBackupMode, boolean persistent,
831 data.persistent = persistent;
4448 if (data.persistent) {
767 bindApplication(String processName, ApplicationInfo appInfo, List<ProviderInfo> providers, ComponentName instrumentationName, ProfilerInfo profilerInfo, Bundle instrumentationArgs, IInstrumentationWatcher instrumentationWatcher, IUiAutomationConnection instrumentationUiConnection, int debugMode, boolean enableOpenGlTrace, boolean isRestrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
H A DIActivityManager.java261 String packageName, boolean waitForDebugger, boolean persistent)
293 * This will deliver the specified signal to all the persistent processes. Currently only
260 setDebugApp( String packageName, boolean waitForDebugger, boolean persistent) argument
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessRecord.java70 // 'persistent' is true (in which case we
165 boolean persistent; // always keep this application running? field in class:ProcessRecord
311 if (persistent || removed) {
312 pw.print(prefix); pw.print("persistent="); pw.print(persistent);
423 persistent = false;
552 if (!persistent) {
H A DActivityManagerService.java406 // Necessary ApplicationInfo flags to mark an app as persistent
628 * List of persistent applications that are in the process
2191 app.persistent = true;
2864 if (app.persistent && lrui >= 0) {
2865 // We don't care about the position of persistent processes, as long as
2867 if (DEBUG_LRU) Slog.d(TAG_LRU, "Not moving, persistent: " + app);
3010 && !cr.binding.service.app.persistent) {
3017 if (cpr.proc != null && cpr.proc.lruSeq != mLruSeq && !cpr.proc.persistent) {
3395 if (app.persistent) {
4998 if (r.persistent) {
10566 setDebugApp(String packageName, boolean waitForDebugger, boolean persistent) argument
17379 updateConfigurationLocked(Configuration values, ActivityRecord starting, boolean persistent, boolean initLocale) argument
[all...]
/frameworks/base/core/java/android/preference/
H A DPreference.java897 * Checks whether this Preference is persistent. If it is, it stores its value(s) into
898 * the persistent {@link SharedPreferences} storage.
900 * @return True if it is persistent.
910 * Preference is persistent and it currently has a key. Before you
920 * Sets whether this Preference is persistent. When persistent,
921 * it stores its value(s) into the persistent {@link SharedPreferences}
924 * @param persistent Set true if it should store its value(s) into the {@link SharedPreferences}.
926 public void setPersistent(boolean persistent) { argument
927 mPersistent = persistent;
[all...]
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DPreference.java835 * Checks whether this Preference is persistent. If it is, it stores its value(s) into
836 * the persistent {@link android.content.SharedPreferences} storage.
838 * @return True if it is persistent.
848 * Preference is persistent and it currently has a key. Before you
858 * Sets whether this Preference is persistent. When persistent,
859 * it stores its value(s) into the persistent {@link android.content.SharedPreferences}
862 * @param persistent Set true if it should store its value(s) into the
865 public void setPersistent(boolean persistent) { argument
866 mPersistent = persistent;
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java939 [persistent] [join|auth] [go_intent=<0..15>] [freq=<in MHz>] */
970 args.add("persistent");
1013 public boolean p2pGroupAdd(boolean persistent) { argument
1014 if (persistent) {
1015 return doBooleanCommand("P2P_GROUP_ADD persistent");
1021 return doBooleanCommand("P2P_GROUP_ADD persistent=" + netId);
1047 /* Reinvoke a persistent connection */
1051 return doBooleanCommand("P2P_INVITE persistent=" + netId + " peer=" + deviceAddress);

Completed in 2804 milliseconds