Home
last modified time | relevance | path

Searched refs:CHAR_LF (Results 1 – 4 of 4) sorted by relevance

/external/opencore/protocols/rtsp_parcom/src/
Drtsp_par_com_outgoing_message.cpp505 *(fullRequestBufferSpace++) = CHAR_LF; in compose()
518 cseq, CHAR_CR, CHAR_LF); in compose()
526 CHAR_CR, CHAR_LF); in compose()
551 tmp, CHAR_CR, CHAR_LF); in compose()
562 bufferSize, CHAR_CR, CHAR_LF); in compose()
571 sessionId.c_str(), CHAR_CR, CHAR_LF); in compose()
603 userAgent.c_str(), CHAR_CR, CHAR_LF); in compose()
612 accept.c_str(), CHAR_CR, CHAR_LF); in compose()
621 require.c_str(), CHAR_CR, CHAR_LF); in compose()
630 contentType.c_str(), CHAR_CR, CHAR_LF); in compose()
[all …]
Drtsp_parser.cpp81 if ((CHAR_CR == ch) || (CHAR_LF == ch) || (CHAR_NULL == ch)) in isspaceNotNL()
362 if (CHAR_LF == *eorptr || CHAR_CR == *eorptr) in lookForEndOfRequest()
374 && (CHAR_CR == *(eorptr)) && (CHAR_LF == *(eorptr + 1)) in lookForEndOfRequest()
375 && (CHAR_CR == *(eorptr + 2)) && (CHAR_LF == *(eorptr + 3)) in lookForEndOfRequest()
825 && CHAR_LF == *(cPtr + 1) // next char is LF in dealWithLineContinuations()
839 else if (CHAR_LF == *cPtr) in dealWithLineContinuations()
913 && CHAR_LF == *(cPtr + 1) in dealWithFieldRepetitions()
923 else if (CHAR_LF == *cPtr) in dealWithFieldRepetitions()
936 || CHAR_LF == *fieldNamePtr in dealWithFieldRepetitions()
958 if (CHAR_LF == *eorptr || CHAR_CR == *eorptr) in lookForResync()
[all …]
Drtsp_par_com_incoming_message.cpp74 if (CHAR_LF == *secondaryBufferSpace) in parseFirstFields()
112 && (CHAR_LF != *endOfLine); in parseFirstFields()
167 if (CHAR_LF == *endOfLine) in parseFirstFields()
172 else if (CHAR_LF == *endOfLine) in parseFirstFields()
549 if (CHAR_LF == *ptr) in parseFirstFields()
555 if (CHAR_LF != *(ptr + 1)) in parseFirstFields()
590 while (CHAR_LF != *(endOfValue) in parseNextPortion()
597 if (CHAR_CR == *(endOfValue) && CHAR_LF == *(endOfValue + 1)) in parseNextPortion()
1650 while (CHAR_LF != *(endOfValue) in parseEntityBody()
1657 if (CHAR_CR == *(endOfValue) && CHAR_LF == *(endOfValue + 1)) in parseEntityBody()
Drtsp_par_com_constants.h124 const char CHAR_LF = 10; variable