/external/v8/base/trace_event/common/ |
trace_event_common.h | 115 // in for category_group, name, and arg_names. Thus, the following code will 205 #define TRACE_EVENT0(category_group, name) \ 206 INTERNAL_TRACE_EVENT_ADD_SCOPED(category_group, name) 207 #define TRACE_EVENT_WITH_FLOW0(category_group, name, bind_id, flow_flags) \ 208 INTERNAL_TRACE_EVENT_ADD_SCOPED_WITH_FLOW(category_group, name, bind_id, \ 210 #define TRACE_EVENT1(category_group, name, arg1_name, arg1_val) \ 211 INTERNAL_TRACE_EVENT_ADD_SCOPED(category_group, name, arg1_name, arg1_val) 212 #define TRACE_EVENT_WITH_FLOW1(category_group, name, bind_id, flow_flags, \ 214 INTERNAL_TRACE_EVENT_ADD_SCOPED_WITH_FLOW(category_group, name, bind_id, \ 216 #define TRACE_EVENT2(category_group, name, arg1_name, arg1_val, arg2_name, [all...] |
/external/libchrome/base/trace_event/common/ |
trace_event_common.h | 115 // in for category_group, name, and arg_names. Thus, the following code will 205 #define TRACE_EVENT0(category_group, name) \ 206 INTERNAL_TRACE_EVENT_ADD_SCOPED(category_group, name) 207 #define TRACE_EVENT_WITH_FLOW0(category_group, name, bind_id, flow_flags) \ 208 INTERNAL_TRACE_EVENT_ADD_SCOPED_WITH_FLOW(category_group, name, bind_id, \ 210 #define TRACE_EVENT1(category_group, name, arg1_name, arg1_val) \ 211 INTERNAL_TRACE_EVENT_ADD_SCOPED(category_group, name, arg1_name, arg1_val) 212 #define TRACE_EVENT_WITH_FLOW1(category_group, name, bind_id, flow_flags, \ 214 INTERNAL_TRACE_EVENT_ADD_SCOPED_WITH_FLOW(category_group, name, bind_id, \ 216 #define TRACE_EVENT2(category_group, name, arg1_name, arg1_val, arg2_name, [all...] |
/external/skia/src/core/ |
SkTraceEventCommon.h | 115 // in for category_group, name, and arg_names. Thus, the following code will 205 #define TRACE_EVENT0(category_group, name) \ 206 INTERNAL_TRACE_MEMORY(category_group, name) \ 207 INTERNAL_TRACE_EVENT_ADD_SCOPED(category_group, name) 208 #define TRACE_EVENT_WITH_FLOW0(category_group, name, bind_id, flow_flags) \ 209 INTERNAL_TRACE_MEMORY(category_group, name) \ 210 INTERNAL_TRACE_EVENT_ADD_SCOPED_WITH_FLOW(category_group, name, bind_id, \ 212 #define TRACE_EVENT1(category_group, name, arg1_name, arg1_val) \ 213 INTERNAL_TRACE_MEMORY(category_group, name) \ 214 INTERNAL_TRACE_EVENT_ADD_SCOPED(category_group, name, arg1_name, arg1_val [all...] |
SkTraceEvent.h | 76 // TRACE_EVENT_API_GET_CATEGORY_GROUP_ENABLED(const char* category_group) 140 category_group, atomic, category_group_enabled) \ 146 TRACE_EVENT_API_GET_CATEGORY_GROUP_ENABLED(category_group); \ 152 #define INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group) \ 155 INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO_CUSTOM_VARIABLES(category_group, \ 161 #define INTERNAL_TRACE_EVENT_ADD(phase, category_group, name, flags, ...) \ 163 INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \ 174 #define INTERNAL_TRACE_EVENT_ADD_SCOPED(category_group, name, ...) \ 175 INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \ 189 #define INTERNAL_TRACE_EVENT_ADD_WITH_ID(phase, category_group, name, id, [all...] |
/external/libchrome/base/trace_event/ |
trace_sampling_thread.cc | 52 const char* category_group; local 54 ExtractCategoryAndName(combined, &category_group, &name); 57 TraceLog::GetCategoryGroupEnabled(category_group), name, 0, 0, NULL, NULL,
|
trace_event.h | 87 // TRACE_EVENT_API_GET_CATEGORY_GROUP_ENABLED(const char* category_group) 220 category_group, atomic, category_group_enabled) \ 226 TRACE_EVENT_API_GET_CATEGORY_GROUP_ENABLED(category_group); \ 232 #define INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group) \ 235 INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO_CUSTOM_VARIABLES(category_group, \ 241 #define INTERNAL_TRACE_EVENT_ADD(phase, category_group, name, flags, ...) \ 243 INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \ 255 #define INTERNAL_TRACE_EVENT_ADD_SCOPED(category_group, name, ...) \ 256 INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \ 270 category_group, name, bind_id, flow_flags, ...) [all...] |
trace_log.cc | 421 const char* category_group) { 427 return tracelog->GetCategoryGroupEnabledInternal(category_group); 448 const char* category_group = g_category_groups[category_index]; 450 trace_config_.IsCategoryGroupEnabled(category_group)) 453 trace_config_.IsCategoryGroupEnabled(category_group)) 456 event_callback_trace_config_.IsCategoryGroupEnabled(category_group)) 460 category_group)) { 504 const char* category_group) { 505 DCHECK(!strchr(category_group, '"')) 512 if (strcmp(g_category_groups[i], category_group) == 0) [all...] |
trace_config.h | 164 bool IsCategoryGroupEnabled(const char* category_group) const;
|
/external/v8/src/tracing/ |
trace-event.h | 96 // TRACE_EVENT_API_GET_CATEGORY_GROUP_ENABLED(const char* category_group) 162 category_group, atomic, category_group_enabled) \ 167 TRACE_EVENT_API_GET_CATEGORY_GROUP_ENABLED(category_group); \ 173 #define INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group) \ 177 category_group, INTERNAL_TRACE_EVENT_UID(atomic), \ 182 #define INTERNAL_TRACE_EVENT_ADD(phase, category_group, name, flags, ...) \ 184 INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \ 196 #define INTERNAL_TRACE_EVENT_ADD_SCOPED(category_group, name, ...) \ 197 INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \ 210 #define INTERNAL_TRACE_EVENT_ADD_SCOPED_WITH_FLOW(category_group, name, [all...] |