Lines Matching refs:id
6 // a type (BEGIN, END or INSTANT), a tracking id and extra string data.
7 // In addition, the current process id, thread id, a timestamp down to the
41 #define TRACE_EVENT_BEGIN(name, id, extra) ((void) 0)
42 #define TRACE_EVENT_END(name, id, extra) ((void) 0)
43 #define TRACE_EVENT_INSTANT(name, id, extra) ((void) 0)
52 // Record that an event (of name, id) has begun. All BEGIN events should have
53 // corresponding END events with a matching (name, id).
54 #define TRACE_EVENT_BEGIN(name, id, extra) \
58 reinterpret_cast<const void*>(id), \
63 // Record that an event (of name, id) has ended. All END events should have
64 // corresponding BEGIN events with a matching (name, id).
65 #define TRACE_EVENT_END(name, id, extra) \
69 reinterpret_cast<const void*>(id), \
74 // Record that an event (of name, id) with no duration has happened.
75 #define TRACE_EVENT_INSTANT(name, id, extra) \
79 reinterpret_cast<const void*>(id), \
108 // Log a trace event of (name, type, id) with the optional extra string.
111 const void* id,
117 const void* id,