Home
last modified time | relevance | path

Searched refs:persist (Results 1 – 25 of 50) sorted by relevance

12

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiCountryCode.java135 public synchronized boolean setCountryCode(String countryCode, boolean persist) { in setCountryCode() argument
142 if (persist) { in setCountryCode()
DWifiServiceImpl.java1160 public void setCountryCode(String countryCode, boolean persist) { in setCountryCode() argument
1162 " with persist set to " + persist); in setCountryCode()
1166 if (mCountryCode.setCountryCode(countryCode, persist) && persist) { in setCountryCode()
1197 public void setFrequencyBand(int band, boolean persist) { in setFrequencyBand() argument
1201 " with persist set to " + persist); in setFrequencyBand()
1204 mWifiStateMachine.setFrequencyBand(band, persist); in setFrequencyBand()
DWifiQualifiedNetworkSelector.java548 public boolean userSelectNetwork(int netId, boolean persist) { in userSelectNetwork() argument
550 localLog("userSelectNetwork:" + netId + " persist:" + persist); in userSelectNetwork()
562 if (!persist) { in userSelectNetwork()
/frameworks/base/wifi/java/android/net/wifi/
DIWifiManager.aidl98 void setCountryCode(String country, boolean persist); in setCountryCode() argument
102 void setFrequencyBand(int band, boolean persist); in setFrequencyBand() argument
DWifiManager.java1389 public void setCountryCode(String country, boolean persist) {
1391 mService.setCountryCode(country, persist);
1421 public void setFrequencyBand(int band, boolean persist) {
1423 mService.setFrequencyBand(band, persist);
/frameworks/base/core/java/android/bluetooth/
DIBluetoothManager.aidl39 boolean disable(String packageName, boolean persist); in disable() argument
DBluetoothAdapter.java950 public boolean disable(boolean persist) { in disable() argument
953 return mManagerService.disable(ActivityThread.currentPackageName(), persist); in disable()
/frameworks/base/core/java/android/os/
DIUserManager.aidl77 in String accountType, in PersistableBundle accountOptions, boolean persist); in setSeedAccountData() argument
/frameworks/opt/telephony/
DREADME.txt49 "setprop" for the current boot, or added to local.prop to persist
/frameworks/base/docs/html/training/articles/
Dscoped-directory-access.jd139 <p>Where possible, persist the external directory access URI so you don't have
145 persist the URI and subsequent access requests will return
/frameworks/base/docs/html/training/basics/activity-lifecycle/
Dpausing.jd50 you to stop ongoing actions that should not continue while paused or persist
110 you should persist user changes to permanent storage within {@link android.app.Activity#onPause()}
/frameworks/base/core/java/android/nfc/
DNfcAdapter.java770 public boolean disable(boolean persist) { in disable() argument
772 return sService.disable(persist); in disable()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DWapPushOverSms.java453 final Uri uri = persister.persist( in writeInboxMessage()
497 final Uri uri = persister.persist( in writeInboxMessage()
/frameworks/native/cmds/atrace/
Datrace.rc65 on property:persist.debug.atrace.boottrace=1
/frameworks/base/docs/html/training/system-ui/
Dnavigation.jd88 persist as the user navigates in and out of your activity, set UI flags in
Dstatus.jd157 persist as the user navigates in and out of your activity, set UI flags in
/frameworks/base/docs/html-intl/intl/zh-cn/guide/topics/ui/
Dsettings.jd995 android.preference.Preference} 类的一个 {@code persist*()} 方法(如 {@link
1000 {@link android.preference.Preference} 所用数据类型的 {@code persist*()} 方法。</p>
1016 // When the user selects "OK", persist the new value
/frameworks/base/docs/html-intl/intl/ja/guide/topics/ui/
Dsettings.jd993 …stInt persistInt()} など、{@link android.preference.Preference} クラスの {@code persist*()} メソッドのいずれかを呼び出…
998 …そのため、カスタム {@link android.preference.Preference} で使用されているデータ型に対応する {@code persist*()} メソッドを使用する必要があ…
1016 // When the user selects "OK", persist the new value
/frameworks/base/docs/html-intl/intl/ko/guide/topics/ui/
Dsettings.jd994 android.preference.Preference} 클래스의 {@code persist*()} 메서드 중 하나를 호출하기만 하면 됩니다. 예를 들어 설정의 값이 정수인 경우 …
1000 {@link android.preference.Preference}에서 사용한 데이터 유형에 적절한 {@code persist*()} 메서드를 사용해야 합니다.</p>
1016 // When the user selects "OK", persist the new value
/frameworks/base/docs/html-intl/intl/zh-tw/guide/topics/ui/
Dsettings.jd994 android.preference.Preference} 類別的 {@code persist*()} 方法隨時儲存設定值,例如,如果設定值是整數,使用 {@link
998 …ence} 只能儲存一個資料類型,因此您必須使用適合您自訂 {@link android.preference.Preference} 使用之資料類型的 {@code persist*()} 方法。
1016 // When the user selects "OK", persist the new value
/frameworks/base/docs/html-intl/intl/ru/guide/topics/ui/
Dsettings.jd993 <p>Вы можете сохранить значение настройки в любой момент, вызвав один из методов {@code persist*()}…
999 тип данных, поэтому вы должны использовать метод {@code persist*()}, соответствующий типу данных, и…
1016 // When the user selects "OK", persist the new value
/frameworks/base/docs/html/topic/performance/
Dthreads.jd198 You may need to decide that a thread should, or should not, persist after an
205 Threads persist past the lifetime of the activities that spawn them. Threads
223 UI. In this case, you should persist the thread. For example, the packets may be
/frameworks/base/docs/html/guide/topics/ui/
Dsettings.jd231 <dd>This attribute is required for preferences that persist a data value. It specifies the unique
1003 android.preference.Preference} class's {@code persist*()} methods, such as {@link
1008 data type, so you must use the {@code persist*()} method appropriate for the data type used by your
1011 <p>When you choose to persist the setting can depend on which {@link
1013 android.preference.DialogPreference}, then you should persist the value only when the dialog
1025 // When the user selects "OK", persist the new value
/frameworks/base/services/core/java/com/android/server/net/
DNetworkPolicyManagerService.java1768 private void setUidPolicyUncheckedUL(int uid, int oldPolicy, int policy, boolean persist) { in setUidPolicyUncheckedUL() argument
1769 setUidPolicyUncheckedUL(uid, policy, persist); in setUidPolicyUncheckedUL()
1784 private void setUidPolicyUncheckedUL(int uid, int policy, boolean persist) { in setUidPolicyUncheckedUL() argument
1789 if (persist) { in setUidPolicyUncheckedUL()
/frameworks/base/docs/html/training/tv/tif/
Dui.jd28 such as messages ("DO NOT ATTEMPT AT HOME"), subtitles, or ads may need to persist. As with any TV

12