ESP-IDF
CALLBACK_DATA_
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
CALLBACK_DATA_
CALLBACK_DATA_ macro
Syntax
Show:
Summary
Declaration
from
http_parser.c:105
#define
CALLBACK_DATA_
(
FOR
,
LEN
,
ER
)
\
do
{
\
assert
(
HTTP_PARSER_ERRNO
(
parser
)
==
HPE_OK
)
;
\
\
if
(
FOR
##
_mark
)
{
\
if
(
LIKELY
(
settings
->
on_
##
FOR
)
)
{
\
parser
->
state
=
CURRENT_STATE
(
)
;
\
if
(
UNLIKELY
(
0
!=
\
settings
->
on_
##
FOR
(
parser
,
FOR
##
_mark
,
(
LEN
)
)
)
)
{
\
SET_ERRNO
(
HPE_CB_
##
FOR
)
;
\
}
\
UPDATE_STATE
(
parser
->
state
)
;
\
\
\
if
(
UNLIKELY
(
HTTP_PARSER_ERRNO
(
parser
)
!=
HPE_OK
)
)
{
\
return
(
ER
)
;
\
}
\
}
\
FOR
##
_mark
=
NULL
;
\
}
\
}
while
(
0
)
Arguments
Argument
FOR
LEN
ER
Examples
References
from
examples
Code
Location
#define
CALLBACK_DATA_
(
FOR
,
LEN
,
ER
)
\
http_parser.c:105
CALLBACK_DATA_
(
FOR
,
p
-
FOR
##
_mark
,
p
-
data
+
1
)
http_parser.c:129
CALLBACK_DATA_
(
FOR
,
p
-
FOR
##
_mark
,
p
-
data
)
http_parser.c:133
CALLBACK_DATA_
(
body
,
p
-
body_mark
+
1
,
p
-
data
)
;
http_parser.c:1935
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out