Lines Matching refs:total
872 int total; in LSAPI_ReadReqBody_r() local
877 total = pReq->m_pHeader->m_reqBodyLen - pReq->m_reqBodyRead; in LSAPI_ReadReqBody_r()
879 if ( total <= 0 ) { in LSAPI_ReadReqBody_r()
882 if ( total < bufLen ) { in LSAPI_ReadReqBody_r()
883 bufLen = total; in LSAPI_ReadReqBody_r()
886 total = 0; in LSAPI_ReadReqBody_r()
894 total += len; in LSAPI_ReadReqBody_r()
901 total += len; in LSAPI_ReadReqBody_r()
906 if ( !total) { in LSAPI_ReadReqBody_r()
913 pReq->m_reqBodyRead += total; in LSAPI_ReadReqBody_r()
914 return total; in LSAPI_ReadReqBody_r()