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

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERSequence.java 9 private int bodyLength = -1;
51 if (bodyLength < 0)
62 bodyLength = length;
65 return bodyLength;
DERSet.java 12 private int bodyLength = -1;
61 if (bodyLength < 0)
72 bodyLength = length;
75 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/conscrypt/testing/src/main/java/libcore/tlswire/handshake/
HandshakeMessage.java 46 int bodyLength = IoUtils.readUnsignedInt24(in);
47 result.body = new byte[bodyLength];
  /libcore/support/src/test/java/libcore/tlswire/handshake/
HandshakeMessage.java 49 int bodyLength = IoUtils.readUnsignedInt24(in);
50 result.body = new byte[bodyLength];
  /frameworks/base/obex/javax/obex/
ClientOperation.java 444 int bodyLength = -1;
447 bodyLength = mPrivateOutput.size();
503 if (bodyLength > 0) {
517 if (bodyLength > 0) {
523 if (bodyLength > (mMaxPacketSize - headerArray.length - 6)) {
526 bodyLength = mMaxPacketSize - headerArray.length - 6;
529 byte[] body = mPrivateOutput.readBytes(bodyLength);
544 bodyLength += 3;
545 out.write((byte)(bodyLength >> 8));
546 out.write((byte)bodyLength);
    [all...]
ServerOperation.java 401 int bodyLength = -1;
405 bodyLength = mPrivateOutput.size();
406 orginalBodyLength = bodyLength;
438 if (bodyLength > 0) {
477 if (bodyLength > 0) {
483 if (bodyLength > (mMaxPacketLength - headerArray.length - 6)) {
484 bodyLength = mMaxPacketLength - headerArray.length - 6;
487 byte[] body = mPrivateOutput.readBytes(bodyLength);
497 bodyLength += 3;
498 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;
  /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);
  /frameworks/base/tests/CoreTests/android/core/
RequestAPITest.java 465 int bodyLength = mBody.length();
466 if (bodyLength > 0) {
472 "http://localhost:8080/test1", "POST", null, testEventHandler, bodyProvider, bodyLength);
  /frameworks/base/services/core/jni/
com_android_server_hdmi_HdmiCecController.cpp 368 size_t bodyLength = MIN(static_cast<size_t>(len),
370 message.body.resize(bodyLength);
371 for (size_t i = 0; i < bodyLength; ++i) {
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
ComposeActivity.java     [all...]
  /external/annotation-tools/annotation-file-utilities/src/annotator/find/
TreeFinder.java     [all...]
  /prebuilts/sdk/org.apache.http.legacy/
org.apache.http.legacy.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
bcprov-jdk15on-1.52.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
bcprov-jdk15on-1.52.jar 
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.50/
bcprov-jdk15on-1.50.jar 

Completed in 180 milliseconds

1 2