HomeSort by relevance Sort by last modified time
    Searched refs:BytesRead (Results 1 - 17 of 17) sorted by null

  /external/llvm/include/llvm/Support/
StreamableMemoryObject.h 140 mutable size_t BytesRead; // Bytes read from stream
146 // (i.e. BytesRead > Pos). Return true if Pos can be read.
152 while (Pos >= BytesRead) {
153 Bytes.resize(BytesRead + BytesSkipped + kChunkSize);
154 size_t bytes = Streamer->GetBytes(&Bytes[BytesRead + BytesSkipped],
156 BytesRead += bytes;
158 assert((!ObjectSize || BytesRead >= Pos) &&
160 if (BytesRead <= Pos) { // reached EOF/ran out of bytes
161 ObjectSize = BytesRead;
  /external/chromium_org/extensions/browser/
content_verify_job.h 63 void BytesRead(int count, const char* data);
65 // Call once when finished adding bytes via BytesRead.
70 // These methods will be called inside BytesRead/DoneReading respectively.
73 virtual FailureReason BytesRead(const std::string& extension_id,
99 // Indicates whether the caller has told us they are done calling BytesRead.
content_verify_job.cc 51 void ContentVerifyJob::BytesRead(int count, const char* data) {
57 g_test_delegate->BytesRead(hash_reader_->extension_id(), count, data);
145 BytesRead(tmp.size(), string_as_array(&tmp));
extension_protocols.cc 244 verify_job_->BytesRead(result, buffer->data());
  /external/llvm/lib/Support/
StreamableMemoryObject.cpp 96 size_t pos = BytesRead + kChunkSize;
117 if (BytesRead < s) return true;
119 BytesRead -= s;
136 Bytes(kChunkSize), Streamer(streamer), BytesRead(0), BytesSkipped(0),
138 BytesRead = streamer->GetBytes(&Bytes[0], kChunkSize);
Path.cpp 860 int BytesRead = 0, BytesWritten = 0;
862 BytesRead = read(ReadFD, Buf, BufSize);
863 if (BytesRead <= 0)
865 while (BytesRead) {
866 BytesWritten = write(WriteFD, Buf, BytesRead);
869 BytesRead -= BytesWritten;
878 if (BytesRead < 0 || BytesWritten < 0)
  /external/chromium_org/chrome/browser/extensions/
content_verifier_browsertest.cc 63 virtual ContentVerifyJob::FailureReason BytesRead(const ExtensionId& id,
user_script_master.cc 191 job->BytesRead(content.size(), content.data());
  /external/libnfc-nxp/src/
phFriNfc_DesfireMap.c 627 uint32_t BytesRead = 0;
855 BytesRead = phFriNfc_Desfire_HGetLeBytes(NdefMap);
859 if ( (NdefMap->DesfireCapContainer.SkipNlenBytesFlag == 1) && ((BytesRead == 1) || (BytesRead == 2 )))
861 BytesRead += PH_FRINFC_NDEFMAP_DESF_NLEN_SIZE_IN_BYTES; /* to take care of first 2 len bytes*/
870 if ( ( BytesRead == SendRecLen ) &&
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dbgeng.h     [all...]
ntdddisk.h 350 LARGE_INTEGER BytesRead;
winioctl.h 777 LARGE_INTEGER BytesRead;
    [all...]
  /external/chromium_org/chrome/browser/task_manager/
task_manager.h 450 void BytesRead(BytesReadParam param);
task_manager.cc     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
portcls.h     [all...]
ndis.h     [all...]
wmidata.h     [all...]

Completed in 1041 milliseconds