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
179 boolean persistent; // always keep this application running? field in class:ProcessRecord
333 if (persistent || removed) {
334 pw.print(prefix); pw.print("persistent="); pw.print(persistent);
456 persistent = false;
609 if (!persistent) {
H A DActivityManagerService.java521 // Necessary ApplicationInfo flags to mark an app as persistent
783 * List of persistent applications that are in the process
2476 app.persistent = true;
3291 if (app.persistent && lrui >= 0) {
3292 // We don't care about the position of persistent processes, as long as
3294 if (DEBUG_LRU) Slog.d(TAG_LRU, "Not moving, persistent: " + app);
3437 && !cr.binding.service.app.persistent) {
3444 if (cpr.proc != null && cpr.proc.lruSeq != mLruSeq && !cpr.proc.persistent) {
3819 if (app.persistent) {
5636 if (app.persistent) {
11933 setDebugApp(String packageName, boolean waitForDebugger, boolean persistent) argument
18941 updateConfigurationLocked(Configuration values, ActivityRecord starting, boolean initLocale, boolean persistent, int userId, boolean deferResume) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiConnectivityManager.java1079 public void connectToUserSelectNetwork(int netId, boolean persistent) { argument
1081 + " persist=" + persistent);
1083 mQualifiedNetworkSelector.userSelectNetwork(netId, persistent);
H A DWifiNative.java1216 [persistent] [join|auth] [go_intent=<0..15>] [freq=<in MHz>] */
1247 args.add("persistent");
1290 public boolean p2pGroupAdd(boolean persistent) { argument
1291 if (persistent) {
1292 return doBooleanCommand("P2P_GROUP_ADD persistent");
1298 return doBooleanCommand("P2P_GROUP_ADD persistent=" + netId);
1324 /* Reinvoke a persistent connection */
1328 return doBooleanCommand("P2P_INVITE persistent=" + netId + " peer=" + deviceAddress);
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java300 boolean persistent = (data.readInt() != 0);
307 trackAllocation, restrictedBackupMode, persistent, config, compatInfo, services,
1056 boolean persistent, Configuration config, CompatibilityInfo compatInfo,
1082 data.writeInt(persistent ? 1 : 0);
1051 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.java101 boolean restrictedBackupMode, boolean persistent, Configuration config,
97 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.java4996 String packageName, boolean waitForDebugger, boolean persistent)
5004 data.writeInt(persistent ? 1 : 0);
4995 setDebugApp( String packageName, boolean waitForDebugger, boolean persistent) argument
H A DActivityThread.java520 boolean persistent; field in class:ActivityThread.AppBindData
858 boolean isRestrictedBackupMode, boolean persistent, Configuration config,
880 data.persistent = persistent;
5119 if (data.persistent) {
852 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
668 * <p>This flag can only be set for persistent processes.
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.java80 * @attr name android:persistent
871 * Checks whether this Preference is persistent. If it is, it stores its value(s) into
872 * the persistent {@link android.content.SharedPreferences} storage.
874 * @return True if it is persistent.
884 * Preference is persistent and it currently has a key. Before you
894 * Sets whether this Preference is persistent. When persistent,
895 * it stores its value(s) into the persistent {@link android.content.SharedPreferences}
898 * @param persistent Set true if it should store its value(s) into the
901 public void setPersistent(boolean persistent) { argument
[all...]
/frameworks/native/vulkan/include/vulkan/
H A Dvulkan.h3491 VkBool32 persistent; member in struct:VkDisplayPresentInfoKHR

Completed in 2085 milliseconds