Lines Matching defs:label
70 void StartTrace(uint64_t label, const std::string& value, float limit = -1);
71 void FinishTrace(uint64_t label);
72 void StartAsyncTrace(uint64_t label, const std::string& value, int32_t taskId, float limit = -1);
73 void FinishAsyncTrace(uint64_t label, const std::string& value, int32_t taskId);
74 void CountTrace(uint64_t label, const std::string& name, int64_t count);
154 static bool _IsTagEnabled(uint64_t label)
158 return func(label);
162 #define _StartTrace(label, tag, limit) \
166 func(label, tag, limit); \
169 #define _FinishTrace(label) \
173 func(label); \
176 #define _StartAsyncTrace(label, tag, tid, limit) \
180 func(label, tag, tid, limit); \
183 #define _FinishAsyncTrace(label, tag, tid) \
187 func(label, tag, tid); \
191 #define _TraceCount(label, tag, value) \
195 func(label, tag, value); \