Searched refs:persistent (Results 1 - 14 of 14) 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/services/java/com/android/server/am/
H A DAppErrorDialog.java80 if (app.persistent) {
H A DProcessRecord.java56 // 'persistent' is true (in which case we
136 boolean persistent; // always keep this application running? field in class:ProcessRecord
228 if (persistent || removed) {
229 pw.print(prefix); pw.print("persistent="); pw.print(persistent);
338 persistent = false;
H A DProviderMap.java193 && (provider.proc == null || evenPersistent || !provider.proc.persistent)) {
H A DActivityManagerService.java399 * List of persistent applications that are in the process
415 * any persistent application records (since we never want to exit them).
1386 app.persistent = true;
2154 if (app.persistent) {
3306 if (r.persistent) {
3530 if (app.persistent) {
3531 // we don't kill persistent processes
3764 if (app.persistent && !evenPersistent) {
3765 // we don't kill persistent processes
3883 && (r.app == null || evenPersistent || !r.app.persistent)) {
7244 setDebugApp(String packageName, boolean waitForDebugger, boolean persistent) argument
12288 updateConfigurationLocked(Configuration values, ActivityRecord starting, boolean persistent, boolean initLocale) argument
[all...]
H A DActiveServices.java1522 && (service.app == null || evenPersistent || !service.app.persistent)) {
1735 if (r.app != null && r.app.persistent) {
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiNative.java553 [persistent] [join|auth] [go_intent=<0..15>] [freq=<in MHz>] */
584 args.add("persistent");
627 public boolean p2pGroupAdd(boolean persistent) { argument
628 if (persistent) {
629 return doBooleanCommand("P2P_GROUP_ADD persistent");
635 return doBooleanCommand("P2P_GROUP_ADD persistent=" + netId);
659 /* Reinvoke a persistent connection */
663 return doBooleanCommand("P2P_INVITE persistent=" + netId + " peer=" + deviceAddress);
/frameworks/base/core/java/android/preference/
H A DPreference.java853 * Checks whether this Preference is persistent. If it is, it stores its value(s) into
854 * the persistent {@link SharedPreferences} storage.
856 * @return True if it is persistent.
866 * Preference is persistent and it currently has a key. Before you
876 * Sets whether this Preference is persistent. When persistent,
877 * it stores its value(s) into the persistent {@link SharedPreferences}
880 * @param persistent Set true if it should store its value(s) into the {@link SharedPreferences}.
882 public void setPersistent(boolean persistent) { argument
883 mPersistent = persistent;
[all...]
/frameworks/base/core/java/android/app/
H A DIApplicationThread.java93 int debugMode, boolean openGlTrace, boolean restrictedBackupMode, boolean persistent,
90 bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, String profileName, ParcelFileDescriptor profileFd, boolean autoStopProfiler, Bundle testArguments, IInstrumentationWatcher testWatcher, int debugMode, boolean openGlTrace, boolean restrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
H A DApplicationThreadNative.java273 boolean persistent = (data.readInt() != 0);
281 persistent, config, compatInfo, services, coreSettings);
867 boolean restrictedBackupMode, boolean persistent,
894 data.writeInt(persistent ? 1 : 0);
863 bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, String profileName, ParcelFileDescriptor profileFd, boolean autoStopProfiler, Bundle testArgs, IInstrumentationWatcher testWatcher, int debugMode, boolean openGlTrace, boolean restrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
H A DIActivityManager.java222 String packageName, boolean waitForDebugger, boolean persistent)
251 * This will deliver the specified signal to all the persistent processes. Currently only
221 setDebugApp( String packageName, boolean waitForDebugger, boolean persistent) argument
H A DActivityThread.java425 boolean persistent; field in class:ActivityThread.AppBindData
727 boolean persistent, Configuration config, CompatibilityInfo compatInfo,
747 data.persistent = persistent;
4162 if (data.persistent) {
721 bindApplication(String processName, ApplicationInfo appInfo, List<ProviderInfo> providers, ComponentName instrumentationName, String profileFile, ParcelFileDescriptor profileFd, boolean autoStopProfiler, Bundle instrumentationArgs, IInstrumentationWatcher instrumentationWatcher, int debugMode, boolean enableOpenGlTrace, boolean isRestrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
H A DActivityManagerNative.java3225 String packageName, boolean waitForDebugger, boolean persistent)
3233 data.writeInt(persistent ? 1 : 0);
3224 setDebugApp( String packageName, boolean waitForDebugger, boolean persistent) argument
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java831 boolean persistent = false;
837 } else if (opt.equals("--persistent")) {
838 persistent = true;
846 mAm.setDebugApp(pkg, wait, persistent);
1449 " am set-debug-app [-w] [--persistent] <PACKAGE>\n" +
1518 " --persistent: retain this value\n" +

Completed in 5777 milliseconds