Searched refs:MsgParser (Results 1 - 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
H A DHttpLib.h258 @param[out] MsgParser Pointer to the returned buffer to store the message parser.
262 @retval EFI_INVALID_PARAMETER MsgParser is NULL or HeaderCount is not NULL but Headers is NULL.
275 OUT VOID **MsgParser
283 @param[in, out] MsgParser Pointer to the message parser.
288 @retval EFI_INVALID_PARAMETER MsgParser is NULL or Body is NULL or BodyLength is 0.
295 IN OUT VOID *MsgParser,
303 @param[in] MsgParser Pointer to the message parser.
312 IN VOID *MsgParser
320 @param[in] MsgParser Pointer to the message parser.
325 @retval EFI_INVALID_PARAMETER MsgParser i
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeHttpLib/
H A DDxeHttpLib.c1022 @param[out] MsgParser Pointer to the returned buffer to store the message parser.
1026 @retval EFI_INVALID_PARAMETER MsgParser is NULL or HeaderCount is not NULL but Headers is NULL.
1039 OUT VOID **MsgParser
1049 if (MsgParser == NULL) {
1091 *MsgParser = Parser;
1100 @param[in, out] MsgParser Pointer to the message parser.
1105 @retval EFI_INVALID_PARAMETER MsgParser is NULL or Body is NULL or BodyLength is 0.
1112 IN OUT VOID *MsgParser,
1127 if (MsgParser == NULL) {
1131 Parser = (HTTP_BODY_PARSER*) MsgParser;
1111 HttpParseMessageBody( IN OUT VOID *MsgParser, IN UINTN BodyLength, IN CHAR8 *Body ) argument
1395 HttpGetEntityLength( IN VOID *MsgParser, OUT UINTN *ContentLength ) argument
[all...]
/device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
H A DHttpImpl.c1165 &HttpInstance->MsgParser
1175 Status = HttpParseMessageBody (HttpInstance->MsgParser, HttpInstance->CacheLen, HttpInstance->CacheBody);
1180 if (HttpIsMessageComplete (HttpInstance->MsgParser)) {
1184 HttpFreeMsgParser (HttpInstance->MsgParser);
1185 HttpInstance->MsgParser = NULL;
1249 if (BodyLen == 0 && HttpInstance->MsgParser == NULL) {
1259 ASSERT (HttpInstance->MsgParser != NULL);
1262 // We still need receive more data when there is no cache data and MsgParser is not NULL;
1308 HttpInstance->MsgParser,
1316 if (HttpIsMessageComplete (HttpInstance->MsgParser)) {
[all...]
H A DHttpProto.c193 ASSERT (HttpInstance->MsgParser != NULL);
201 HttpInstance->MsgParser,
209 if (HttpIsMessageComplete (HttpInstance->MsgParser)) {
213 HttpFreeMsgParser (HttpInstance->MsgParser);
214 HttpInstance->MsgParser = NULL;
854 if (HttpInstance->MsgParser != NULL) {
855 HttpFreeMsgParser (HttpInstance->MsgParser);
856 HttpInstance->MsgParser = NULL;
H A DHttpProto.h150 VOID *MsgParser; member in struct:_HTTP_PROTOCOL

Completed in 32 milliseconds