OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bodyLength
(Results
1 - 9
of
9
) sorted by null
/frameworks/base/obex/javax/obex/
ClientOperation.java
400
int
bodyLength
= -1;
403
bodyLength
= mPrivateOutput.size();
453
if (
bodyLength
> 0) {
462
if (
bodyLength
> 0) {
468
if (
bodyLength
> (mMaxPacketSize - headerArray.length - 6)) {
471
bodyLength
= mMaxPacketSize - headerArray.length - 6;
474
byte[] body = mPrivateOutput.readBytes(
bodyLength
);
489
bodyLength
+= 3;
490
out.write((byte)(
bodyLength
>> 8));
491
out.write((byte)
bodyLength
);
[
all
...]
ServerOperation.java
295
int
bodyLength
= -1;
299
bodyLength
= mPrivateOutput.size();
300
orginalBodyLength =
bodyLength
;
332
if (
bodyLength
> 0) {
349
if (
bodyLength
> 0) {
355
if (
bodyLength
> (mMaxPacketLength - headerArray.length - 6)) {
356
bodyLength
= mMaxPacketLength - headerArray.length - 6;
359
byte[] body = mPrivateOutput.readBytes(
bodyLength
);
372
bodyLength
+= 3;
373
out.write((byte)(
bodyLength
>> 8))
[
all
...]
/frameworks/base/core/java/android/net/http/
RequestQueue.java
294
* @param
bodyLength
length of body, must be 0 if bodyProvider is null
299
InputStream bodyProvider, int
bodyLength
) {
302
bodyProvider,
bodyLength
);
314
* @param
bodyLength
length of body, must be 0 if bodyProvider is null
319
InputStream bodyProvider, int
bodyLength
) {
334
bodyLength
, eventHandler, headers);
344
this, url, uri, method, headers, bodyProvider,
bodyLength
,
373
int
bodyLength
) {
381
bodyProvider,
bodyLength
, eventHandler, headers);
392
bodyLength
, req, conn)
[
all
...]
Request.java
106
* @param
bodyLength
length of body, must be 0 if bodyProvider is null
112
InputStream bodyProvider, int
bodyLength
,
120
mBodyLength =
bodyLength
;
131
setBodyProvider(bodyProvider,
bodyLength
);
494
private void setBodyProvider(InputStream bodyProvider, int
bodyLength
) {
503
new InputStreamEntity(bodyProvider,
bodyLength
));
RequestHandle.java
64
InputStream bodyProvider, int
bodyLength
, Request request) {
71
mBodyLength =
bodyLength
;
88
InputStream bodyProvider, int
bodyLength
, Request request,
90
this(requestQueue, url, uri, method, headers, bodyProvider,
bodyLength
,
/frameworks/base/core/java/android/webkit/
Network.java
228
int
bodyLength
= 0;
230
bodyLength
= postData.length;
238
method, headers, loader, bodyProvider,
bodyLength
);
244
headers, loader, bodyProvider,
bodyLength
);
/external/nist-sip/java/gov/nist/javax/sip/parser/
StringMsgParser.java
216
int
bodyLength
= msgBuffer.length - i;
218
byte[] body = new byte[
bodyLength
];
219
System.arraycopy(msgBuffer, i, body, 0,
bodyLength
);
/frameworks/base/tests/CoreTests/android/core/
RequestAPITest.java
466
int
bodyLength
= mBody.length();
467
if (
bodyLength
> 0) {
473
"http://localhost:8080/test1", "POST", null, testEventHandler, bodyProvider,
bodyLength
);
/packages/apps/Mms/src/com/android/mms/ui/
SearchActivity.java
108
int
bodyLength
= fullTextLower.length();
138
int newend = Math.min(
bodyLength
, startPos + searchStringLength + offset);
160
end ==
bodyLength
? "" : sEllipsis);
Completed in 361 milliseconds