Searched defs:confirm (Results 1 - 11 of 11) 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.java491 * The user will be prompted to confirm the passkey displayed on the screen or
492 * an app will confirm the passkey for the user.
782 * to confirm and complete the bonding process.
806 * to confirm and complete the bonding process.
838 * to confirm and complete the bonding process.
1114 public boolean setPairingConfirmation(boolean confirm) { argument
1120 return sService.setPairingConfirmation(this, confirm);
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DImmersiveModeConfirmation.java224 public ClingWindowView(Context context, Runnable confirm) { argument
226 mConfirm = confirm;
/frameworks/base/services/core/java/com/android/server/power/
H A DShutdownThread.java106 * @param confirm true if user confirmation is needed before shutting down.
108 public static void shutdown(final Context context, boolean confirm) { argument
111 shutdownInner(context, confirm);
114 static void shutdownInner(final Context context, boolean confirm) { argument
134 if (confirm) {
188 * @param confirm true if user confirmation is needed before shutting down.
190 public static void reboot(final Context context, String reason, boolean confirm) { argument
194 shutdownInner(context, confirm);
202 * @param confirm true if user confirmation is needed before shutting down.
204 public static void rebootSafeMode(final Context context, boolean confirm) { argument
[all...]
H A DPowerManagerService.java2172 private void shutdownOrRebootInternal(final boolean shutdown, final boolean confirm, argument
2183 ShutdownThread.shutdown(mContext, confirm);
2185 ShutdownThread.reboot(mContext, reason, confirm);
3040 * @param confirm If true, shows a reboot confirmation dialog.
3045 public void reboot(boolean confirm, String reason, boolean wait) { argument
3053 shutdownOrRebootInternal(false, confirm, reason, wait);
3062 * @param confirm If true, shows a shutdown confirmation dialog.
3066 public void shutdown(boolean confirm, boolean wait) { argument
3071 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/view/
H A DWindowManagerPolicy.java416 public void shutdown(boolean confirm); argument
417 public void rebootSafeMode(boolean confirm); argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java5604 public void shutdown(boolean confirm) { argument
5605 ShutdownThread.shutdown(mContext, confirm);
5610 public void rebootSafeMode(boolean confirm) { argument
5611 ShutdownThread.rebootSafeMode(mContext, confirm);

Completed in 8244 milliseconds