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

/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pConfig.java60 public Persist persist = Persist.SYSTEM_DEFAULT; field in class:WifiP2pConfig
113 sbuf.append("\n persist: ").append(persist.toString());
128 persist = source.persist;
137 dest.writeString(persist.name());
148 config.persist = Persist.valueOf(in.readString());
/frameworks/base/core/java/com/google/android/mms/pdu/
H A DPduPersister.java185 // These map are used for convenience in persist() and load().
749 throw new MmsException("Failed to persist part, return null.");
807 // we're not going to re-persist and re-encrypt an already
1210 public Uri persist(GenericPdu pdu, Uri uri) throws MmsException { method in class:PduPersister
1234 Log.v(TAG, "persist: " + uri + " blocked by isUpdating()");
1358 throw new MmsException("persist() failed: return null.");
/frameworks/base/services/java/com/android/server/
H A DWifiService.java447 // If we are already disabled (could be due to airplane mode), avoid changing persist
798 * Tell the supplicant to persist the current list of configured networks.
817 * @param persist {@code true} if the setting should be remembered.
819 * The persist behavior exists so that wifi can fall back to the last
823 public void setCountryCode(String countryCode, boolean persist) { argument
825 " with persist set to " + persist);
827 mWifiStateMachine.setCountryCode(countryCode, persist);
836 * @param persist {@code true} if the setting should be remembered.
839 public void setFrequencyBand(int band, boolean persist) { argument
[all...]
/frameworks/base/services/java/com/android/server/net/
H A DNetworkPolicyManagerService.java1313 private void setAppPolicyUnchecked(int appId, int policy, boolean persist) { argument
1319 // uid policy changed, recompute rules and persist policy.
1321 if (persist) {
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiManager.java766 * Tell the supplicant to persist the current list of configured networks.
785 * @param persist {@code true} if this needs to be remembered
789 public void setCountryCode(String country, boolean persist) { argument
791 mService.setCountryCode(country, persist);
801 * @param persist {@code true} if this needs to be remembered
804 public void setFrequencyBand(int band, boolean persist) { argument
806 mService.setFrequencyBand(band, persist);
H A DWifiStateMachine.java1037 * @param persist {@code true} if the setting should be remembered.
1039 public void setCountryCode(String countryCode, boolean persist) { argument
1040 if (persist) {
1051 * @param persist {@code true} if the setting should be remembered.
1053 public void setFrequencyBand(int band, boolean persist) { argument
1054 if (persist) {
/frameworks/base/media/java/android/media/
H A DAudioService.java92 * volume and later persist to the database. Similarly, setting the ringer mode
94 * persist the ringer mode.
762 // Post a persist volume msg
763 // no need to persist volume on all streams sharing the same alias
777 // to persist). Do not change volume if stream is muted.
998 // Post a persist volume msg
1010 // to persist).
1047 // Post a persist master volume msg
1088 // Post a persist master volume msg
1153 private void setRingerModeInt(int ringerMode, boolean persist) { argument
[all...]

Completed in 146 milliseconds