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

  /external/chromium/net/base/
upload_data_stream.h 21 IOBuffer* buf() const { return buf_; }
43 scoped_refptr<IOBuffer> buf_; member in class:net::UploadDataStream
upload_data_stream.cc 15 buf_(new IOBuffer(kBufSize)),
34 memmove(buf_->data(), buf_->data() + num_bytes, buf_len_);
57 memcpy(buf_->data() + buf_len_, &d[next_element_offset_], bytes_copied);
94 (rv = next_element_stream_.Read(buf_->data() + buf_len_,
file_stream_posix.cc 84 char* const buf_; member in class:net::__anon2359::BackgroundReadTask
94 : file_(file), buf_(buf), buf_len_(buf_len), callback_(callback) {}
99 int result = ReadFile(file_, buf_, buf_len_);
115 const char* const buf_; member in class:net::__anon2359::BackgroundWriteTask
125 : file_(file), buf_(buf), buf_len_(buf_len), callback_(callback) {}
130 int result = WriteFile(file_, buf_, buf_len_);
  /dalvik/vm/hprof/
HprofOutput.c 26 unsigned char *buf_ = (unsigned char *)(buf); \
29 buf_[offset_ + 0] = (unsigned char)(value_ >> 8); \
30 buf_[offset_ + 1] = (unsigned char)(value_ ); \
35 unsigned char *buf_ = (unsigned char *)(buf); \
38 buf_[offset_ + 0] = (unsigned char)(value_ >> 24); \
39 buf_[offset_ + 1] = (unsigned char)(value_ >> 16); \
40 buf_[offset_ + 2] = (unsigned char)(value_ >> 8); \
41 buf_[offset_ + 3] = (unsigned char)(value_ ); \
46 unsigned char *buf_ = (unsigned char *)(buf); \
49 buf_[offset_ + 0] = (unsigned char)(value_ >> 56);
    [all...]
  /packages/inputmethods/PinyinIME/jni/share/
dictlist.cpp 32 buf_ = NULL;
52 buf_ = static_cast<char16*>(malloc(buf_size * sizeof(char16)));
53 if (NULL == buf_)
72 if (NULL != buf_)
73 free(buf_);
74 buf_ = NULL;
93 if (NULL != buf_)
94 free(buf_);
181 utf16_strncpy(buf_, lemma_arr[0].hanzi_str,
189 utf16_strncpy(buf_ + current_pos, lemma_arr[i].hanzi_str
    [all...]
  /external/chromium/base/
lazy_instance.h 98 Type* instance = reinterpret_cast<Type*>(&buf_);
116 int8 buf_[sizeof(Type)]; // Preallocate the space for the Type instance. member in class:base::LazyInstance
  /sdk/emulator/qtools/
decoder.h 25 uint8_t buf_[kBufSize]; member in class:Decoder
decoder.cpp 123 int rval = fread(buf_, 1, kBufSize, fstream_);
134 next_ = buf_;
135 end_ = buf_ + rval;
142 if (end_ - next_ < kDecodingSpace && end_ == &buf_[kBufSize]) {
147 memcpy(buf_, next_, len);
151 int rval = fread(buf_ + len, 1, nbytes, fstream_);
162 end_ = &buf_[len + rval];
163 next_ = buf_;
187 // the array "buf_" and return the decoded value as a 64-bit integer.
  /external/chromium/base/third_party/symbolize/
symbolize.cc 385 buf_(buf), buf_len_(buf_len), bol_(buf), eol_(buf), eod_(buf) {
395 const ssize_t num_bytes = ReadPersistent(fd_, buf_, buf_len_);
399 eod_ = buf_ + num_bytes;
400 bol_ = buf_;
407 memmove(buf_, bol_, incomplete_line_length);
409 char * const append_pos = buf_ + incomplete_line_length;
417 bol_ = buf_;
450 return buf_ == eod_;
458 char * const buf_; member in class:__anon2284::LineReader
462 const char *eod_; // End of data in "buf_"
    [all...]
  /external/chromium/net/proxy/
proxy_script_fetcher.cc 124 scoped_refptr<net::IOBuffer> buf_; member in class:net::ProxyScriptFetcherImpl
152 buf_(new net::IOBuffer(kBufSize)),
278 result_bytes_->append(buf_->data(), num_bytes);
298 if (request->Read(buf_, kBufSize, &num_bytes)) {
  /packages/inputmethods/PinyinIME/jni/include/
dictlist.h 41 char16 *buf_; member in class:ime_pinyin::DictList
  /external/chromium/net/disk_cache/
file_posix.cc 34 : io_completed_(true, false), callback_(callback), file_(file), buf_(buf),
85 const void* buf_; member in class:__anon2419::BackgroundIO
152 if (file_->Read(const_cast<void*>(buf_), buf_len_, offset_)) {
171 bool rv = file_->Write(buf_, buf_len_, offset_);
174 delete[] reinterpret_cast<const char*>(buf_);
entry_impl.cc 32 : entry_(entry), callback_(callback), buf_(buffer), start_(Time::Now()) {
43 scoped_refptr<net::IOBuffer> buf_; member in class:__anon2415::SyncCallback
61 buf_ = NULL;
  /external/v8/src/ia32/
assembler-ia32-inl.h 282 buf_[0] = mod << 6 | rm.code();
292 buf_[1] = scale << 6 | index.code() << 3 | base.code();
299 *reinterpret_cast<int8_t*>(&buf_[len_++]) = disp;
305 int32_t* p = reinterpret_cast<int32_t*>(&buf_[len_]);
assembler-ia32.cc 265 return ((buf_[0] & 0xF8) == 0xC0) // addressing mode is register only.
266 && ((buf_[0] & 0x07) == reg.code()); // register codes match.
    [all...]
assembler-ia32.h 281 byte buf_[6]; member in class:v8::internal::BASE_EMBEDDED
282 // The number of bytes in buf_.
  /external/v8/src/x64/
assembler-x64-inl.h 317 buf_[0] = mod << 6 | rm_reg.low_bits();
329 buf_[1] = scale << 6 | index.low_bits() << 3 | base.low_bits();
337 int8_t* p = reinterpret_cast<int8_t*>(&buf_[len_]);
344 int32_t* p = reinterpret_cast<int32_t*>(&buf_[len_]);
assembler-x64.cc 436 ASSERT((adr.buf_[0] & 0x38) == 0);
437 pc_[0] = adr.buf_[0] | code << 3;
440 for (unsigned i = 1; i < length; i++) pc_[i] = adr.buf_[i];
    [all...]
assembler-x64.h 305 byte buf_[10]; member in class:v8::internal::BASE_EMBEDDED
306 // The number of bytes in buf_.
    [all...]
  /external/chromium/net/url_request/
url_request_unittest.h 200 buf_(new net::IOBuffer(kBufferSize)) {
230 if (request->Read(buf_, kBufferSize, &bytes_read))
252 data_received_.append(buf_->data(), bytes_read);
258 while (request->Read(buf_, kBufferSize, &bytes_read)) {
260 data_received_.append(buf_->data(), bytes_read);
348 scoped_refptr<net::IOBuffer> buf_; member in class:TestDelegate
  /external/openssl/ssl/
s3_pkt.c 595 int ssl3_write_bytes(SSL *s, int type, const void *buf_, int len)
597 const unsigned char *buf=buf_;
    [all...]
d1_pkt.c     [all...]
ssl.h 404 int (*ssl_write_bytes)(SSL *s, int type, const void *buf_, int len);
    [all...]
  /external/openssl/include/openssl/
ssl.h 404 int (*ssl_write_bytes)(SSL *s, int type, const void *buf_, int len);
    [all...]

Completed in 2269 milliseconds