Searched refs:trace (Results 1 - 25 of 25) sorted by relevance

/frameworks/base/native/android/
H A Dtrace.cpp17 #include <android/trace.h>
18 #include <cutils/trace.h>
H A DAndroid.mk20 trace.cpp \
/frameworks/base/core/java/android/os/
H A DTransactionTracker.java29 * Class used to track binder transactions. It indexes the transactions by the stack trace.
47 String trace = Log.getStackTraceString(new Throwable());
49 if (mTraces.containsKey(trace)) {
50 mTraces.put(trace, mTraces.get(trace) + 1);
52 mTraces.put(trace, Long.valueOf(1));
64 for (String trace : mTraces.keySet()) {
65 pw.println("Count: " + mTraces.get(trace));
66 pw.println("Trace: " + trace);
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiDevice.java132 Tracer.trace();
155 Tracer.trace();
175 Tracer.trace();
185 Tracer.trace();
195 Tracer.trace();
208 Tracer.trace();
221 Tracer.trace();
234 Tracer.trace();
244 Tracer.trace();
254 Tracer.trace();
[all...]
H A DUiScrollable.java69 Tracer.trace();
80 Tracer.trace();
120 Tracer.trace(childPattern, text);
142 Tracer.trace(childPattern, text, allowScrollSearch);
166 Tracer.trace(childPattern, instance);
191 Tracer.trace(childPattern, text);
212 Tracer.trace(childPattern, text, allowScrollSearch);
232 Tracer.trace(text);
245 Tracer.trace(obj.getSelector());
260 Tracer.trace(selecto
[all...]
H A DUiObject.java92 Tracer.trace();
124 Tracer.trace(selector);
138 Tracer.trace(selector);
150 Tracer.trace();
241 Tracer.trace(steps);
269 Tracer.trace(steps);
297 Tracer.trace(steps);
324 Tracer.trace(steps);
396 Tracer.trace();
416 Tracer.trace();
[all...]
H A DUiCollection.java55 Tracer.trace(childPattern, text);
89 Tracer.trace(childPattern, instance);
113 Tracer.trace(childPattern, text);
143 Tracer.trace(childPattern);
H A DTracer.java33 * that needs to be traced should include a call to Tracer.trace in the
46 * Enum that determines where the trace output goes. It can go to either
101 * parameters before the trace is collected.
113 * Sets where the trace output will go. Can be either be logcat or a file or
126 "attempting write trace to a file");
137 "attempting write trace to a file");
195 * trace. The trace will include the method thats is being called, it's
198 * output a trace entry. Only calls from outise the UiAutomator package will
202 * to this function. Like String[] or Integer[]. The trace functio
209 public static void trace(Object... arguments) { method in class:Tracer
[all...]
/frameworks/base/core/java/android/ddm/
H A DDdmHandleThread.java131 StackTraceElement[] trace = DdmVmInternal.getStackTraceById(threadId);
132 if (trace == null) {
133 return createFailChunk(1, "Stack trace unavailable");
135 return createStackChunk(trace, threadId);
145 private Chunk createStackChunk(StackTraceElement[] trace, int threadId) { argument
151 for (StackTraceElement elem : trace) {
163 out.putInt(trace.length);
164 for (StackTraceElement elem : trace) {
/frameworks/volley/src/main/java/com/android/volley/
H A DVolleyLog.java85 StackTraceElement[] trace = new Throwable().fillInStackTrace().getStackTrace();
90 for (int i = 2; i < trace.length; i++) {
91 Class<?> clazz = trace[i].getClass();
93 String callingClass = trace[i].getClassName();
97 caller = callingClass + "." + trace[i].getMethodName();
/frameworks/native/include/ui/
H A DTMatHelpers.h55 inline int PURE trace(int v) { return v; } function in namespace:android::matrix
56 inline float PURE trace(float v) { return v; } function in namespace:android::matrix
57 inline double PURE trace(double v) { return v; } function in namespace:android::matrix
140 // trace. this handles matrices of matrices
142 typename MATRIX::value_type PURE trace(const MATRIX& m) { function in namespace:android::matrix
146 result += trace(m[r][r]);
150 // trace. this handles matrices of matrices
241 friend T PURE trace(const BASE<T>& m) { return matrix::trace(m); } function in class:android::TMatSquareFunctions
/frameworks/av/services/camera/libcameraservice/utils/
H A DCameraTraces.cpp28 #include <cutils/trace.h>
62 ALOGD("Process trace saved. Use dumpsys media.camera to view.");
/frameworks/base/core/java/android/app/
H A DApplicationErrorReport.java330 * Stack trace.
366 StackTraceElement trace = rootTr.getStackTrace()[0];
367 throwFileName = trace.getFileName();
368 throwClassName = trace.getClassName();
369 throwMethodName = trace.getMethodName();
370 throwLineNumber = trace.getLineNumber();
/frameworks/base/core/jni/
H A Dandroid_os_Trace.cpp28 #include <cutils/trace.h>
/frameworks/native/cmds/atrace/
H A Datrace.rc1 ## Permissions to allow system-wide tracing to the kernel trace buffer.
5 # Allow writing to the kernel trace log.
61 # Allow only the shell group to read and truncate the kernel trace.
62 chown root shell /sys/kernel/debug/tracing/trace
63 chmod 0660 /sys/kernel/debug/tracing/trace
/frameworks/native/libs/ui/tests/
H A Dmat_test.cpp113 EXPECT_EQ(4, trace(m0));
/frameworks/base/core/java/com/android/internal/os/
H A DRuntimeInit.java91 // flush the buffer. (This makes method trace profiling useful to debug crashes.)
156 * If we're running in an emulator launched with "-trace", put the
157 * VM into emulator trace profiling mode so that the user can hit
161 String trace = SystemProperties.get("ro.kernel.android.tracing");
162 if (trace.equals("1")) {
163 Slog.i(TAG, "NOTE: emulator trace profiling enabled");
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/
H A DEventBus.java191 * <li>trace cost per registration & invocation
192 * <li>trace cross-process invocation
217 boolean trace; field in class:EventBus.Event
861 if (event.trace || DEBUG_TRACE_ALL) {
868 if (event.trace || DEBUG_TRACE_ALL) {
/frameworks/base/cmds/app_process/
H A Dapp_main.cpp22 #include <cutils/trace.h>
/frameworks/compile/mclinker/lib/Core/
H A DLinker.cpp106 if (m_pConfig->options().trace()) {
/frameworks/wilhelm/src/
H A DAndroid.mk76 trace.c \
/frameworks/compile/mclinker/include/mcld/
H A DGeneralOptions.h73 /// trace
76 bool trace() const { return m_bTrace; } function in class:mcld::GeneralOptions::HashStyle
362 bool m_bTrace : 1; // --trace
/frameworks/native/services/sensorservice/
H A Dmat.h298 // Calculate the trace of a matrix
299 template <typename TYPE, size_t C> static TYPE trace(const mat<TYPE, C, C>& m) { function in namespace:android
/frameworks/base/core/java/android/view/
H A DViewDebug.java392 public static void trace(View view, RecyclerTraceType type, int... parameters) { method in class:ViewDebug
416 public static void trace(View view, HierarchyTraceType type) { method in class:ViewDebug
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 516 milliseconds