Lines Matching refs:value
120 * A value of zero indicates setup has failed.
121 * Any other nonzero value indicates setup has succeeded, and tracing is on.
127 * Any other value indicates setup has succeeded, and is a valid fd for tracing.
211 * Traces an integer counter value. name is used to identify the counter.
212 * This can be used to track how a value changes over time.
214 #define ATRACE_INT(name, value) atrace_int(ATRACE_TAG, name, value)
215 static inline void atrace_int(uint64_t tag, const char* name, int32_t value)
219 atrace_int_body(name, value);
224 * Traces a 64-bit integer counter value. name is used to identify the
225 * counter. This can be used to track how a value changes over time.
227 #define ATRACE_INT64(name, value) atrace_int64(ATRACE_TAG, name, value)
228 static inline void atrace_int64(uint64_t tag, const char* name, int64_t value)
232 atrace_int64_body(name, value);