Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
DHttpLib.h275 OUT VOID **MsgParser
295 IN OUT VOID *MsgParser,
312 IN VOID *MsgParser
331 IN VOID *MsgParser,
344 IN VOID *MsgParser
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeHttpLib/
DDxeHttpLib.c1039 OUT VOID **MsgParser in HttpInitMsgParser() argument
1049 if (MsgParser == NULL) { in HttpInitMsgParser()
1091 *MsgParser = Parser; in HttpInitMsgParser()
1112 IN OUT VOID *MsgParser, in HttpParseMessageBody() argument
1127 if (MsgParser == NULL) { in HttpParseMessageBody()
1131 Parser = (HTTP_BODY_PARSER*) MsgParser; in HttpParseMessageBody()
1367 IN VOID *MsgParser in HttpIsMessageComplete() argument
1372 Parser = (HTTP_BODY_PARSER*) MsgParser; in HttpIsMessageComplete()
1396 IN VOID *MsgParser, in HttpGetEntityLength() argument
1402 if (MsgParser == NULL || ContentLength == NULL) { in HttpGetEntityLength()
[all …]
/device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
DHttpImpl.c1165 &HttpInstance->MsgParser in HttpResponseWorker()
1175 …Status = HttpParseMessageBody (HttpInstance->MsgParser, HttpInstance->CacheLen, HttpInstance->Cach… in HttpResponseWorker()
1180 if (HttpIsMessageComplete (HttpInstance->MsgParser)) { in HttpResponseWorker()
1184 HttpFreeMsgParser (HttpInstance->MsgParser); in HttpResponseWorker()
1185 HttpInstance->MsgParser = NULL; in HttpResponseWorker()
1249 if (BodyLen == 0 && HttpInstance->MsgParser == NULL) { in HttpResponseWorker()
1259 ASSERT (HttpInstance->MsgParser != NULL); in HttpResponseWorker()
1308 HttpInstance->MsgParser, in HttpResponseWorker()
1316 if (HttpIsMessageComplete (HttpInstance->MsgParser)) { in HttpResponseWorker()
1320 HttpFreeMsgParser (HttpInstance->MsgParser); in HttpResponseWorker()
[all …]
DHttpProto.c193 ASSERT (HttpInstance->MsgParser != NULL); in HttpTcpReceiveNotifyDpc()
201 HttpInstance->MsgParser, in HttpTcpReceiveNotifyDpc()
209 if (HttpIsMessageComplete (HttpInstance->MsgParser)) { in HttpTcpReceiveNotifyDpc()
213 HttpFreeMsgParser (HttpInstance->MsgParser); in HttpTcpReceiveNotifyDpc()
214 HttpInstance->MsgParser = NULL; in HttpTcpReceiveNotifyDpc()
854 if (HttpInstance->MsgParser != NULL) { in HttpCleanProtocol()
855 HttpFreeMsgParser (HttpInstance->MsgParser); in HttpCleanProtocol()
856 HttpInstance->MsgParser = NULL; in HttpCleanProtocol()
DHttpProto.h150 VOID *MsgParser; member