Home | History | Annotate | Download | only in Misc

Lines Matching refs:eol

281     // According to the HTTP specification EOL is defined as
288 // It returns NULL if EOL is not found or it will return
316 const UInt8 *eol;
319 while ((eol = _findEOL(bytes, length))) {
321 SInt32 lineLength = eol - bytes;
324 bytes = eol + 1;
325 if (('\r' == *eol) && ('\n' == *bytes)) {
356 for (colon = line; *colon != ':' && colon != eol; colon ++) {
359 if (colon == eol) {
368 for (colon++; colon != eol; colon++) {
373 if (colon == eol) {
378 value = (NSString *)CFMakeCollectable(CFStringCreateWithBytes(NULL, colon, eol-colon, kCFStringEncodingISOLatin1, FALSE));