Searched defs:persist (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/services/core/java/com/android/server/om/
H A DOverlayManagerSettings.java304 void persist(@NonNull final OutputStream os) throws IOException, XmlPullParserException { method in class:OverlayManagerSettings
305 Serializer.persist(mItems, os);
378 public static void persist(@NonNull final ArrayList<SettingsItem> table, method in class:OverlayManagerSettings.Serializer
/frameworks/base/core/java/android/nfc/
H A DNfcAdapter.java774 public boolean disable(boolean persist) { argument
776 return sService.disable(persist);
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduPersister.java185 // These map are used for convenience in persist() and load().
757 throw new MmsException("Failed to persist part, return null.");
819 // we're not going to re-persist and re-encrypt an already
1240 public Uri persist(GenericPdu pdu, Uri uri, boolean createThreadId, boolean groupMmsEnabled, method in class:PduPersister
1266 Log.v(TAG, "persist: " + uri + " blocked by isUpdating()");
1430 throw new MmsException("persist() failed: return null.");
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothAdapter.java981 * Turn off the local Bluetooth adapter and don't persist the setting.
990 public boolean disable(boolean persist) { argument
993 return mManagerService.disable(ActivityThread.currentPackageName(), persist);
1042 SystemProperties.set("persist.bluetooth.factoryreset", "true");
2205 * and don't persist state. Only for use by system applications.
/frameworks/base/services/core/java/com/android/server/
H A DBluetoothManagerService.java853 public boolean disable(String packageName, boolean persist) throws RemoteException { argument
879 if (persist) {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiServiceImpl.java515 // If we are already disabled (could be due to airplane mode), avoid changing persist
1802 * Tell the supplicant to persist the current list of configured networks.
1822 * @param persist {@code true} if the setting should be remembered.
1824 * The persist behavior exists so that wifi can fall back to the last
1829 public void setCountryCode(String countryCode, boolean persist) { argument
1831 " with persist set to " + persist);
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkPolicyManagerService.java2128 private void setUidPolicyUncheckedUL(int uid, int oldPolicy, int policy, boolean persist) { argument
2129 setUidPolicyUncheckedUL(uid, policy, persist);
2154 private void setUidPolicyUncheckedUL(int uid, int policy, boolean persist) { argument
2161 // uid policy changed, recompute rules and persist policy.
2163 if (persist) {
/frameworks/base/services/core/java/com/android/server/pm/
H A DUserManagerService.java3245 PersistableBundle accountOptions, boolean persist) {
3258 userData.persistSeedData = persist;
3260 if (persist) {
3756 return SystemProperties.getInt("persist.sys.max_profiles",
3244 setSeedAccountData(int userId, String accountName, String accountType, PersistableBundle accountOptions, boolean persist) argument
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiManager.java1649 * Tell the device to persist the current list of configured networks.
1658 * and {@link #removeNetwork(int)} already persist the configurations automatically.
1672 * @param persist {@code true} if this needs to be remembered
1676 public void setCountryCode(String country, boolean persist) { argument
1678 mService.setCountryCode(country, persist);
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java146 * volume and later persist to the database. Similarly, setting the ringer mode
148 * persist the ringer mode.
1431 // message to persist).
1876 // to persist).
2136 // If mute is for current user actually mute, else just persist the setting
2141 // Post a persist microphone msg.
2206 setRingerModeInt(ringerMode, true /*persist*/);
2210 setRingerModeInt(ringerMode, true /*persist*/);
2279 private void setRingerModeInt(int ringerMode, boolean persist) { argument
2288 // Post a persist ringe
[all...]

Completed in 802 milliseconds