OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:space1
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/network/
HTTPParsers.cpp
555
const char*
space1
= 0;
local
562
if (!
space1
)
563
space1
= p;
578
if (!
space1
|| !space2) {
591
method = String(data,
space1
- data); // For length subtract 1 for space, but add 1 for data being the first character.
594
url = String(
space1
+ 1, space2 -
space1
- 1); // For length subtract 1 for space.
/frameworks/av/media/libstagefright/rtsp/
ARTSPConnection.cpp
640
ssize_t
space1
= response->mStatusLine.find(" ");
local
641
if (
space1
< 0) {
644
ssize_t space2 = response->mStatusLine.find(" ",
space1
+ 1);
651
if (!IsRTSPVersion(AString(response->mStatusLine, 0,
space1
))) {
663
response->mStatusLine,
space1
+ 1, space2 -
space1
- 1);
771
ssize_t
space1
= request->mStatusLine.find(" ");
local
772
CHECK_GE(
space1
, 0);
956
ssize_t
space1
= request.find(" ");
local
957
CHECK_GE(
space1
, 0)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketHandshake.cpp
416
const char*
space1
= 0;
local
423
if (!
space1
)
424
space1
= p;
453
if (!
space1
|| !space2) {
458
String statusCodeString(
space1
+ 1, space2 -
space1
- 1);
Completed in 211 milliseconds