OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pending_data
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/ppapi/shared_impl/
ppb_audio_shared.cc
206
int
pending_data
= 0;
local
207
while (sizeof(
pending_data
) ==
208
socket_->Receive(&
pending_data
, sizeof(
pending_data
))) {
212
if (
pending_data
< 0)
216
static_cast<double>(
pending_data
) / bytes_per_second_;
/external/chromium_org/media/audio/
audio_device_thread.cc
167
int
pending_data
= 0;
local
168
size_t bytes_read = socket_.Receive(&
pending_data
, sizeof(
pending_data
));
169
if (bytes_read != sizeof(
pending_data
)) {
177
callback_->Process(
pending_data
);
audio_device_thread.h
54
virtual void Process(int
pending_data
) = 0;
audio_output_device.cc
32
virtual void Process(int
pending_data
) OVERRIDE;
306
void AudioOutputDevice::AudioThreadCallback::Process(int
pending_data
) {
307
// Negative |
pending_data
| indicates the browser side stream has stopped.
308
if (
pending_data
< 0)
312
int audio_delay_milliseconds =
pending_data
/ bytes_per_ms_;
audio_input_device.cc
39
virtual void Process(int
pending_data
) OVERRIDE;
287
void AudioInputDevice::AudioThreadCallback::Process(int
pending_data
) {
301
int audio_delay_milliseconds =
pending_data
/ bytes_per_ms_;
/external/qemu/android/
adb-server.c
68
uint8_t*
pending_data
;
member in struct:AdbHost
139
if (adb_host->
pending_data
!= NULL) {
140
free(adb_host->
pending_data
);
247
if (adb_host->
pending_data
== NULL) {
248
adb_host->
pending_data
= malloc(size);
250
adb_host->
pending_data
= realloc(adb_host->
pending_data
,
253
if (adb_host->
pending_data
!= NULL) {
254
memcpy(adb_host->
pending_data
+ adb_host->pending_data_size,
499
if (adb_host->
pending_data
!= NULL && adb_host->pending_data_size != 0)
[
all
...]
/external/chromium_org/ppapi/proxy/
audio_input_resource.cc
237
int
pending_data
;
local
239
while (sizeof(
pending_data
) == socket_->Receive(&
pending_data
,
240
sizeof(
pending_data
)) &&
241
pending_data
>= 0) {
248
static_cast<double>(
pending_data
) / bytes_per_second_;
/external/chromium_org/chrome/browser/chromeos/drive/
drive_file_stream_reader.cc
43
// Copies the content in |
pending_data
| into |buffer| at most
45
// |
pending_data
|. Returns the number of copied bytes.
46
int ReadInternal(ScopedVector<std::string>*
pending_data
,
50
for (; index <
pending_data
->size() && offset < buffer_length; ++index) {
51
const std::string& chunk = *(*
pending_data
)[index];
62
(*
pending_data
)[index]->erase(0, bytes_to_read);
68
pending_data
->erase(
pending_data
->begin(),
pending_data
->begin() + index);
/external/bluetooth/bluedroid/stack/gap/
gap_int.h
143
}
pending_data
;
member in struct:__anon836
gap_ble.c
234
p_op->
pending_data
.privacy_flag = privacy_flag;
236
memcpy(p_op->
pending_data
.reconn_addr, reconn_addr, BD_ADDR_LEN);
261
p_pending_op->
pending_data
.reconn_addr,
Completed in 607 milliseconds