HomeSort by relevance Sort by last modified time
    Searched refs:buf_size (Results 201 - 225 of 446) sorted by null

1 2 3 4 5 6 7 891011>>

  /device/asus/flo/camera/QCamera2/stack/common/
mm_jpeg_interface.h 47 uint32_t buf_size; /* total size of buf (header + image) */ member in struct:__anon1756
  /device/lge/mako/camera/QCamera/stack/mm-jpeg-interface/inc/
mm_jpeg_interface.h 60 uint32_t buf_size; /* total size of buf (header + image) */ member in struct:__anon2167
  /external/chromium/chrome/browser/automation/
url_request_automation_job.cc 156 net::IOBuffer* buf, int buf_size, int* bytes_read) {
158 << " - read pending: " << buf_size;
164 pending_buf_size_ = buf_size;
167 message_filter_->Send(new AutomationMsg_RequestRead(tab_, id_, buf_size));
url_request_automation_job.h 80 virtual bool ReadRawData(net::IOBuffer* buf, int buf_size, int* bytes_read);
  /external/chromium/chrome/browser/prerender/
prerender_resource_handler.h 60 int* buf_size,
  /external/chromium/chrome/browser/renderer_host/
safe_browsing_resource_handler.h 58 virtual bool OnWillRead(int request_id, net::IOBuffer** buf, int* buf_size,
  /external/chromium/googleurl/src/
url_canon_etc.cc 243 const int buf_size = 6; local
244 char buf[buf_size];
245 WritePortInt(buf, buf_size, port_num);
250 for (int i = 0; i < buf_size && buf[i]; i++)
  /external/chromium_org/android_webview/browser/net/
android_stream_reader_url_request_job.h 81 int buf_size,
  /external/chromium_org/content/browser/download/
download_resource_handler.h 72 int* buf_size,
  /external/chromium_org/net/url_request/
url_request_ftp_job.cc 348 int buf_size,
350 DCHECK_NE(buf_size, 0);
356 rv = ftp_transaction_->Read(buf, buf_size,
360 rv = http_transaction_->Read(buf, buf_size,
url_request_test_job.h 107 int buf_size,
url_request_test_job.cc 184 bool URLRequestTestJob::ReadRawData(IOBuffer* buf, int buf_size,
188 async_buf_size_ = buf_size;
200 int to_read = buf_size;
  /external/chromium_org/remoting/base/
util.cc 317 long buf_size = sysconf(_SC_GETPW_R_SIZE_MAX);
318 if (buf_size <= 0)
321 scoped_ptr<char[]> buf(new char[buf_size]);
324 getpwuid_r(getuid(), &passwd, buf.get(), buf_size, &passwd_result);
  /external/chromium_org/url/
url_canon_etc.cc 218 const int buf_size = 6; local
219 char buf[buf_size];
220 WritePortInt(buf, buf_size, port_num);
225 for (int i = 0; i < buf_size && buf[i]; i++)
  /external/chromium_org/webkit/browser/blob/
blob_url_request_job.h 51 int buf_size,
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform.h 136 void WriteMemoryProfile(char *buf, uptr buf_size);
  /external/qemu/memcheck/
memcheck.c 257 * buf_size - Buffer size.
264 procdesc_contains_allocs(ProcDesc* proc, target_ulong addr, uint32_t buf_size) {
267 const target_ulong end_page = (addr + buf_size - 1) & TARGET_PAGE_MASK;
271 buf_size = end_page - addr + TARGET_PAGE_SIZE + 1;
272 return procdesc_find_malloc_for_range(proc, addr, buf_size) ? 1 : 0;
  /external/sonivox/jet_tools/JetCreator/
eas.py 468 def RegisterMetaDataCallback (self, func, buf, buf_size, user_data):
476 result = eas_dll.EAS_RegisterMetaDataCallback(self.eas.handle, self.handle, callback, buf, buf_size, user_data)
603 self.buf_size = self.config.mixBufferSize
775 count = int(secs * float(self.config.sampleRate) / float(self.buf_size) + 0.5)
788 result = eas_dll.EAS_RenderWaveOut(self.handle, byref(self.audio_buffer), self.buf_size, byref(samplesRendered))
898 if (aux_mixer is not None) and (aux_mixer.buf_size > self.config.mixBufferSize):
899 buf_size = aux_mixer.buf_size
901 buf_size = self.config.mixBufferSize
904 AudioBufferType = c_ubyte * (2 * buf_size * self.config.numChannels)
    [all...]
  /hardware/qcom/camera/QCamera2/stack/common/
mm_jpeg_interface.h 51 uint32_t buf_size; /* total size of buf (header + image) */ member in struct:__anon33186
  /external/bluetooth/bluedroid/bta/hh/
bta_hh_api.c 214 void BTA_HhGetReport(UINT8 dev_handle, tBTA_HH_RPT_TYPE r_type, UINT8 rpt_id, UINT16 buf_size)
216 UINT8 param = (buf_size) ? (r_type | 0x08) : r_type;
219 buf_size, rpt_id, NULL);
  /external/chromium/net/url_request/
url_request_ftp_job.cc 235 int buf_size,
237 DCHECK_NE(buf_size, 0);
241 int rv = transaction_->Read(buf, buf_size, &read_callback_);
url_request_test_job.cc 157 bool URLRequestTestJob::ReadRawData(IOBuffer* buf, int buf_size,
161 async_buf_size_ = buf_size;
173 int to_read = buf_size;
  /external/chromium_org/content/renderer/
renderer_clipboard_client.cc 52 uint32 buf_size = 4 * size.width() * size.height();
55 shared_buf_.reset(ChildThread::current()->AllocateSharedMemory(buf_size));
61 memcpy(shared_buf_->memory(), pixels, buf_size);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
profiledata.cc 226 int buf_size = sizeof(state->profile_name); local
227 strncpy(state->profile_name, fname_, buf_size);
228 state->profile_name[buf_size-1] = '\0';
profiler.cc 240 int buf_size = sizeof(state->profile_name); local
241 strncpy(state->profile_name, collector_state.profile_name, buf_size);
242 state->profile_name[buf_size-1] = '\0';

Completed in 712 milliseconds

1 2 3 4 5 6 7 891011>>