Searched refs:logState (Results 1 – 3 of 3) sorted by relevance
149 private final LogState logState = new LogState(); field in DialerCall538 return logState.conferencedCalls != 0; in wasParentCall()616 logState.conferencedCalls = Math.max(numChildCalls, logState.conferencedCalls); in updateFromTelecomCall()869 logState.isIncoming = true; in setState()882 logState.dialerConnectTimeMillis = clock.currentTimeMillis(); in updateCallTiming()883 logState.dialerConnectTimeMillisElapsedRealtime = SystemClock.elapsedRealtime(); in updateCallTiming()894 logState.telecomDurationMillis, in updateCallTiming()898 logState.telecomDurationMillis = newDuration; in updateCallTiming()899 logState.dialerDurationMillis = in updateCallTiming()900 logState.dialerConnectTimeMillis == 0 in updateCallTiming()[all …]
215 DialerCall.LogState logState = call.getLogState(); in shouldShowAfterCallNotification() local216 if (!logState.isIncoming) { in shouldShowAfterCallNotification()220 if (logState.telecomDurationMillis <= 0) { in shouldShowAfterCallNotification()224 if (logState.contactLookupResult != ContactLookupResult.Type.NOT_FOUND in shouldShowAfterCallNotification()225 && logState.contactLookupResult != ContactLookupResult.Type.UNKNOWN_LOOKUP_RESULT_TYPE) { in shouldShowAfterCallNotification()
867 logState(getName(), (int) durationMs); in exit()1736 logState(EVENT_RENEWING_BOUND, (int) (now - mLastBoundExitTime)); in logTimeToBoundState()1738 logState(EVENT_INITIAL_BOUND, (int) (now - mLastInitEnterTime)); in logTimeToBoundState()1908 private void logState(String name, int durationMs) { in logState() method in DhcpClient