Search in sources :

Example 6 with Registrant

use of android.os.Registrant in project XobotOS by xamarin.

the class BaseCommands method registerForCdmaSubscriptionChanged.

@Override
public void registerForCdmaSubscriptionChanged(Handler h, int what, Object obj) {
    Registrant r = new Registrant(h, what, obj);
    mCdmaSubscriptionChangedRegistrants.add(r);
}
Also used : Registrant(android.os.Registrant)

Example 7 with Registrant

use of android.os.Registrant in project XobotOS by xamarin.

the class BaseCommands method registerForNumberInfo.

public void registerForNumberInfo(Handler h, int what, Object obj) {
    Registrant r = new Registrant(h, what, obj);
    mNumberInfoRegistrants.add(r);
}
Also used : Registrant(android.os.Registrant)

Example 8 with Registrant

use of android.os.Registrant in project XobotOS by xamarin.

the class BaseCommands method registerForSignalInfo.

public void registerForSignalInfo(Handler h, int what, Object obj) {
    Registrant r = new Registrant(h, what, obj);
    mSignalInfoRegistrants.add(r);
}
Also used : Registrant(android.os.Registrant)

Example 9 with Registrant

use of android.os.Registrant in project XobotOS by xamarin.

the class BaseCommands method registerForT53AudioControlInfo.

public void registerForT53AudioControlInfo(Handler h, int what, Object obj) {
    Registrant r = new Registrant(h, what, obj);
    mT53AudCntrlInfoRegistrants.add(r);
}
Also used : Registrant(android.os.Registrant)

Example 10 with Registrant

use of android.os.Registrant in project XobotOS by xamarin.

the class BaseCommands method registerForRadioTechnologyChanged.

public void registerForRadioTechnologyChanged(Handler h, int what, Object obj) {
    Registrant r = new Registrant(h, what, obj);
    mRadioTechnologyChangedRegistrants.add(r);
}
Also used : Registrant(android.os.Registrant)

Aggregations

Registrant (android.os.Registrant)45 AsyncResult (android.os.AsyncResult)5 Message (android.os.Message)2