Lines Matching defs:PhoneStateListener

42  * pass your PhoneStateListener object, along with bitwise-or of the LISTEN_
51 public class PhoneStateListener {
52 private static final String LOG_TAG = "PhoneStateListener";
238 * Create a PhoneStateListener for the Phone with the default subscription.
241 public PhoneStateListener() {
246 * Create a PhoneStateListener for the Phone with the default subscription
250 public PhoneStateListener(Looper looper) {
255 * Create a PhoneStateListener for the Phone using the specified subscription.
257 * own non-null Looper use PhoneStateListener(int subId, Looper looper) below.
260 public PhoneStateListener(int subId) {
265 * Create a PhoneStateListener for the Phone using the specified subscription
269 public PhoneStateListener(int subId, Looper looper) {
280 PhoneStateListener.this.onServiceStateChanged((ServiceState)msg.obj);
283 PhoneStateListener.this.onSignalStrengthChanged(msg.arg1);
286 PhoneStateListener.this.onMessageWaitingIndicatorChanged(msg.arg1 != 0);
289 PhoneStateListener.this.onCallForwardingIndicatorChanged(msg.arg1 != 0);
292 PhoneStateListener.this.onCellLocationChanged((CellLocation)msg.obj);
295 PhoneStateListener.this.onCallStateChanged(msg.arg1, (String)msg.obj);
298 PhoneStateListener.this.onDataConnectionStateChanged(msg.arg1, msg.arg2);
299 PhoneStateListener.this.onDataConnectionStateChanged(msg.arg1);
302 PhoneStateListener.this.onDataActivity(msg.arg1);
305 PhoneStateListener.this.onSignalStrengthsChanged((SignalStrength)msg.obj);
308 PhoneStateListener.this.onOtaspChanged(msg.arg1);
311 PhoneStateListener.this.onCellInfoChanged((List<CellInfo>)msg.obj);
314 PhoneStateListener.this.onPreciseCallStateChanged((PreciseCallState)msg.obj);
317 PhoneStateListener.this.onPreciseDataConnectionStateChanged(
321 PhoneStateListener.this.onDataConnectionRealTimeInfoChanged(
325 PhoneStateListener.this.onVoLteServiceStateChanged((VoLteServiceState)msg.obj);
328 PhoneStateListener.this.onOemHookRawEvent((byte[])msg.obj);
331 PhoneStateListener.this.onCarrierNetworkChange((boolean)msg.obj);