Searched defs: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/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
H A DViewInfoStoreTest.java165 assertTrue(mCallback.persistent.isEmpty());
177 assertTrue(mCallback.persistent.isEmpty());
190 assertTrue(mCallback.persistent.isEmpty());
205 assertTrue(mCallback.persistent.isEmpty());
221 assertEquals(mCallback.persistent.get(vh), new Pair<>(pre, post));
233 assertTrue(mCallback.persistent.isEmpty());
280 final Map<ViewHolder, Pair<ItemHolderInfo, ItemHolderInfo>> persistent = new HashMap<>(); field in class:ViewInfoStoreTest.LoggingProcessCallback
302 assertFalse(persistent.containsKey(viewHolder));
305 persistent.put(viewHolder, new Pair<>(preInfo, postInfo));
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessRecord.java73 // 'persistent' is true (in which case we
174 boolean persistent; // always keep this application running? field in class:ProcessRecord
327 if (persistent || removed) {
328 pw.print(prefix); pw.print("persistent="); pw.print(persistent);
447 persistent = false;
600 if (!persistent) {
H A DActivityManagerService.java520 // Necessary ApplicationInfo flags to mark an app as persistent
767 * List of persistent applications that are in the process
2441 app.persistent = true;
3237 if (app.persistent && lrui >= 0) {
3238 // We don't care about the position of persistent processes, as long as
3240 if (DEBUG_LRU) Slog.d(TAG_LRU, "Not moving, persistent: " + app);
3383 && !cr.binding.service.app.persistent) {
3390 if (cpr.proc != null && cpr.proc.lruSeq != mLruSeq && !cpr.proc.persistent) {
3768 if (app.persistent) {
5572 if (app.persistent) {
11855 setDebugApp(String packageName, boolean waitForDebugger, boolean persistent) argument
18676 updateConfigurationLocked(Configuration values, ActivityRecord starting, boolean initLocale, boolean persistent, int userId) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiConnectivityManager.java996 public void connectToUserSelectNetwork(int netId, boolean persistent) { argument
998 + " persist=" + persistent);
1000 mQualifiedNetworkSelector.userSelectNetwork(netId, persistent);
H A DWifiNative.java1214 [persistent] [join|auth] [go_intent=<0..15>] [freq=<in MHz>] */
1245 args.add("persistent");
1288 public boolean p2pGroupAdd(boolean persistent) { argument
1289 if (persistent) {
1290 return doBooleanCommand("P2P_GROUP_ADD persistent");
1296 return doBooleanCommand("P2P_GROUP_ADD persistent=" + netId);
1322 /* Reinvoke a persistent connection */
1326 return doBooleanCommand("P2P_INVITE persistent=" + netId + " peer=" + deviceAddress);
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java299 boolean persistent = (data.readInt() != 0);
306 trackAllocation, restrictedBackupMode, persistent, config, compatInfo, services,
1054 boolean persistent, Configuration config, CompatibilityInfo compatInfo,
1080 data.writeInt(persistent ? 1 : 0);
1049 bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, ProfilerInfo profilerInfo, Bundle testArgs, IInstrumentationWatcher testWatcher, IUiAutomationConnection uiAutomationConnection, int debugMode, boolean enableBinderTracking, boolean trackAllocation, boolean restrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
H A DIApplicationThread.java100 boolean restrictedBackupMode, boolean persistent, Configuration config,
96 bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, ProfilerInfo profilerInfo, Bundle testArguments, IInstrumentationWatcher testWatcher, IUiAutomationConnection uiAutomationConnection, int debugMode, boolean enableBinderTracking, boolean trackAllocation, boolean restrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
H A DActivityManagerNative.java4966 String packageName, boolean waitForDebugger, boolean persistent)
4974 data.writeInt(persistent ? 1 : 0);
4965 setDebugApp( String packageName, boolean waitForDebugger, boolean persistent) argument
H A DActivityThread.java516 boolean persistent; field in class:ActivityThread.AppBindData
852 boolean isRestrictedBackupMode, boolean persistent, Configuration config,
874 data.persistent = persistent;
5077 if (data.persistent) {
846 bindApplication(String processName, ApplicationInfo appInfo, List<ProviderInfo> providers, ComponentName instrumentationName, ProfilerInfo profilerInfo, Bundle instrumentationArgs, IInstrumentationWatcher instrumentationWatcher, IUiAutomationConnection instrumentationUiConnection, int debugMode, boolean enableBinderTracking, boolean trackAllocation, boolean isRestrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
H A DIActivityManager.java339 String packageName, boolean waitForDebugger, boolean persistent)
373 * This will deliver the specified signal to all the persistent processes. Currently only
338 setDebugApp( String packageName, boolean waitForDebugger, boolean persistent) argument
/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.java77 * @attr name android:persistent
868 * Checks whether this Preference is persistent. If it is, it stores its value(s) into
869 * the persistent {@link android.content.SharedPreferences} storage.
871 * @return True if it is persistent.
881 * Preference is persistent and it currently has a key. Before you
891 * Sets whether this Preference is persistent. When persistent,
892 * it stores its value(s) into the persistent {@link android.content.SharedPreferences}
895 * @param persistent Set true if it should store its value(s) into the
898 public void setPersistent(boolean persistent) { argument
[all...]
/frameworks/native/vulkan/include/vulkan/
H A Dvulkan.h3491 VkBool32 persistent; member in struct:VkDisplayPresentInfoKHR

Completed in 321 milliseconds