Searched refs:InterceptorContext (Results 1 – 7 of 7) sorted by relevance
/external/perfetto/include/perfetto/tracing/ |
D | console_interceptor.h | 66 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&,
|
D | interceptor.h | 268 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/ |
D | console_interceptor.cc | 117 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/ |
D | interceptors.md | 25 static void OnTracePacket(InterceptorContext context) { 86 static void OnTracePacket(InterceptorContext context) { 125 static void OnTracePacket(InterceptorContext context) {
|
/external/llvm-project/compiler-rt/lib/msan/ |
D | msan_interceptors.cpp | 1093 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/ |
D | tsan_interceptors_posix.cpp | 191 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/ |
D | api_integrationtest.cc | 3562 static void OnTracePacket(InterceptorContext context) { in OnTracePacket()
|