/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;
|
/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 | 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/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 | 466 int bodyLength = mBody.length(); 467 if (bodyLength > 0) { 473 "http://localhost:8080/test1", "POST", null, testEventHandler, bodyProvider, bodyLength);
|
/packages/apps/UnifiedEmail/src/com/android/mail/compose/ |
ComposeActivity.java | [all...] |
/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 | |
/external/robolectric/v3/runtime/ |
android-all-4.4_r1-robolectric-1.jar | |
android-all-5.0.0_r2-robolectric-1.jar | |
android-all-5.1.1_r9-robolectric-1.jar | |