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

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERSequence.java 15 private int bodyLength = -1;
57 if (bodyLength < 0)
68 bodyLength = length;
71 return bodyLength;
DERSet.java 19 private int bodyLength = -1;
68 if (bodyLength < 0)
79 bodyLength = length;
82 return bodyLength;
DLSequence.java 12 private int bodyLength = -1;
54 if (bodyLength < 0)
65 bodyLength = length;
68 return bodyLength;
DLSet.java 57 private int bodyLength = -1;
96 if (bodyLength < 0)
107 bodyLength = length;
110 return bodyLength;
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/
DERSequence.java 18 private int bodyLength = -1;
64 if (bodyLength < 0)
75 bodyLength = length;
78 return bodyLength;
DERSet.java 21 private int bodyLength = -1;
71 if (bodyLength < 0)
82 bodyLength = length;
85 return bodyLength;
DLSequence.java 14 private int bodyLength = -1;
56 if (bodyLength < 0)
67 bodyLength = length;
70 return bodyLength;
DLSet.java 59 private int bodyLength = -1;
98 if (bodyLength < 0)
109 bodyLength = length;
112 return bodyLength;
  /external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/tlswire/handshake/
HandshakeMessage.java 48 int bodyLength = IoUtils.readUnsignedInt24(in);
49 result.body = new byte[bodyLength];
  /external/conscrypt/testing/src/main/java/org/conscrypt/tlswire/handshake/
HandshakeMessage.java 46 int bodyLength = IoUtils.readUnsignedInt24(in);
47 result.body = new byte[bodyLength];
  /external/apache-http/android/src/android/net/http/
RequestQueue.java 287 * @param bodyLength length of body, must be 0 if bodyProvider is null
292 InputStream bodyProvider, int bodyLength) {
295 bodyProvider, bodyLength);
307 * @param bodyLength length of body, must be 0 if bodyProvider is null
312 InputStream bodyProvider, int bodyLength) {
327 bodyLength, eventHandler, headers);
337 this, url, uri, method, headers, bodyProvider, bodyLength,
366 int bodyLength) {
374 bodyProvider, bodyLength, eventHandler, headers);
385 bodyLength, req, conn)
    [all...]
Request.java 101 * @param bodyLength length of body, must be 0 if bodyProvider is null
107 InputStream bodyProvider, int bodyLength,
115 mBodyLength = bodyLength;
126 setBodyProvider(bodyProvider, bodyLength);
489 private void setBodyProvider(InputStream bodyProvider, int bodyLength) {
498 new InputStreamEntity(bodyProvider, bodyLength));
RequestHandle.java 60 InputStream bodyProvider, int bodyLength, Request request) {
67 mBodyLength = bodyLength;
84 InputStream bodyProvider, int bodyLength, Request request,
86 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/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);

Completed in 226 milliseconds