Searched defs:persist (Results 1 - 8 of 8) sorted by last modified time

/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduPersister.java186 // These map are used for convenience in persist() and load().
755 throw new MmsException("Failed to persist part, return null.");
814 // we're not going to re-persist and re-encrypt an already
1234 public Uri persist(GenericPdu pdu, Uri uri, boolean createThreadId, boolean groupMmsEnabled, method in class:PduPersister
1260 Log.v(TAG, "persist: " + uri + " blocked by isUpdating()");
1410 throw new MmsException("persist() failed: return null.");
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiManager.java783 * Tell the supplicant to persist the current list of configured networks.
802 * @param persist {@code true} if this needs to be remembered
806 public void setCountryCode(String country, boolean persist) { argument
808 mService.setCountryCode(country, persist);
818 * @param persist {@code true} if this needs to be remembered
821 public void setFrequencyBand(int band, boolean persist) { argument
823 mService.setFrequencyBand(band, persist);
H A DWifiStateMachine.java1070 * @param persist {@code true} if the setting should be remembered.
1072 public void setCountryCode(String countryCode, boolean persist) { argument
1073 if (persist) {
1084 * @param persist {@code true} if the setting should be remembered.
1086 public void setFrequencyBand(int band, boolean persist) { argument
1087 if (persist) {
/frameworks/base/services/java/com/android/server/
H A DBluetoothManagerService.java341 msg.arg1=0; //No persist
356 public boolean disable(boolean persist) { argument
371 msg.arg1=(persist?1:0);
865 private void handleEnable(boolean persist, boolean quietMode) { argument
866 if (persist) {
921 private void handleDisable(boolean persist) { argument
922 if (persist) {
971 msg.arg1=1; //persist
H A DWifiService.java495 // If we are already disabled (could be due to airplane mode), avoid changing persist
858 * Tell the supplicant to persist the current list of configured networks.
877 * @param persist {@code true} if the setting should be remembered.
879 * The persist behavior exists so that wifi can fall back to the last
883 public void setCountryCode(String countryCode, boolean persist) { argument
885 " with persist set to " + persist);
887 mWifiStateMachine.setCountryCode(countryCode, persist);
896 * @param persist {@code true} if the setting should be remembered.
899 public void setFrequencyBand(int band, boolean persist) { argument
[all...]
/frameworks/base/services/java/com/android/server/net/
H A DNetworkPolicyManagerService.java1357 private void setUidPolicyUnchecked(int uid, int policy, boolean persist) { argument
1363 // uid policy changed, recompute rules and persist policy.
1365 if (persist) {
/frameworks/base/media/java/android/media/
H A DAudioService.java94 * volume and later persist to the database. Similarly, setting the ringer mode
96 * persist the ringer mode.
862 // Post a persist volume msg
863 // no need to persist volume on all streams sharing the same alias
877 // to persist). Do not change volume if stream is muted.
1129 // Post a persist volume msg
1141 // to persist).
1178 // Post a persist master volume msg
1227 // Post a persist master volume msg
1292 private void setRingerModeInt(int ringerMode, boolean persist) { argument
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothAdapter.java550 * Turn off the local Bluetooth adapter and don't persist the setting.
559 public boolean disable(boolean persist) { argument
562 return mManagerService.disable(persist);
1249 * and don't persist state. Only for use by system applications.

Completed in 345 milliseconds