HomeSort by relevance Sort by last modified time
    Searched full:ischunked (Results 1 - 25 of 39) sorted by null

1 2

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/
HttpEntityStub.java 18 @Override public boolean isChunked() {
  /frameworks/base/core/jni/
android_nfc.h 50 uint8_t IsChunked[ ],
  /external/libnfc-nxp/src/
phFriNfc_NdefRecord.c 63 * \param[in] IsChunked This boolean tells the user that the record of a certain position within
90 uint8_t IsChunked[],
114 /* The number of caller-provided array positions for the array IsChunked
116 if NumberOfRawRecords > 0, the array IsChunked cannot be null */
117 if(IsChunked == NULL)
245 /* in the array IsChunked, to write */
249 IsChunked [Count] = PHFRINFCNDEFRECORD_CHUNKBIT_SET;
253 IsChunked [Count] = PHFRINFCNDEFRECORD_CHUNKBIT_SET_ZERO;
276 /* If NoOfRecordsReturnFlag = 0, that means the array IsChunked
278 of IsChunked if NoOfRecordsReturnFlag = 1. *
    [all...]
phFriNfc_NdefReg.c 105 NdefReg->IsChunked = ChunkedRecordsarray;
413 NdefReg->IsChunked,
426 and NdefReg->IsChunked, to write NdefReg->NumberOfRecords
438 NdefReg->IsChunked,
571 NdefReg->CbParam->Chunked[count] = NdefReg->IsChunked[NdefReg->RecordIndex];
phLibNfc_Internal.h 175 uint8_t IsChunked[MAX_NO_OF_RECORDS];
phFriNfc_NdefRecord.h 255 * \param[in,out] IsChunked This array of booleans indicates whether a record has the
260 * \param[in,out] NumberOfRawRecords Length of the RawRecords array and IsChunked list.
316 uint8_t IsChunked[ ],
phFriNfc_NdefReg.h 247 uint8_t *IsChunked; /**< \internal Array of chunked flags */
252 and IsChunked arrays */
phLibNfc_ndef_raw.c     [all...]
  /external/apache-http/src/org/apache/http/entity/
HttpEntityWrapper.java 78 public boolean isChunked() {
79 return wrappedEntity.isChunked();
AbstractHttpEntity.java 70 * Returned by {@link #isChunked isChunked},
116 public boolean isChunked() {
BufferedHttpEntity.java 89 public boolean isChunked() {
90 return (buffer == null) && wrappedEntity.isChunked();
  /external/apache-http/src/org/apache/commons/codec/binary/
Base64.java 228 * @param isChunked if isChunked is true this encoder will chunk
232 public static byte[] encodeBase64(byte[] binaryData, boolean isChunked) {
251 if (isChunked) {
300 if (isChunked) {
351 if (isChunked) {
  /external/apache-http/src/org/apache/http/protocol/
RequestContent.java 79 if (entity.isChunked() || entity.getContentLength() < 0) {
ResponseConnControl.java 88 (!entity.isChunked() || ver.lessEquals(HttpVersion.HTTP_1_0))) {
ResponseContent.java 76 if (entity.isChunked() && !ver.lessEquals(HttpVersion.HTTP_1_0)) {
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpTransport.java 62 boolean chunked = httpEngine.requestHeaders.isChunked();
205 if (httpEngine.responseHeaders.isChunked()) {
RequestHeaders.java 120 public boolean isChunked() {
ResponseHeaders.java 202 public boolean isChunked() {
HttpEngine.java 495 if (responseHeaders.getContentLength() != -1 || responseHeaders.isChunked()) {
  /external/apache-http/src/org/apache/http/impl/
DefaultConnectionReuseStrategy.java 102 if (!entity.isChunked() ||
  /external/apache-http/src/org/apache/http/
HttpEntity.java 96 boolean isChunked();
  /packages/apps/Mms/src/com/android/mms/transaction/
HttpUtils.java 225 if (entity.isChunked()) {
  /frameworks/base/core/java/android/net/http/
Connection.java 474 if (!entity.isChunked() || ver.lessEquals(HttpVersion.HTTP_1_0)) {
  /prebuilts/devtools/tools/lib/
httpmime-4.1.jar 
  /prebuilts/tools/common/http-client/
httpmime-4.1.1.jar 

Completed in 512 milliseconds

1 2