Flipper Developer Docs
Toggle main menu visibility
Main Page
Related Pages
Data Structures
Data Structures
Data Structure Index
Data Fields
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Files
File List
Globals
All
_
a
b
c
d
e
f
g
i
j
l
m
n
o
p
r
s
t
v
w
Functions
_
a
b
c
d
e
f
g
i
j
l
m
n
o
p
r
s
t
v
w
Variables
Typedefs
a
b
c
d
e
f
g
i
m
n
p
r
s
t
v
Enumerations
a
b
c
d
e
f
g
i
n
o
p
r
s
v
Enumerator
c
e
f
g
i
n
o
r
s
v
Macros
_
d
e
f
r
v
w
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
Loading...
Searching...
No Matches
profiler.h
1
#pragma once
2
3
#ifdef __cplusplus
4
extern
"C"
{
5
#endif
6
7
typedef
struct
Profiler
Profiler
;
8
9
Profiler
* profiler_alloc(
void
);
10
11
void
profiler_free(
Profiler
* profiler);
12
13
void
profiler_prealloc(
Profiler
* profiler,
const
char
* key);
14
15
void
profiler_start(
Profiler
* profiler,
const
char
* key);
16
17
void
profiler_stop(
Profiler
* profiler,
const
char
* key);
18
19
void
profiler_dump(
Profiler
* profiler);
20
21
#ifdef __cplusplus
22
}
23
#endif
Profiler
Definition
profiler.c:16
lib
toolbox
profiler.h
Generated by
1.12.0