HomeSort by relevance Sort by last modified time
    Searched refs:bodyLength (Results 1 - 17 of 17) 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 9 private int bodyLength = -1;
48 if (bodyLength < 0)
59 bodyLength = length;
62 return bodyLength;
DLSet.java 12 private int bodyLength = -1;
51 if (bodyLength < 0)
62 bodyLength = length;
65 return bodyLength;
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
MockStreamResponse.java 38 public MockStreamResponse setBody(InputStream body, long bodyLength) {
45 setHeader(CONTENT_LENGTH, bodyLength);
  /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/opt/telephony/src/java/com/android/internal/telephony/gsm/
UsimDataDownloadHandler.java 84 int bodyLength = getEnvelopeBodyLength(scAddressLength, tpduLength);
88 int totalLength = bodyLength + 1 + (bodyLength > 127 ? 2 : 1);
95 if (bodyLength > 127) {
98 envelope[index++] = (byte) bodyLength;
  /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,
  /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);
  /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 830 milliseconds