Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/modules/websockets/
DWebSocketHandshake.cpp417 const char* space2 = 0; in readStatusLine() local
425 else if (!space2) in readStatusLine()
426 space2 = p; in readStatusLine()
453 if (!space1 || !space2) { in readStatusLine()
458 String statusCodeString(space1 + 1, space2 - space1 - 1); in readStatusLine()
472 statusText = String(space2 + 1, end - space2 - 3); // Exclude "\r\n". in readStatusLine()
/external/chromium_org/third_party/WebKit/Source/platform/network/
DHTTPParsers.cpp556 const char* space2 = 0; in parseHTTPRequestLine() local
564 else if (!space2) in parseHTTPRequestLine()
565 space2 = p; in parseHTTPRequestLine()
578 if (!space1 || !space2) { in parseHTTPRequestLine()
594 url = String(space1 + 1, space2 - space1 - 1); // For length subtract 1 for space. in parseHTTPRequestLine()
597 …String httpVersionString(space2 + 1, end - space2 - 3); // For length subtract 1 for space, and 2 … in parseHTTPRequestLine()