Lines Matching defs:state

271     // we keep a copy of all of the state so we can send it out when folks
499 if (VDBG) log("listen: call onSSC state=" + mServiceState[phoneId]);
635 public void notifyCallState(int state, String incomingNumber) {
641 log("notifyCallState: state=" + state + " incomingNumber=" + incomingNumber);
649 r.callback.onCallStateChanged(state, incomingNumber);
657 broadcastCallStateChanged(state, incomingNumber,
661 public void notifyCallStateForSubscriber(int subId, int state, String incomingNumber) {
667 + " state=" + state + " incomingNumber=" + incomingNumber);
672 mCallState[phoneId] = state;
679 r.callback.onCallStateChanged(state, incomingNumber);
688 broadcastCallStateChanged(state, incomingNumber, subId);
691 public void notifyServiceStateForPhoneId(int phoneId, int subId, ServiceState state) {
699 + " state=" + state);
702 mServiceState[phoneId] = state;
703 logServiceStateChanged("notifyServiceStateForSubscriber", subId, phoneId, state);
709 + " phoneId=" + phoneId + " state=" + state);
717 + " state=" + state);
719 r.callback.onServiceStateChanged(new ServiceState(state));
730 broadcastServiceStateChanged(state, subId);
915 public void notifyDataActivity(int state) {
916 notifyDataActivityForSubscriber(SubscriptionManager.DEFAULT_SUBSCRIPTION_ID, state);
919 public void notifyDataActivityForSubscriber(int subId, int state) {
926 mDataActivity[phoneId] = state;
930 r.callback.onDataActivity(state);
941 public void notifyDataConnection(int state, boolean isDataConnectivityPossible,
944 notifyDataConnectionForSubscriber(SubscriptionManager.DEFAULT_SUBSCRIPTION_ID, state,
949 public void notifyDataConnectionForSubscriber(int subId, int state,
958 + " state=" + state + " isDataConnectivityPossible=" + isDataConnectivityPossible
967 if (state == TelephonyManager.DATA_CONNECTED) {
970 if (mDataConnectionState[phoneId] != state) {
971 mDataConnectionState[phoneId] = state;
978 mDataConnectionState[phoneId] = state;
1005 log("Notify data connection state changed on sub: " +
1016 mPreciseDataConnectionState = new PreciseDataConnectionState(state, networkType,
1031 broadcastDataConnectionStateChanged(state, isDataConnectivityPossible, reason, apn,
1033 broadcastPreciseDataConnectionStateChanged(state, networkType, apnType, apn, reason,
1259 pw.println("last known state:");
1291 private void broadcastServiceStateChanged(ServiceState state, int subId) {
1294 mBatteryStats.notePhoneState(state.getState());
1303 state.fillInNotifierBundle(data);
1329 private void broadcastCallStateChanged(int state, String incomingNumber, int subId) {
1332 if (state == TelephonyManager.CALL_STATE_IDLE) {
1345 DefaultPhoneNotifier.convertCallState(state).toString());
1354 private void broadcastDataConnectionStateChanged(int state,
1363 DefaultPhoneNotifier.convertDataState(state).toString());
1409 private void broadcastPreciseDataConnectionStateChanged(int state, int networkType,
1413 intent.putExtra(PhoneConstants.STATE_KEY, state);
1514 public void set(Time t, String s, int subId, int phoneId, ServiceState state) {
1515 mTime = t; mS = s; mSubId = subId; mPhoneId = phoneId; mState = state;
1528 private void logServiceStateChanged(String s, int subId, int phoneId, ServiceState state) {
1537 logSSC[next].set(t, s, subId, phoneId, state);
1582 if (VDBG) log("checkPossibleMissNotify: onServiceStateChanged state=" +