use of android.os.Registrant in project XobotOS by xamarin.
the class BaseCommands method registerForCallWaitingInfo.
public void registerForCallWaitingInfo(Handler h, int what, Object obj) {
Registrant r = new Registrant(h, what, obj);
mCallWaitingInfoRegistrants.add(r);
}
use of android.os.Registrant in project XobotOS by xamarin.
the class BaseCommands method registerForIccRefresh.
public void registerForIccRefresh(Handler h, int what, Object obj) {
Registrant r = new Registrant(h, what, obj);
mIccRefreshRegistrants.add(r);
}
use of android.os.Registrant in project XobotOS by xamarin.
the class BaseCommands method registerForDisplayInfo.
public void registerForDisplayInfo(Handler h, int what, Object obj) {
Registrant r = new Registrant(h, what, obj);
mDisplayInfoRegistrants.add(r);
}
use of android.os.Registrant in project XobotOS by xamarin.
the class BaseCommands method registerForDataNetworkStateChanged.
public void registerForDataNetworkStateChanged(Handler h, int what, Object obj) {
Registrant r = new Registrant(h, what, obj);
mDataNetworkStateRegistrants.add(r);
}
use of android.os.Registrant in project XobotOS by xamarin.
the class BaseCommands method registerFoT53ClirlInfo.
public void registerFoT53ClirlInfo(Handler h, int what, Object obj) {
Registrant r = new Registrant(h, what, obj);
mT53ClirInfoRegistrants.add(r);
}
Aggregations