Home | History | Annotate | Download | only in bluetooth

Lines Matching refs:editor

116         SharedPreferences.Editor editor = getSharedPreferences(context).edit();
117 editor.putString(KEY_LAST_SELECTED_DEVICE,
119 editor.putLong(KEY_LAST_SELECTED_DEVICE_TIME,
121 editor.apply();
125 SharedPreferences.Editor editor = getSharedPreferences(context).edit();
126 editor.putLong(KEY_DISCOVERABLE_END_TIMESTAMP, endTimestamp);
127 editor.apply();
135 SharedPreferences.Editor editor = getSharedPreferences(context).edit();
136 editor.putLong(
139 editor.apply();
154 SharedPreferences.Editor editor = getSharedPreferences(context).edit();
155 editor.putBoolean(KEY_DOCK_AUTO_CONNECT + addr, autoConnect);
156 editor.apply();
160 SharedPreferences.Editor editor = getSharedPreferences(context).edit();
161 editor.remove(KEY_DOCK_AUTO_CONNECT + addr);
162 editor.apply();