Searched refs:logState (Results 1 – 3 of 3) sorted by relevance
149 private final LogState logState = new LogState(); field in DialerCall539 return logState.conferencedCalls != 0; in wasParentCall()617 logState.conferencedCalls = Math.max(numChildCalls, logState.conferencedCalls); in updateFromTelecomCall()870 logState.isIncoming = true; in setState()883 logState.dialerConnectTimeMillis = clock.currentTimeMillis(); in updateCallTiming()884 logState.dialerConnectTimeMillisElapsedRealtime = SystemClock.elapsedRealtime(); in updateCallTiming()895 logState.telecomDurationMillis, in updateCallTiming()899 logState.telecomDurationMillis = newDuration; in updateCallTiming()900 logState.dialerDurationMillis = in updateCallTiming()901 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()
906 logState(getName(), (int) durationMs); in exit()1796 logState(EVENT_RENEWING_BOUND, (int) (now - mLastBoundExitTime)); in logTimeToBoundState()1798 logState(EVENT_INITIAL_BOUND, (int) (now - mLastInitEnterTime)); in logTimeToBoundState()1997 private void logState(String name, int durationMs) { in logState() method in DhcpClient