Searched defs:confirm (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DJsPromptResult.java27 * confirm() with the user's input to confirm the dialog.
36 public void confirm(String result) { method in class:JsPromptResult
38 confirm();
H A DJsResult.java38 // This is a basic result of a confirm or prompt dialog.
52 public final void confirm() { method in class:JsResult
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatResponseMessage.java56 public void setConfirmation(boolean confirm) { argument
57 mUsersConfirm = confirm;
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattServer.java520 * @param confirm true to request confirmation from the client (indication),
526 BluetoothGattCharacteristic characteristic, boolean confirm) {
542 new ParcelUuid(characteristic.getUuid()), confirm,
525 notifyCharacteristicChanged(BluetoothDevice device, BluetoothGattCharacteristic characteristic, boolean confirm) argument
H A DBluetoothDevice.java503 * The user will be prompted to confirm the passkey displayed on the screen or
504 * an app will confirm the passkey for the user.
814 * to confirm and complete the bonding process.
839 * to confirm and complete the bonding process.
871 * to confirm and complete the bonding process.
1162 public boolean setPairingConfirmation(boolean confirm) { argument
1168 return sService.setPairingConfirmation(this, confirm);
/frameworks/base/services/core/java/com/android/server/policy/
H A DImmersiveModeConfirmation.java232 public ClingWindowView(Context context, Runnable confirm) { argument
234 mConfirm = confirm;
/frameworks/base/services/core/java/com/android/server/power/
H A DShutdownThread.java127 * @param confirm true if user confirmation is needed before shutting down.
129 public static void shutdown(final Context context, boolean confirm) { argument
132 shutdownInner(context, confirm);
135 static void shutdownInner(final Context context, boolean confirm) { argument
155 if (confirm) {
209 * @param confirm true if user confirmation is needed before shutting down.
211 public static void reboot(final Context context, String reason, boolean confirm) { argument
216 shutdownInner(context, confirm);
224 * @param confirm true if user confirmation is needed before shutting down.
226 public static void rebootSafeMode(final Context context, boolean confirm) { argument
[all...]
H A DPowerManagerService.java2261 private void shutdownOrRebootInternal(final boolean shutdown, final boolean confirm, argument
2272 ShutdownThread.shutdown(mContext, confirm);
2274 ShutdownThread.reboot(mContext, reason, confirm);
3254 * @param confirm If true, shows a reboot confirmation dialog.
3259 public void reboot(boolean confirm, String reason, boolean wait) { argument
3267 shutdownOrRebootInternal(false, confirm, reason, wait);
3276 * @param confirm If true, shows a shutdown confirmation dialog.
3280 public void shutdown(boolean confirm, boolean wait) { argument
3285 shutdownOrRebootInternal(true, confirm, null, wait);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgePowerManager.java84 public void reboot(boolean confirm, String reason, boolean wait) { argument
89 public void shutdown(boolean confirm, boolean wait) { argument
/frameworks/base/core/java/android/os/
H A DPowerManager.java928 * @param confirm If true, shows a shutdown confirmation dialog.
933 public void shutdown(boolean confirm, boolean wait) { argument
935 mService.shutdown(confirm, wait);
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java443 public void shutdown(boolean confirm); argument
444 public void rebootSafeMode(boolean confirm); argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java5665 public void shutdown(boolean confirm) { argument
5666 ShutdownThread.shutdown(mContext, confirm);
5671 public void rebootSafeMode(boolean confirm) { argument
5672 ShutdownThread.rebootSafeMode(mContext, confirm);

Completed in 279 milliseconds