Home
last modified time | relevance | path

Searched refs:space1 (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/websockets/
DWebSocketHandshake.cpp386 const char* space1 = 0; in readStatusLine() local
393 if (!space1) in readStatusLine()
394 space1 = p; in readStatusLine()
423 if (!space1 || !space2) { in readStatusLine()
428 String statusCodeString(space1 + 1, space2 - space1 - 1); in readStatusLine()
/external/chromium_org/third_party/WebKit/Source/platform/network/
DHTTPParsers.cpp555 const char* space1 = 0; in parseHTTPRequestLine() local
562 if (!space1) in parseHTTPRequestLine()
563 space1 = p; in parseHTTPRequestLine()
578 if (!space1 || !space2) { in parseHTTPRequestLine()
591 …method = String(data, space1 - data); // For length subtract 1 for space, but add 1 for data being… in parseHTTPRequestLine()
594 url = String(space1 + 1, space2 - space1 - 1); // For length subtract 1 for space. in parseHTTPRequestLine()