HomeSort by relevance Sort by last modified time
    Searched refs:TraceCategory (Results 1 - 6 of 6) sorted by null

  /external/libchrome/base/trace_event/
category_registry.h 17 struct TraceCategory;
32 Range(TraceCategory* begin, TraceCategory* end) : begin_(begin), end_(end) {
35 TraceCategory* begin() const { return begin_; }
36 TraceCategory* end() const { return end_; }
39 TraceCategory* const begin_;
40 TraceCategory* const end_;
44 static TraceCategory* const kCategoryExhausted;
45 static TraceCategory* const kCategoryMetadata;
46 static TraceCategory* const kCategoryAlreadyShutdown
    [all...]
category_registry.cc 26 static_assert(std::is_pod<TraceCategory>::value, "TraceCategory must be POD");
29 TraceCategory g_categories[kMaxCategories] = {
38 bool IsValidCategoryPtr(const TraceCategory* category) {
49 TraceCategory* const CategoryRegistry::kCategoryExhausted = &g_categories[0];
50 TraceCategory* const CategoryRegistry::kCategoryAlreadyShutdown =
52 TraceCategory* const CategoryRegistry::kCategoryMetadata = &g_categories[2];
79 TraceCategory* CategoryRegistry::GetCategoryByName(const char* category_name) {
98 TraceCategory** category) {
132 const TraceCategory* CategoryRegistry::GetCategoryByStatePtr
    [all...]
trace_category.h 15 struct TraceCategory {
32 static const TraceCategory* FromStatePtr(const uint8_t* state_ptr) {
34 offsetof(TraceCategory, state_) == 0,
35 "|state_| must be the first field of the TraceCategory class.");
36 return reinterpret_cast<const TraceCategory*>(state_ptr);
48 // full TraceCategory ptr, which is immutable, and use these helper function
87 // to have a global array of TraceCategory in category_registry.cc without
102 // TraceCategory group names are long lived static strings.
trace_log.cc 168 const TraceCategory* category =
425 TraceCategory* category = CategoryRegistry::GetCategoryByName(category_group);
430 auto category_initializer = [](TraceCategory* category) {
447 void TraceLog::UpdateCategoryState(TraceCategory* category) {
453 state_flags |= TraceCategory::ENABLED_FOR_RECORDING;
461 state_flags |= TraceCategory::ENABLED_FOR_RECORDING;
467 state_flags |= TraceCategory::ENABLED_FOR_ETW_EXPORT;
475 state_flags |= TraceCategory::ENABLED_FOR_FILTERING;
491 for (TraceCategory& category : CategoryRegistry::GetAllCategories()) {
    [all...]
trace_log.h 34 struct TraceCategory;
363 void UpdateCategoryState(TraceCategory* category);
trace_event.h 70 (base::trace_event::TraceCategory::ENABLED_FOR_RECORDING | \
71 base::trace_event::TraceCategory::ENABLED_FOR_ETW_EXPORT))
75 (base::trace_event::TraceCategory::ENABLED_FOR_RECORDING | \
76 base::trace_event::TraceCategory::ENABLED_FOR_ETW_EXPORT | \
77 base::trace_event::TraceCategory::ENABLED_FOR_FILTERING))
    [all...]

Completed in 560 milliseconds