Home
last modified time | relevance | path

Searched refs:logState (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Dialer/java/com/android/incallui/call/
DDialerCall.java149 private final LogState logState = new LogState(); field in DialerCall
539 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 …]
/packages/apps/Dialer/java/com/android/incallui/spam/
DSpamCallListListener.java215 DialerCall.LogState logState = call.getLogState(); in shouldShowAfterCallNotification() local
216 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()
/packages/modules/NetworkStack/src/android/net/dhcp/
DDhcpClient.java906 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