HomeSort by relevance Sort by last modified time
    Searched defs:consumed (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/chromium_org/cloud_print/gcp20/prototype/
dns_packet_parser.cc 25 size_t consumed = ReadName(&result.qname); local
26 if (!consumed)
28 net::BigEndianReader reader(packet_ + GetOffset() + consumed,
29 length_ - (GetOffset() + consumed));
  /external/chromium_org/third_party/WebKit/Source/core/editing/
HTMLInterchange.cpp 49 unsigned consumed = 0; local
51 consumed = 1;
58 consumed = count;
93 i += consumed;
  /libcore/crypto/src/main/java/org/conscrypt/
SSLBufferedInput.java 35 private int consumed = 0; field in class:SSLBufferedInput
46 consumed = 0;
57 * Returns the number of consumed bytes.
59 protected int consumed() { method in class:SSLBufferedInput
60 return consumed;
72 consumed ++;
SSLEngineDataStream.java 26 * it provides the info about amount of consumed data.
38 private int consumed; field in class:SSLEngineDataStream
46 this.consumed = 0;
71 consumed += len;
87 protected int consumed() { method in class:SSLEngineDataStream
88 return consumed;
  /external/jmonkeyengine/engine/src/core/com/jme3/input/event/
InputEvent.java 45 protected boolean consumed = false; field in class:InputEvent
67 * Returns true if the input event has been consumed, meaning it is no longer valid
70 * @return true if the input event has been consumed
73 return consumed;
77 * Call to mark this input event as consumed, meaning it is no longer valid
81 this.consumed = true;
  /frameworks/wilhelm/src/android/
android_AudioToCbRenderer.cpp 64 size_t consumed = 0; local
67 consumed = mDecodeCbf(
72 offset += consumed;
73 //SL_LOGV("consumed=%u, offset=%u, full=%u", consumed, offset, full);
74 if (consumed == 0) {
75 // decoded data is not being consumed, skip this buffer
android_StreamPlayer.cpp 141 // (either because there was a command with no data, or all the data has been consumed)
210 // 2/ keep track of how much has been consumed
218 size_t consumed = oldFront->mDataSize - oldFront->mDataSizeConsumed; local
219 //SL_LOGD("consuming rest of buffer: enqueueing=%u", consumed);
232 if (consumed > 0) {
234 memcpy(bufferLoc, pSrc, consumed);
235 // 2/ keep track of how much has been consumed
238 receivedBuffer_l(bufferId, consumed);
242 // data has been consumed, and the buffer queue state has been updated
257 // here a buffer is only dequeued when fully consumed
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
miniopt.h 43 int consumed; /* number of argv entries cosumed in member in struct:miniopt
  /external/chromium_org/third_party/libxml/src/
testReader.c 42 static int consumed = 0; variable
49 printf("\t --consumed: count the number of bytes consumed\n");
92 if (consumed)
93 printf("%ld bytes consumed by parser\n", xmlTextReaderByteConsumed(reader));
120 else if ((!strcmp(argv[i], "-consumed")) || (!strcmp(argv[i], "--consumed")))
121 consumed++;
  /external/skia/dm/
DMWriteTask.cpp 14 // Returns the total number of characters consumed.
18 int consumed = 0; local
22 consumed += out->back().size() + 1; // Add one for the _.
24 return consumed;
  /external/apache-http/src/org/apache/http/entity/
InputStreamEntity.java 53 private boolean consumed = false; field in class:InputStreamEntity
100 this.consumed = true;
105 return !this.consumed;
110 this.consumed = true;
  /external/chromium_org/media/base/
seekable_buffer.cc 134 int consumed = std::min(size - taken, current_buffer_offset_); local
137 current_buffer_offset_ -= consumed;
141 taken += consumed;
144 // consumed in the current buffer.
145 forward_bytes_ += consumed;
146 backward_bytes_ -= consumed;
149 // The current buffer pointed by current iterator has been consumed. Move
226 // The buffer has been consumed.
  /external/chromium_org/net/quic/
iovector_test.cc 136 size_t consumed = iov.Consume(tmp); local
137 ASSERT_EQ(tmp, consumed);
145 consumed = iov.Consume(str_len - tmp);
146 ASSERT_EQ(str_len - tmp, consumed);
173 size_t consumed = iov.Consume(length - half_len); local
174 ASSERT_EQ(length - half_len, consumed);
183 consumed = iov.Consume(half_len);
184 ASSERT_EQ(half_len, consumed);
201 int consumed = 0; local
202 consumed = iov.Consume(length)
    [all...]