mPhone = phone;
mDcc = dcc;
if (Build.IS_DEBUGGABLE) {
IntentFilter filter = new IntentFilter();
filter.addAction(sActionDcTesterDeactivateAll);
log("register for intent action=" + sActionDcTesterDeactivateAll);
filter.addAction(mPhone.getActionDetached());
log("register for intent action=" + mPhone.getActionDetached());
phone.getContext().registerReceiver(sIntentReceiver, filter, null, handler);
}