HomeSort by relevance Sort by last modified time
    Searched defs:buffer_bytes (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/sandbox/win/src/
interception.cc 122 size_t buffer_bytes = GetBufferSize();
123 scoped_ptr<char[]> local_buffer(new char[buffer_bytes]);
125 if (!SetupConfigBuffer(local_buffer.get(), buffer_bytes))
129 if (!CopyDataToChild(local_buffer.get(), buffer_bytes, &remote_buffer))
132 bool hot_patch_needed = (0 != buffer_bytes);
145 size_t buffer_bytes = 0; local
158 buffer_bytes += RoundUpToMultiple(offsetof(DllPatchInfo, dll_name) +
169 buffer_bytes += record_bytes;
172 if (0 != buffer_bytes)
174 buffer_bytes += offsetof(SharedMemory, dll_list)
    [all...]
sandbox_nt_util.cc 401 ULONG buffer_bytes = MAX_PATH * 2; local
405 new(NT_ALLOC) char[buffer_bytes]);
413 buffer_bytes, &returned_bytes);
419 buffer_bytes = returned_bytes;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pcm_oss.h 54 size_t buffer_bytes; /* requested buffer size */ member in struct:snd_pcm_oss_runtime
vx_core.h 79 int buffer_bytes; /* the ALSA pcm buffer size in bytes */ member in struct:vx_pipe
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pcm_oss.h 54 size_t buffer_bytes; /* requested buffer size */ member in struct:snd_pcm_oss_runtime
vx_core.h 79 int buffer_bytes; /* the ALSA pcm buffer size in bytes */ member in struct:vx_pipe
  /external/qemu/audio/
winaudio.c 95 unsigned char* buffer_bytes; member in struct:WinAudioOut
146 if (s->buffer_bytes != NULL) {
147 qemu_free(s->buffer_bytes);
148 s->buffer_bytes = NULL;
171 s->buffer_bytes = NULL;
207 s->buffer_bytes = qemu_malloc( NUM_OUT_BUFFERS * samples_size );
208 if (s->buffer_bytes == NULL) {
217 s->buffers[i].lpData = (LPSTR)(s->buffer_bytes + i*samples_size);
346 unsigned char* buffer_bytes; member in struct:WinAudioIn
392 if (s->buffer_bytes != NULL) {
    [all...]
  /external/chromium/net/tools/dump_cache/
upgrade.cc 48 // of the message has |buffer_bytes| of length with the actual data.
52 int32 buffer_bytes; member in struct:__anon5646::Message
172 if (!WriteFile(channel_, output_, sizeof(msg) + msg.buffer_bytes, &written,
397 DCHECK(key.size() == static_cast<size_t>(input_->msg.buffer_bytes - 1));
498 DEBUGMSG("Master DoReadData: %d bytes\n", input_->msg.buffer_bytes);
504 int read_size = input_->msg.buffer_bytes;
786 msg.buffer_bytes = std::min(key.size() + 1,
788 memcpy(output_->buffer, key.c_str(), msg.buffer_bytes);
789 if (msg.buffer_bytes != static_cast<int32>(key.size() + 1)) {
852 msg.buffer_bytes = (ret < 0) ? 0 : ret
    [all...]
  /external/chromium_org/net/tools/dump_cache/
upgrade_win.cc 52 // of the message has |buffer_bytes| of length with the actual data.
56 int32 buffer_bytes; member in struct:__anon11561::Message
176 if (!WriteFile(channel_, output_, sizeof(msg) + msg.buffer_bytes, &written,
391 DCHECK(key.size() == static_cast<size_t>(input_->msg.buffer_bytes - 1));
492 DEBUGMSG("Master DoReadData: %d bytes\n", input_->msg.buffer_bytes);
498 int read_size = input_->msg.buffer_bytes;
779 msg.buffer_bytes = std::min(key.size() + 1,
781 memcpy(output_->buffer, key.c_str(), msg.buffer_bytes);
782 if (msg.buffer_bytes != static_cast<int32>(key.size() + 1)) {
846 msg.buffer_bytes = (ret < 0) ? 0 : ret
    [all...]

Completed in 187 milliseconds