Searched refs:CallSession (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/core/tests/coretests/src/com/android/internal/os/ |
D | BinderCallsStatsTest.java | 31 import com.android.internal.os.BinderInternal.CallSession; 62 CallSession callSession = bcs.callStarted(binder, 1, WORKSOURCE_UID); in testDetailedOff() 103 CallSession callSession = bcs.callStarted(binder, 1, WORKSOURCE_UID); in testDetailedOn() 171 CallSession callSession = bcs.callStarted(binder, 1, WORKSOURCE_UID); in testSampling() 208 CallSession callSession = bcs.callStarted(binder, 1, WORKSOURCE_UID); in testSamplingWithDifferentApis() 251 CallSession callSession = bcs.callStarted(binder, 1, WORKSOURCE_UID); in testTransactionCodeResolved() 266 CallSession callSession = bcs.callStarted(binder, 1, WORKSOURCE_UID); in testMultipleTransactionCodeResolved() 297 CallSession callSession = bcs.callStarted(binder, 1, WORKSOURCE_UID); in testResolvingCodeDoesNotThrowWhenMethodNotPresent() 311 CallSession callSession = bcs.callStarted(binder, 1, WORKSOURCE_UID); in testParcelSize() 327 CallSession callSession = bcs.callStarted(binder, 1, WORKSOURCE_UID); in testMaxCpu() [all …]
|
/frameworks/base/core/java/com/android/internal/os/ |
D | BinderInternal.java | 76 public static class CallSession { class in BinderInternal 115 CallSession callStarted(Binder binder, int code, int workSourceUid); in callStarted() 123 void callEnded(CallSession s, int parcelRequestSize, int parcelReplySize, in callEnded() 133 public void callThrewException(CallSession s, Exception exception); in callThrewException()
|
D | BinderCallsStats.java | 32 import com.android.internal.os.BinderInternal.CallSession; 83 private final Queue<CallSession> mCallSessionsPool = new ConcurrentLinkedQueue<>(); 117 public CallSession callStarted(Binder binder, int code, int workSourceUid) { in callStarted() 122 final CallSession s = obtainCallSession(); in callStarted() 135 private CallSession obtainCallSession() { in obtainCallSession() 136 CallSession s = mCallSessionsPool.poll(); in obtainCallSession() 137 return s == null ? new CallSession() : s; in obtainCallSession() 141 public void callEnded(@Nullable CallSession s, int parcelRequestSize, in callEnded() 154 private void processCallEnded(CallSession s, in processCallEnded() 233 public void callThrewException(@Nullable CallSession s, Exception exception) { in callThrewException()
|
/frameworks/base/apct-tests/perftests/core/src/android/os/ |
D | BinderCallsStatsPerfTest.java | 26 import com.android.internal.os.BinderInternal.CallSession; 121 CallSession s = mBinderCallsStats.callStarted(b, i % maxBucketSize, WORKSOURCE_UID); in runScenario()
|
/frameworks/base/core/java/android/os/ |
D | Binder.java | 28 import com.android.internal.os.BinderInternal.CallSession; 1033 final CallSession callSession = in execTransactInternal()
|
/frameworks/base/config/ |
D | boot-image-profile.txt | 21157 …/internal/os/BinderCallsStats;->callEnded(Lcom/android/internal/os/BinderInternal$CallSession;III)V 21158 …CallsStats;->callStarted(Landroid/os/Binder;II)Lcom/android/internal/os/BinderInternal$CallSession; 21159 …allsStats;->callThrewException(Lcom/android/internal/os/BinderInternal$CallSession;Ljava/lang/Exce… 21166 …al/os/BinderCallsStats;->processCallEnded(Lcom/android/internal/os/BinderInternal$CallSession;III)V
|