Searched refs:confirm (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DJsPromptResult.java25 * confirm() with the user's input to confirm the dialog.
34 public void confirm(String result) { method in class:JsPromptResult
36 confirm();
H A DJsResult.java35 // This is a basic result of a confirm or prompt dialog.
49 public final void confirm() { method in class:JsResult
H A DCallbackProxy.java150 // Tells us if the user tried to confirm or cancel the result before WebCore
590 res.confirm();
627 res.confirm();
682 res.confirm(v.getText()
731 res.confirm();
761 res.confirm();
1348 Message confirm = obtainMessage(JS_CONFIRM, result);
1349 confirm.getData().putString("message", message);
1350 confirm.getData().putString("url", url);
1351 sendMessageToUiThreadSync(confirm);
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatResponseMessage.java47 public void setConfirmation(boolean confirm) { argument
48 usersConfirm = confirm;
/frameworks/base/core/java/android/os/
H A DIPowerManager.aidl40 void reboot(boolean confirm, String reason, boolean wait);
41 void shutdown(boolean confirm, boolean wait);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgePowerManager.java63 public void reboot(boolean confirm, String reason, boolean wait) { argument
68 public void shutdown(boolean confirm, boolean wait) { argument
/frameworks/base/services/java/com/android/server/power/
H A DShutdownThread.java99 * @param confirm true if user confirmation is needed before shutting down.
101 public static void shutdown(final Context context, boolean confirm) { argument
104 shutdownInner(context, confirm);
107 static void shutdownInner(final Context context, boolean confirm) { argument
127 if (confirm) {
181 * @param confirm true if user confirmation is needed before shutting down.
183 public static void reboot(final Context context, String reason, boolean confirm) { argument
187 shutdownInner(context, confirm);
195 * @param confirm true if user confirmation is needed before shutting down.
197 public static void rebootSafeMode(final Context context, boolean confirm) { argument
[all...]
H A DPowerManagerService.java1783 * @param confirm If true, shows a reboot confirmation dialog.
1788 public void reboot(boolean confirm, String reason, boolean wait) { argument
1793 shutdownOrRebootInternal(false, confirm, reason, wait);
1802 * @param confirm If true, shows a shutdown confirmation dialog.
1806 public void shutdown(boolean confirm, boolean wait) { argument
1811 shutdownOrRebootInternal(true, confirm, null, wait);
1817 private void shutdownOrRebootInternal(final boolean shutdown, final boolean confirm, argument
1828 ShutdownThread.shutdown(mContext, confirm);
1830 ShutdownThread.reboot(mContext, reason, confirm);
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DReliabilityTestActivity.java242 result.confirm();
248 result.confirm();
254 result.confirm();
261 result.confirm();
H A DTestShellActivity.java676 result.confirm();
689 result.confirm();
704 result.confirm();
/frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
H A DConfirmDialog.java63 View view = View.inflate(this, R.layout.confirm, null);
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java400 public void shutdown(boolean confirm); argument
401 public void rebootSafeMode(boolean confirm); argument
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothDevice.java437 * The user will be prompted to confirm the passkey displayed on the screen
665 * to confirm and complete the bonding process.
691 * to confirm and complete the bonding process.
928 public boolean setPairingConfirmation(boolean confirm) { argument
934 return sService.setPairingConfirmation(this, confirm);
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DLayoutTestsExecutor.java206 result.confirm();
213 result.confirm();
221 result.confirm();
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java5416 public void shutdown(boolean confirm) { argument
5417 ShutdownThread.shutdown(mContext, confirm);
5422 public void rebootSafeMode(boolean confirm) { argument
5423 ShutdownThread.rebootSafeMode(mContext, confirm);

Completed in 5492 milliseconds