Home
last modified time | relevance | path

Searched refs:InterceptorContext (Results 1 – 7 of 7) sorted by relevance

/external/perfetto/include/perfetto/tracing/
Dconsole_interceptor.h66 static void OnTracePacket(InterceptorContext context);
99 static void Printf(InterceptorContext& context,
102 static void Flush(InterceptorContext& context);
103 static void SetColor(InterceptorContext& context, const ConsoleColor&);
104 static void SetColor(InterceptorContext& context, const char*);
106 static void PrintDebugAnnotations(InterceptorContext&,
111 InterceptorContext&,
114 InterceptorContext&,
Dinterceptor.h268 friend class InterceptorContext; variable
282 class InterceptorContext {
284 InterceptorContext(InterceptorContext&&) noexcept = default;
285 ~InterceptorContext() = default;
305 InterceptorContext(TracePacketCallbackArgs args) in InterceptorContext() function
309 InterceptorContext(const InterceptorContext&) = delete;
310 InterceptorContext& operator=(const InterceptorContext&) = delete;
339 InterceptorType::OnTracePacket(InterceptorContext(std::move(args))); in Register()
/external/perfetto/src/tracing/
Dconsole_interceptor.cc117 explicit Delegate(InterceptorContext&);
128 InterceptorContext& context_;
145 ConsoleInterceptor::Delegate::Delegate(InterceptorContext& context) in Delegate()
295 void ConsoleInterceptor::OnTracePacket(InterceptorContext context) { in OnTracePacket()
308 void ConsoleInterceptor::Printf(InterceptorContext& context, in Printf()
345 void ConsoleInterceptor::Flush(InterceptorContext& context) { in Flush()
353 void ConsoleInterceptor::SetColor(InterceptorContext& context, in SetColor()
362 void ConsoleInterceptor::SetColor(InterceptorContext& context, in SetColor()
372 InterceptorContext& context, in PrintDebugAnnotations()
400 InterceptorContext& context, in PrintDebugAnnotationName()
[all …]
/external/perfetto/docs/instrumentation/
Dinterceptors.md25 static void OnTracePacket(InterceptorContext context) {
86 static void OnTracePacket(InterceptorContext context) {
125 static void OnTracePacket(InterceptorContext context) {
/external/llvm-project/compiler-rt/lib/msan/
Dmsan_interceptors.cpp1093 struct InterceptorContext { struct
1097 InterceptorContext() in InterceptorContext() argument
1102 static ALIGNED(64) char interceptor_placeholder[sizeof(InterceptorContext)];
1103 InterceptorContext *interceptor_ctx() { in interceptor_ctx()
1104 return reinterpret_cast<InterceptorContext*>(&interceptor_placeholder[0]); in interceptor_ctx()
1594 new(interceptor_ctx()) InterceptorContext(); in InitializeInterceptors()
/external/llvm-project/compiler-rt/lib/tsan/rtl/
Dtsan_interceptors_posix.cpp191 struct InterceptorContext { struct
203 InterceptorContext() in InterceptorContext() function
208 static ALIGNED(64) char interceptor_placeholder[sizeof(InterceptorContext)];
209 InterceptorContext *interceptor_ctx() { in interceptor_ctx()
210 return reinterpret_cast<InterceptorContext*>(&interceptor_placeholder[0]); in interceptor_ctx()
2676 new(interceptor_ctx()) InterceptorContext(); in InitializeInterceptors()
/external/perfetto/src/tracing/test/
Dapi_integrationtest.cc3562 static void OnTracePacket(InterceptorContext context) { in OnTracePacket()