HomeSort by relevance Sort by last modified time
    Searched refs:bodyLength (Results 1 - 19 of 19) sorted by null

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERSequence.java 9 private int bodyLength = -1;
48 if (bodyLength < 0)
59 bodyLength = length;
62 return bodyLength;
DERSet.java 12 private int bodyLength = -1;
58 if (bodyLength < 0)
69 bodyLength = length;
72 return bodyLength;
DLSequence.java 12 private int bodyLength = -1;
51 if (bodyLength < 0)
62 bodyLength = length;
65 return bodyLength;
DLSet.java 57 private int bodyLength = -1;
96 if (bodyLength < 0)
107 bodyLength = length;
110 return bodyLength;
  /frameworks/base/obex/javax/obex/
ClientOperation.java 420 int bodyLength = -1;
423 bodyLength = mPrivateOutput.size();
473 if (bodyLength > 0) {
482 if (bodyLength > 0) {
488 if (bodyLength > (mMaxPacketSize - headerArray.length - 6)) {
491 bodyLength = mMaxPacketSize - headerArray.length - 6;
494 byte[] body = mPrivateOutput.readBytes(bodyLength);
509 bodyLength += 3;
510 out.write((byte)(bodyLength >> 8));
511 out.write((byte)bodyLength);
    [all...]
ServerOperation.java 297 int bodyLength = -1;
301 bodyLength = mPrivateOutput.size();
302 orginalBodyLength = bodyLength;
334 if (bodyLength > 0) {
351 if (bodyLength > 0) {
357 if (bodyLength > (mMaxPacketLength - headerArray.length - 6)) {
358 bodyLength = mMaxPacketLength - headerArray.length - 6;
361 byte[] body = mPrivateOutput.readBytes(bodyLength);
371 bodyLength += 3;
372 out.write((byte)(bodyLength >> 8))
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
UsimDataDownloadHandler.java 122 int bodyLength = getEnvelopeBodyLength(scAddressLength, tpduLength);
126 int totalLength = bodyLength + 1 + (bodyLength > 127 ? 2 : 1);
133 if (bodyLength > 127) {
136 envelope[index++] = (byte) bodyLength;
  /frameworks/base/core/java/android/net/http/
RequestQueue.java 290 * @param bodyLength length of body, must be 0 if bodyProvider is null
295 InputStream bodyProvider, int bodyLength) {
298 bodyProvider, bodyLength);
310 * @param bodyLength length of body, must be 0 if bodyProvider is null
315 InputStream bodyProvider, int bodyLength) {
330 bodyLength, eventHandler, headers);
340 this, url, uri, method, headers, bodyProvider, bodyLength,
369 int bodyLength) {
377 bodyProvider, bodyLength, eventHandler, headers);
388 bodyLength, req, conn)
    [all...]
Request.java 103 * @param bodyLength length of body, must be 0 if bodyProvider is null
109 InputStream bodyProvider, int bodyLength,
117 mBodyLength = bodyLength;
128 setBodyProvider(bodyProvider, bodyLength);
491 private void setBodyProvider(InputStream bodyProvider, int bodyLength) {
500 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,
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
MockResponse.java 164 public MockResponse setBody(InputStream bodyStream, long bodyLength) {
165 setHeader("Content-Length", bodyLength);
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockResponse.java 151 public MockResponse setBody(InputStream bodyStream, long bodyLength) {
152 setHeader("Content-Length", 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 105 int bodyLength = fullTextLower.length();
136 int newend = Math.min(bodyLength, startPos + searchStringLength + offset);
158 end == bodyLength ? "" : sEllipsis);
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
ComposeActivity.java     [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 

Completed in 2616 milliseconds