OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lineBuf
(Results
1 - 25
of
63
) sorted by null
1
2
3
/system/core/libcutils/
qtaguid.c
101
char
lineBuf
[CTRL_MAX_INPUT_LEN];
107
snprintf(
lineBuf
, sizeof(
lineBuf
), "t %d %" PRIu64 " %d", sockfd, kTag, uid);
111
res = write_ctrl(
lineBuf
);
121
char
lineBuf
[CTRL_MAX_INPUT_LEN];
126
snprintf(
lineBuf
, sizeof(
lineBuf
), "u %d", sockfd);
127
res = write_ctrl(
lineBuf
);
136
char
lineBuf
[CTRL_MAX_INPUT_LEN];
141
snprintf(
lineBuf
, sizeof(lineBuf), "s %d %d", counterSetNum, uid)
[
all
...]
sched_policy.c
149
char
lineBuf
[256];
157
while(fgets(
lineBuf
, sizeof(
lineBuf
) -1, fp)) {
158
char *next =
lineBuf
;
197
SLOGE("Bad cgroup data {%s}",
lineBuf
);
/external/apache-http/src/org/apache/http/impl/io/
HttpRequestParser.java
57
private final CharArrayBuffer
lineBuf
;
69
this.
lineBuf
= new CharArrayBuffer(128);
76
this.
lineBuf
.clear();
77
int i = sessionBuffer.readLine(this.
lineBuf
);
81
ParserCursor cursor = new ParserCursor(0, this.
lineBuf
.length());
82
RequestLine requestline = this.lineParser.parseRequestLine(this.
lineBuf
, cursor);
HttpResponseParser.java
57
private final CharArrayBuffer
lineBuf
;
69
this.
lineBuf
= new CharArrayBuffer(128);
76
this.
lineBuf
.clear();
77
int i = sessionBuffer.readLine(this.
lineBuf
);
82
ParserCursor cursor = new ParserCursor(0, this.
lineBuf
.length());
83
StatusLine statusline = lineParser.parseStatusLine(this.
lineBuf
, cursor);
AbstractMessageWriter.java
56
protected final CharArrayBuffer
lineBuf
;
67
this.
lineBuf
= new CharArrayBuffer(128);
85
(lineFormatter.formatHeader(this.
lineBuf
, header));
87
this.
lineBuf
.clear();
88
this.sessionBuffer.writeLine(this.
lineBuf
);
HttpRequestWriter.java
61
(this.
lineBuf
, ((HttpRequest) message).getRequestLine());
HttpResponseWriter.java
61
(this.
lineBuf
, ((HttpResponse) message).getStatusLine());
/external/apache-http/src/org/apache/http/impl/conn/
DefaultResponseParser.java
59
private final CharArrayBuffer
lineBuf
;
73
this.
lineBuf
= new CharArrayBuffer(128);
83
this.
lineBuf
.clear();
88
int i = sessionBuffer.readLine(this.
lineBuf
);
93
cursor = new ParserCursor(0, this.
lineBuf
.length());
94
if (lineParser.hasProtocolVersion(this.
lineBuf
, cursor)) {
105
StatusLine statusline = lineParser.parseStatusLine(this.
lineBuf
, cursor);
/external/guava/guava/src/com/google/common/io/
LineReader.java
45
private final LineBuffer
lineBuf
= new LineBuffer() {
80
lineBuf
.finish();
83
lineBuf
.add(buf, 0, read);
/external/icu/icu4c/source/test/intltest/
normconf.cpp
163
char
lineBuf
[BUF_SIZE];
180
T_FileStream_readLine(input,
lineBuf
, (int32_t)sizeof(
lineBuf
));
189
uprv_strcpy(
lineBuf
, moreCases[count]);
191
if (
lineBuf
[0] == 0 ||
lineBuf
[0] == '\n' ||
lineBuf
[0] == '\r') continue;
197
if (
lineBuf
[0] == '#') continue;
200
if (
lineBuf
[0] == '@') {
201
logln(
lineBuf
);
[
all
...]
/external/guava/guava-tests/test/com/google/common/io/
LineBufferTest.java
85
LineBuffer
lineBuf
= new LineBuffer() {
94
lineBuf
.add(chars, off, len);
97
lineBuf
.finish();
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.1/
httpcore-4.2.1.jar
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.3.1/
httpcore-4.3.1.jar
/external/robolectric/lib/main/
httpcore-4.0.1.jar
httpclient-4.0.3.jar
/prebuilts/devtools/tools/lib/
httpcore-4.1.jar
httpclient-4.1.1.jar
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.httpcomponents.httpcore_4.1.4.v201203221030.jar
/prebuilts/tools/common/http-client/
httpcore-4.1.jar
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.1/
httpcore-4.1.jar
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.apache.httpcomponents.httpcore_4.1.4.v201203221030.jar
/prebuilts/tools/common/offline-m2/org/apache/httpcomponents/httpcore/4.1/
httpcore-4.1.jar
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.1/
httpclient-4.2.1.jar
/prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
wagon-http-2.6-shaded.jar
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.3.2/
httpclient-4.3.2.jar
Completed in 440 milliseconds
1
2
3