/frameworks/base/native/android/ |
D | trace.cpp | 40 void ATrace_setCounter(const char* counterName, int64_t counterValue) { in ATrace_setCounter() argument 41 atrace_int64(ATRACE_TAG_APP, counterName, counterValue); in ATrace_setCounter()
|
/frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/ |
D | SysTrace.java | 48 public static void traceCounter(String counterName, int counterValue) { in traceCounter() argument 50 Log.v(TAG, "traceCounter " + counterName + " " + counterValue); in traceCounter()
|
/frameworks/base/core/java/android/os/ |
D | Trace.java | 198 public static void traceCounter(long traceTag, @NonNull String counterName, int counterValue) { in traceCounter() argument 200 nativeTraceCounter(traceTag, counterName, counterValue); in traceCounter() 522 public static void setCounter(@NonNull String counterName, long counterValue) { in setCounter() argument 524 nativeTraceCounter(TRACE_TAG_APP, counterName, counterValue); in setCounter()
|
/frameworks/libs/systemui/tracinglib/core/android/src-platform-api/ |
D | TraceProxy.platform.kt | 26 internal actual fun traceCounter(counterName: String, counterValue: Int) { in traceCounter() 27 Trace.traceCounter(Trace.TRACE_TAG_APP, counterName, counterValue) in traceCounter()
|
/frameworks/libs/systemui/tracinglib/core/android/src-public-api/src/ |
D | TraceProxy.jetpack.kt | 27 internal actual fun traceCounter(counterName: String, counterValue: Int) { in traceCounter() 28 Trace.setCounter(counterName, counterValue) in traceCounter()
|
/frameworks/base/core/jni/ |
D | android_content_res_ResourceTimer.cpp | 78 static jstring counterName(JNIEnv *env, int counter) { in counterName() function 91 jstring empty = counterName(env, 0); in NativeEnableTimers() 94 env->SetObjectArrayElement(timers, i, counterName(env, i)); in NativeEnableTimers()
|
/frameworks/libs/systemui/tracinglib/core/host/src-fake/ |
D | TraceProxy.fake.kt | 35 internal actual fun traceCounter(counterName: String, counterValue: Int) { in traceCounter() 36 traceCounters[counterName] = counterValue in traceCounter()
|
/frameworks/native/include/android/ |
D | trace.h | 107 void ATrace_setCounter(const char* counterName, int64_t counterValue) __INTRODUCED_IN(29);
|
/frameworks/libs/systemui/tracinglib/core/common/src/ |
D | TraceProxy.kt | 21 internal expect fun traceCounter(counterName: String, counterValue: Int)
|
/frameworks/base/core/tests/coretests/src/android/metrics/ |
D | LogMakerTest.java | 45 String counterName = "sheep"; in testSerializeDeserialize() local 54 builder.setCounterName(counterName); in testSerializeDeserialize() 68 assertEquals(counterName, parsed.getCounterName()); in testSerializeDeserialize()
|
/frameworks/native/services/inputflinger/dispatcher/ |
D | InputDispatcher.cpp | 6838 char counterName[40]; in traceOutboundQueueLength() local 6839 snprintf(counterName, sizeof(counterName), "oq:%s", in traceOutboundQueueLength() 6841 ATRACE_INT(counterName, connection.outboundQueue.size()); in traceOutboundQueueLength() 6847 char counterName[40]; in traceWaitQueueLength() local 6848 snprintf(counterName, sizeof(counterName), "wq:%s", in traceWaitQueueLength() 6850 ATRACE_INT(counterName, connection.waitQueue.size()); in traceWaitQueueLength()
|
/frameworks/native/opengl/libs/GLES2/ |
D | gl2ext_api.in | 844 …L)(GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counter… 845 …CALL_GL_API(glGetPerfCounterInfoINTEL, queryId, counterId, counterNameLength, counterName, counter…
|
/frameworks/native/opengl/include/GLES2/ |
D | gl2ext.h | 2380 …) (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counter… 2391 …L (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counter…
|
/frameworks/native/services/surfaceflinger/ |
D | SurfaceFlinger.cpp | 6063 std::string counterName = layer->getPendingBufferCounterName(); in createLayer() local 6064 mBufferCountTracker.add(outResult.handle->localBinder(), counterName, in createLayer()
|
/frameworks/native/opengl/libs/ |
D | entries.in | 394 …L, GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counter…
|