Searched defs:counterName (Results 1 - 3 of 3) sorted by relevance

/frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/
H A DSysTrace.java44 * @param counterName The counter name to appear in the trace.
48 public static void traceCounter(String counterName, int counterValue) { argument
50 Log.v(TAG, "traceCounter " + counterName + " " + counterValue);
/frameworks/base/core/java/android/os/
H A DTrace.java161 * @param counterName The counter name to appear in the trace.
166 public static void traceCounter(long traceTag, String counterName, int counterValue) { argument
168 nativeTraceCounter(traceTag, counterName, counterValue);
/frameworks/native/services/inputflinger/
H A DInputDispatcher.cpp3806 char counterName[40]; local
3807 snprintf(counterName, sizeof(counterName), "oq:%s", connection->getWindowName());
3808 ATRACE_INT(counterName, connection->outboundQueue.count());
3814 char counterName[40]; local
3815 snprintf(counterName, sizeof(counterName), "wq:%s", connection->getWindowName());
3816 ATRACE_INT(counterName, connection->waitQueue.count());

Completed in 99 milliseconds