Home | History | Annotate | Download | only in policy

Lines Matching defs:mBootMsgDialog

7044         if (mBootMsgDialog != null) {
7046 mBootMsgDialog.dismiss();
7047 mBootMsgDialog = null;
7643 ProgressDialog mBootMsgDialog = null;
7650 if (mBootMsgDialog == null) {
7658 mBootMsgDialog = new ProgressDialog(mContext, theme) {
7682 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
7684 mBootMsgDialog.setTitle(R.string.android_start_title);
7686 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
7687 mBootMsgDialog.setIndeterminate(true);
7688 mBootMsgDialog.getWindow().setType(
7690 mBootMsgDialog.getWindow().addFlags(
7693 mBootMsgDialog.getWindow().setDimAmount(1);
7694 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
7696 mBootMsgDialog.getWindow().setAttributes(lp);
7697 mBootMsgDialog.setCancelable(false);
7698 mBootMsgDialog.show();
7700 mBootMsgDialog.setMessage(msg);