Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
z
Classes
Class List
Class Hierarchy
Class Members
All
:
[
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
[
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
Enumerations
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Properties
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
Related Functions
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
z
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
grpc
third_party
bloaty
third_party
capstone
windows
winkernel_mm.h
Go to the documentation of this file.
1
/* Capstone Disassembly Engine */
2
/* By Satoshi Tanda <tanda.sat@gmail.com>, 2016 */
3
4
#ifndef CS_WINDOWS_WINKERNEL_MM_H
5
#define CS_WINDOWS_WINKERNEL_MM_H
6
7
#ifdef __cplusplus
8
extern
"C"
{
9
#endif
10
11
#include <
capstone/capstone.h
>
12
13
void
CAPSTONE_API
cs_winkernel_free
(
void
*
ptr
);
14
void
*
CAPSTONE_API
cs_winkernel_malloc
(
size_t
size
);
15
void
*
CAPSTONE_API
cs_winkernel_calloc
(
size_t
n
,
size_t
size
);
16
void
*
CAPSTONE_API
cs_winkernel_realloc
(
void
*
ptr
,
size_t
size
);
17
int
CAPSTONE_API
cs_winkernel_vsnprintf
(
char
*
buffer
,
size_t
count
,
const
char
*
format
, va_list argptr);
18
19
#ifdef __cplusplus
20
}
21
#endif
22
23
#endif // CS_WINDOWS_WINKERNEL_MM_H
ptr
char * ptr
Definition:
abseil-cpp/absl/base/internal/low_level_alloc_test.cc:45
http2_test_server.format
format
Definition:
http2_test_server.py:118
cs_winkernel_calloc
void *CAPSTONE_API cs_winkernel_calloc(size_t n, size_t size)
Definition:
winkernel_mm.c:56
cs_winkernel_vsnprintf
int CAPSTONE_API cs_winkernel_vsnprintf(char *buffer, size_t count, const char *format, va_list argptr)
Definition:
winkernel_mm.c:99
cs_winkernel_free
void CAPSTONE_API cs_winkernel_free(void *ptr)
Definition:
winkernel_mm.c:21
capstone.h
cs_winkernel_malloc
void *CAPSTONE_API cs_winkernel_malloc(size_t size)
Definition:
winkernel_mm.c:29
CAPSTONE_API
#define CAPSTONE_API
Definition:
capstone.h:32
buffer
char buffer[1024]
Definition:
libuv/docs/code/idle-compute/main.c:8
n
int n
Definition:
abseil-cpp/absl/container/btree_test.cc:1080
cs_winkernel_realloc
void *CAPSTONE_API cs_winkernel_realloc(void *ptr, size_t size)
Definition:
winkernel_mm.c:69
count
int * count
Definition:
bloaty/third_party/googletest/googlemock/test/gmock_stress_test.cc:96
size
voidpf void uLong size
Definition:
bloaty/third_party/zlib/contrib/minizip/ioapi.h:136
grpc
Author(s):
autogenerated on Thu Mar 13 2025 03:01:51