OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mReplyBuffer
(Results
1 - 3
of
3
) sorted by null
/device/generic/goldfish/camera/
QemuClient.cpp
44
mReplyBuffer
(NULL),
56
mReplyBuffer
(NULL),
68
mReplyBuffer
(NULL),
133
if (
mReplyBuffer
== NULL || mReplySize < 3) {
140
if (!memcmp(
mReplyBuffer
, "ok", 2)) {
142
} else if (!memcmp(
mReplyBuffer
, "ko", 2)) {
145
ALOGE("%s: Invalid query reply: '%s'", __FUNCTION__,
mReplyBuffer
);
154
if (
mReplyBuffer
[2] != ':') {
155
ALOGE("%s: Invalid query reply: '%s'", __FUNCTION__,
mReplyBuffer
);
159
mReplyData =
mReplyBuffer
+ 3
[
all
...]
QemuClient.h
172
char*
mReplyBuffer
;
/cts/suite/audio_quality/client/src/com/android/cts/audiotest/
AudioProtocol.java
64
private ByteBuffer
mReplyBuffer
= ByteBuffer.allocate(PROTOCOL_SIMPLE_REPLY_SIZE);
457
mReplyBuffer
.clear();
458
mReplyBuffer
.putInt((cmd & 0xffff) | 0x43210000);
459
mReplyBuffer
.putInt(errorCode);
460
mReplyBuffer
.putInt(len);
463
mOutput.write(
mReplyBuffer
.array(), 0, PROTOCOL_SIMPLE_REPLY_SIZE);
Completed in 143 milliseconds