Searched refs:kBufSize (Results 1 – 3 of 3) sorted by relevance
/sdk/emulator/qtools/ |
D | decoder.h | 18 static const int kBufSize = 4096; 25 uint8_t buf_[kBufSize];
|
D | decoder.cpp | 123 int rval = fread(buf_, 1, kBufSize, fstream_); in Open() 124 if (rval != kBufSize) { in Open() 142 if (end_ - next_ < kDecodingSpace && end_ == &buf_[kBufSize]) { in FillBuffer() 150 int nbytes = kBufSize - len; in FillBuffer()
|
D | trace_reader.cpp | 846 static const int kBufSize = 4096; in ParseDexList() local 847 char buf[kBufSize]; in ParseDexList() 848 char current_file[kBufSize]; in ParseDexList() 885 while (fgets(buf, kBufSize, fstream)) { in ParseDexList() 901 while (fgets(buf, kBufSize, fstream)) { in ParseDexList() 937 while (fgets(buf, kBufSize, fstream)) { in ParseDexList() 964 char clazz[kBufSize], method[kBufSize], sig[kBufSize], file[kBufSize]; in ParseDexList()
|