Searched defs:persistent (Results 1 - 10 of 10) 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/src/test/java/androidx/recyclerview/widget/
H A DViewInfoStoreTest.java171 assertTrue(mCallback.persistent.isEmpty());
183 assertTrue(mCallback.persistent.isEmpty());
196 assertTrue(mCallback.persistent.isEmpty());
211 assertTrue(mCallback.persistent.isEmpty());
227 assertEquals(mCallback.persistent.get(vh), new Pair<>(pre, post));
239 assertTrue(mCallback.persistent.isEmpty());
286 final Map<ViewHolder, Pair<ItemHolderInfo, ItemHolderInfo>> persistent = new HashMap<>(); field in class:ViewInfoStoreTest.LoggingProcessCallback
308 assertFalse(persistent.containsKey(viewHolder));
311 persistent.put(viewHolder, new Pair<>(preInfo, postInfo));
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pNative.java504 * @param persistent Used to request a persistent group to be formed.
508 public boolean p2pGroupAdd(boolean persistent) { argument
509 return mSupplicantP2pIfaceHal.groupAdd(persistent);
517 * @param netId Used to specify the restart of a persistent group.
552 * Invite a device to a persistent group.
553 * If the peer device is the group owner of the persistent group, the peer
569 * Reinvoke a device from a persistent group.
571 * @param netId Used to specify the persistent group.
/frameworks/base/core/java/android/preference/
H A DPreference.java1038 * Checks whether this Preference is persistent. If it is, it stores its value(s) into
1039 * the persistent {@link SharedPreferences} storage by default or into
1042 * @return True if it is persistent.
1051 * assigned. This, at minimum, checks whether this Preference is persistent and it currently has
1061 * Sets whether this Preference is persistent. When persistent, it stores its value(s) into
1062 * the persistent {@link SharedPreferences} storage by default or into
1065 * @param persistent set {@code true} if it should store its value(s) into the storage.
1067 public void setPersistent(boolean persistent) { argument
1068 mPersistent = persistent;
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessRecord.java74 // 'persistent' is true (in which case we
197 boolean persistent; // always keep this application running? field in class:ProcessRecord
369 if (persistent || removed) {
370 pw.print(prefix); pw.print("persistent="); pw.print(persistent);
505 persistent = false;
679 if (!persistent) {
700 proto.write(ProcessRecordProto.PERSISTENT, persistent);
H A DActivityManagerService.java636 // Necessary ApplicationInfo flags to mark an app as persistent
922 * Non-persistent appId whitelist for background restrictions
984 * List of persistent applications that are in the process
2742 app.persistent = true;
3761 if (app.persistent) {
3762 Slog.w(TAG, "Removing persistent process that hasn't been killed: " + app);
3818 if (app.persistent && lrui >= 0) {
3819 // We don't care about the position of persistent processes, as long as
3821 if (DEBUG_LRU) Slog.d(TAG_LRU, "Not moving, persistent: " + app);
3965 && !cr.binding.service.app.persistent) {
13572 setDebugApp(String packageName, boolean waitForDebugger, boolean persistent) argument
22473 updateConfigurationLocked(Configuration values, ActivityRecord starting, boolean initLocale, boolean persistent, int userId, boolean deferResume) argument
22489 updateConfigurationLocked(Configuration values, ActivityRecord starting, boolean initLocale, boolean persistent, int userId, boolean deferResume, UpdateConfigurationResult result) argument
22527 updateGlobalConfigurationLocked(@onNull Configuration values, boolean initLocale, boolean persistent, int userId, boolean deferResume) argument
[all...]
/frameworks/support/preference/src/main/java/androidx/preference/
H A DPreference.java84 * @attr name android:persistent
967 * Checks whether this Preference is persistent. If it is, it stores its value(s) into
968 * the persistent {@link SharedPreferences} storage by default or into
971 * @return {@code true} if persistent
980 * assigned. This, at minimum, checks whether this Preference is persistent and it currently has
990 * Sets whether this Preference is persistent. When persistent, it stores its value(s) into
991 * the persistent {@link SharedPreferences} storage by default or into
994 * @param persistent set {@code true} if it should store its value(s) into the storage.
996 public void setPersistent(boolean persistent) { argument
[all...]
/frameworks/support/jetifier/jetifier/processor/src/test/resources/changeDetectionTest/
H A DtestPreference.class ... boolean isPersistent () protected boolean shouldPersist () public void setPersistent (boolean) boolean persistent public void setSingleLineTitle (boolean) boolean singleLineTitle public boolean isSingleLineTitle () public ...
/frameworks/base/core/java/android/app/
H A DActivityThread.java639 boolean persistent; field in class:ActivityThread.AppBindData
864 boolean isRestrictedBackupMode, boolean persistent, Configuration config,
908 data.persistent = persistent;
858 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 services, Bundle coreSettings, String buildSerial, boolean autofillCompatibilityEnabled) argument
/frameworks/native/vulkan/include/vulkan/
H A Dvulkan_core.h4940 VkBool32 persistent; member in struct:VkDisplayPresentInfoKHR

Completed in 5027 milliseconds