Lines Matching refs:mCLIRButton
28 private CLIRListPreference mCLIRButton; field in GsmUmtsAdditionalCallOptions
53 mCLIRButton = (CLIRListPreference) prefSet.findPreference(BUTTON_CLIR_KEY); in onCreate()
81 if (mCLIRButton != null) { in onCreate()
84 mCLIRButton.setEnabled(false); in onCreate()
86 mPreferences.add(mCLIRButton); in onCreate()
89 prefSet.removePreference(mCLIRButton); in onCreate()
115 if (mShowCLIRButton && mCLIRButton != null && mCLIRButton.isEnabled()) { in onCreate()
116 mCLIRButton.init(this, true, mPhone); in onCreate()
117 int[] clirArray = icicle.getIntArray(mCLIRButton.getKey()); in onCreate()
123 mCLIRButton.handleGetCLIRResult(clirArray); in onCreate()
125 mCLIRButton.init(this, false, mPhone); in onCreate()
145 if (mShowCLIRButton && mCLIROverUtPrecautions && mCLIRButton != null) { in onResume()
148 if (mCLIRButton.isEnabled()) { in onResume()
149 if (mPreferences.contains(mCLIRButton)) { in onResume()
150 mPreferences.remove(mCLIRButton); in onResume()
152 mCLIRButton.setEnabled(false); in onResume()
155 if (!mPreferences.contains(mCLIRButton)) { in onResume()
156 mCLIRButton.setEnabled(true); in onResume()
157 mPreferences.add(mCLIRButton); in onResume()
188 if (mShowCLIRButton && mCLIRButton.clirArray != null) { in onSaveInstanceState()
189 outState.putIntArray(mCLIRButton.getKey(), mCLIRButton.clirArray); in onSaveInstanceState()