Searched refs:on (Results 1 - 25 of 175) sorted by path

1234567

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothAdapter.java11 * distributed under the License is distributed on an "AS IS" BASIS,
90 * <p>For example, Bluetooth has been turned on or off.
126 * Indicates the local Bluetooth adapter is turning on. However local
132 * Indicates the local Bluetooth adapter is on, and ready for use.
143 * This activity will also request the user to turn on Bluetooth if it
178 * Activity Action: Show a system activity that allows the user to turn on
181 * on, or the user has decided not to turn Bluetooth on.
186 * turned on or {@link android.app.Activity#RESULT_CANCELED} if the user
189 * for global notification whenever Bluetooth is turned on o
1244 changeApplicationBluetoothState(boolean on, BluetoothStateChangeCallback callback) argument
1261 onBluetoothStateChange(boolean on) argument
1276 onBluetoothStateChange(boolean on) argument
[all...]
H A DIBluetooth.aidl11 * distributed under the License is distributed on an "AS IS" BASIS,
57 boolean changeApplicationBluetoothState(boolean on,
H A DIBluetoothStateChangeCallback.aidl11 * distributed under the License is distributed on an "AS IS" BASIS,
26 void onBluetoothStateChange(boolean on);
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java11 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
115 * Total width of the keyboard, including left side gaps and keys, but not any gaps on the
258 /** If this is a sticky key, is it on? */
259 public boolean on; field in class:Keyboard.Key
412 on = !on;
474 * Returns the drawable state for the key, based on the current state and type of the key.
481 if (on) {
567 * @param characters the list of characters to display on the keyboard. One key will be created
699 shiftKey.on
[all...]
/frameworks/base/core/java/android/os/
H A DIHardwareService.aidl11 * distributed under the License is distributed on an "AS IS" BASIS,
24 void setFlashlightEnabled(boolean on);
H A DIPowerManager.aidl12 ** distributed under the License is distributed on an "AS IS" BASIS,
47 void setAttentionLight(boolean on, int color);
H A DPower.java11 * distributed under the License is distributed on an "AS IS" BASIS,
36 * not be on.
41 * Wake lock that ensures that the screen is on.
59 * Brightness value for fully on
75 * Turn the screen on or off
77 * @param on Whether you want the screen on or off
79 public static native int setScreenState(boolean on); argument
H A DTokenWatcher.java11 * distributed under the License is distributed on an "AS IS" BASIS,
35 * on. If you don't care, just call it like this, although your thread
58 * the current count is 0, the acquired method is called on the given
146 private void sendNotificationLocked(boolean on) argument
148 int value = on ? 1 : 0;
/frameworks/base/core/java/android/server/
H A DBluetoothAdapterStateMachine.java11 * distributed under the License is distributed on an "AS IS" BASIS,
57 * | | AIRPLANE_MODE_OFF(when Bluetooth was on before)
63 * m2 = Transition to HotOff when number of process wanting BT on is 0.
72 // We get this message when user tries to turn on BT
80 // Turn on Bluetooth Module, Load firmware, and do all the preparation
83 // switched on if needed
96 // Event indicates airplane mode is turned on
177 // starts turning on BT module, broadcast this out
185 // We will continue turn the BT on all the way to the BluetoothOn state
188 Log.e(TAG, "failed to prepare bluetooth, abort turning on");
698 perProcessCallback(boolean on, IBluetoothStateChangeCallback c) argument
706 allProcessesCallback(boolean on) argument
[all...]
H A DBluetoothService.java11 * distributed under the License is distributed on an "AS IS" BASIS,
361 * Bring down bluetooth and disable BT in settings. Returns true on success.
368 * Bring down bluetooth. Returns true on success.
472 /** Bring up BT and persist BT on in settings */
479 * This turns on/off the underlying hardware.
482 * @return True on success (so far)
488 // Airplane mode can prevent Bluetooth radio from being turned on.
497 * Turn on Bluetooth Module, Load firmware, and do all the preparation
601 * This method is called immediately before Bluetooth module is turned on after
617 * This method is called immediately after Bluetooth module is turned on
803 switchConnectable(boolean on) argument
1606 changeApplicationBluetoothState(boolean on, IBluetoothStateChangeCallback callback, IBinder binder) argument
[all...]
/frameworks/base/core/java/android/text/method/
H A DMetaKeyKeyListener.java11 * distributed under the License is distributed on an "AS IS" BASIS,
39 * {@link #getMetaState(long)} operate on a meta key state bit mask.</li>
41 * {@link #getMetaState(CharSequence, int)} operate on meta key state flags stored
75 * Flag that indicates that the SHIFT key is on.
80 * Flag that indicates that the ALT key is on.
85 * Flag that indicates that the SYM key is on.
191 int on, int lock) {
202 return on;
387 // Version of API that operates on a state bit mask
190 getActive(CharSequence text, Object meta, int on, int lock) argument
/frameworks/base/core/java/android/view/
H A DIWindowManager.aidl11 ** distributed under the License is distributed on an "AS IS" BASIS,
47 * and tools rely on their transaction number to work properly.
71 // Avoid calling these methods on your UI thread or use the 'NoWait' version instead.
152 // For StrictMode flashing a red border on violations from the UI
156 // on screen)
157 void showStrictModeViolation(boolean on);
167 * Update the current screen rotation based on the current state of
/frameworks/base/core/java/com/android/internal/widget/
H A DPasswordEntryKeyboard.java11 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
114 * @param previewId preview drawable shown on enter key
115 * @param iconId normal drawable shown on enter key
116 * @param labelId string shown on enter key
139 * Allows shiftlock to be turned on. See {@link #setShiftLocked(boolean)}
157 * Turn on shift lock. This turns on the LED for this key, if it has one.
166 shiftKey.on = shiftLocked;
174 * Turn on shift mode. Sets shift mode and turns on ico
[all...]
/frameworks/base/core/java/com/android/server/
H A DResettableTimeout.java11 * distributed under the License is distributed on an "AS IS" BASIS,
24 * Utility class that you can call on with a timeout, and get called back
33 * This is called with the monitor on this method held, so be careful.
37 public abstract void on(boolean alreadyOn); method in class:ResettableTimeout
41 * This is called with the monitor on this method held, so be careful.
47 * <p>1. Call on()</p>
60 // thread to stop it can't start, we don't turn the vibrator on
76 on(alreadyOn);
/frameworks/base/core/jni/
H A Dandroid_media_AudioSystem.cpp12 ** distributed under the License is distributed on an "AS IS" BASIS,
58 android_media_AudioSystem_muteMicrophone(JNIEnv *env, jobject thiz, jboolean on) argument
60 return check_AudioSystem_Command(AudioSystem::muteMicrophone(on));
H A Dandroid_os_Power.cpp12 ** distributed under the License is distributed on an "AS IS" BASIS,
66 setScreenState(JNIEnv *env, jobject clazz, jboolean on) argument
68 return set_screen_state(on);
/frameworks/base/core/tests/ConnectivityManagerTest/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/base/core/tests/bandwidthtests/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/base/core/tests/hosttests/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/base/core/tests/hosttests/test-apps/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/base/core/tests/hosttests/test-apps/AutoLocTestApp/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/base/core/tests/hosttests/test-apps/AutoLocVersionedTestApp_v1/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/base/core/tests/hosttests/test-apps/AutoLocVersionedTestApp_v2/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/base/core/tests/hosttests/test-apps/ExternalLocAllPermsTestApp/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,

Completed in 474 milliseconds

1234567