Search in sources :

Example 81 with Registrant

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);
}
Also used : Registrant(android.os.Registrant)

Example 82 with Registrant

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);
}
Also used : Registrant(android.os.Registrant)

Example 83 with Registrant

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);
}
Also used : Registrant(android.os.Registrant)

Example 84 with Registrant

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);
}
Also used : Registrant(android.os.Registrant)

Example 85 with Registrant

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);
}
Also used : Registrant(android.os.Registrant)

Aggregations

Registrant (android.os.Registrant)139 AsyncResult (android.os.AsyncResult)19 Message (android.os.Message)5 RegistrantList (android.os.RegistrantList)4 NetworkRegistrationInfo (android.telephony.NetworkRegistrationInfo)2 IllegalArgumentException (java.lang.IllegalArgumentException)2 UnsupportedAppUsage (android.compat.annotation.UnsupportedAppUsage)1 PhysicalChannelConfig (android.telephony.PhysicalChannelConfig)1 SubscriptionInfo (android.telephony.SubscriptionInfo)1 AtomicInteger (java.util.concurrent.atomic.AtomicInteger)1