HomeSort by relevance Sort by last modified time
    Searched defs:bodyLength (Results 1 - 15 of 15) 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;
  /libcore/support/src/test/java/libcore/tlswire/handshake/
HandshakeMessage.java 49 int bodyLength = IoUtils.readUnsignedInt24(in);
50 result.body = new byte[bodyLength];
  /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/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/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 391 int bodyLength = -1;
395 bodyLength = mPrivateOutput.size();
396 orginalBodyLength = bodyLength;
428 if (bodyLength > 0) {
467 if (bodyLength > 0) {
473 if (bodyLength > (mMaxPacketLength - headerArray.length - 6)) {
474 bodyLength = mMaxPacketLength - headerArray.length - 6;
477 byte[] body = mPrivateOutput.readBytes(bodyLength);
487 bodyLength += 3;
488 out.write((byte)(bodyLength >> 8))
    [all...]
  /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);
  /prebuilts/sdk/org.apache.http.legacy/
org.apache.http.legacy.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.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/offline-m2/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 

Completed in 289 milliseconds