Home
last modified time | relevance | path

Searched refs:callSession (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/tests/coretests/src/com/android/internal/os/
DBinderLatencyObserverTest.java64 CallSession callSession = new CallSession(); in testLatencyCollectionWithMultipleClasses() local
65 callSession.binderClass = binder.getClass(); in testLatencyCollectionWithMultipleClasses()
66 callSession.transactionCode = 1; in testLatencyCollectionWithMultipleClasses()
69 blo.callEnded(callSession); in testLatencyCollectionWithMultipleClasses()
71 blo.callEnded(callSession); in testLatencyCollectionWithMultipleClasses()
73 blo.callEnded(callSession); in testLatencyCollectionWithMultipleClasses()
74 callSession.transactionCode = 2; in testLatencyCollectionWithMultipleClasses()
76 blo.callEnded(callSession); in testLatencyCollectionWithMultipleClasses()
78 blo.callEnded(callSession); in testLatencyCollectionWithMultipleClasses()
95 CallSession callSession = new CallSession(); in testSampling() local
[all …]
DBinderCallsStatsTest.java86 CallSession callSession = bcs.callStarted(binder, 1, WORKSOURCE_UID); in testDetailedOff() local
88 bcs.callEnded(callSession, REQUEST_SIZE, REPLY_SIZE, WORKSOURCE_UID); in testDetailedOff()
102 callSession = bcs.callStarted(binder, 1, WORKSOURCE_UID); in testDetailedOff()
104 bcs.callEnded(callSession, REQUEST_SIZE, REPLY_SIZE, WORKSOURCE_UID); in testDetailedOff()
110 callSession = bcs.callStarted(binder, 2, WORKSOURCE_UID); in testDetailedOff()
112 bcs.callEnded(callSession, REQUEST_SIZE, REPLY_SIZE, WORKSOURCE_UID); in testDetailedOff()
127 CallSession callSession = bcs.callStarted(binder, 1, WORKSOURCE_UID); in testDetailedOn() local
129 bcs.callEnded(callSession, REQUEST_SIZE, REPLY_SIZE, WORKSOURCE_UID); in testDetailedOn()
145 callSession = bcs.callStarted(binder, 1, WORKSOURCE_UID); in testDetailedOn()
147 bcs.callEnded(callSession, REQUEST_SIZE, REPLY_SIZE, WORKSOURCE_UID); in testDetailedOn()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DTelephonyMetrics.java489 for (TelephonyCallSession callSession : mCompletedCallSessions) { in printAllMetrics()
490 pw.print("Start time in minutes: " + callSession.startTimeMinutes); in printAllMetrics()
491 pw.print(", phone: " + callSession.phoneId); in printAllMetrics()
492 if (callSession.eventsDropped) { in printAllMetrics()
493 pw.println(", events dropped: " + callSession.eventsDropped); in printAllMetrics()
500 for (TelephonyCallSession.Event event : callSession.events) { in printAllMetrics()
1033 InProgressCallSession callSession = mInProgressCallSessions.get(phoneId); in annotateInProgressCallSession() local
1034 if (callSession != null) { in annotateInProgressCallSession()
1035 callSession.addEvent(timestamp, eventBuilder); in annotateInProgressCallSession()
1061 InProgressCallSession callSession = mInProgressCallSessions.get(phoneId); in startNewCallSessionIfNeeded() local
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/android/telephony/ims/
DMmTelFeatureTests.java189 IImsCallSession callSession = mFeatureBinder.createCallSession(null); in testSendDtmfMessageMessenger() local
190 callSession.sendDtmf('0', resultMessage); in testSendDtmfMessageMessenger()
/frameworks/base/core/java/android/os/
DBinder.java1461 final CallSession callSession = in execTransactInternal() local
1509 observer.callThrewException(callSession, e); in execTransactInternal()
1536 observer.callEnded(callSession, data.dataSize(), reply.dataSize(), workSourceUid); in execTransactInternal()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCallTracker.java3166 ImsCallSession callSession = imsCall.getCallSession(); in maybeSetVideoCallProvider() local
3167 if (connVideoProvider != null || callSession == null in maybeSetVideoCallProvider()
3168 || callSession.getVideoCallProvider() == null) { in maybeSetVideoCallProvider()