Searched defs:trace (Results 1 - 6 of 6) sorted by relevance

/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/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/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/testing/uiautomator/library/core-src/com/android/uiautomator/core/
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/view/
H A DViewDebug.java367 public static void trace(View view, RecyclerTraceType type, int... parameters) { method in class:ViewDebug
391 public static void trace(View view, HierarchyTraceType type) { method in class:ViewDebug
/frameworks/compile/mclinker/include/mcld/
H A DGeneralOptions.h62 /// trace
66 bool trace() const function in class:mcld::GeneralOptions
353 bool m_bTrace : 1; // --trace

Completed in 178 milliseconds