Searched defs:trace (Results 1 - 8 of 8) sorted by path

/frameworks/base/cmds/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/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/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/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/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/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. ...
/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

Completed in 851 milliseconds