1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2020, Google Inc.
*
* pipeline.tp - Tracepoints for pipelines
*/
TRACEPOINT_EVENT(
libcamera,
ipa_call_begin,
TP_ARGS(
const char *, pipe,
const char *, func
),
TP_FIELDS(
ctf_string(pipeline_name, pipe)
ctf_string(function_name, func)
)
)
TRACEPOINT_EVENT(
libcamera,
ipa_call_end,
TP_ARGS(
const char *, pipe,
const char *, func
),
TP_FIELDS(
ctf_string(pipeline_name, pipe)
ctf_string(function_name, func)
)
)
|