OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:replydata
(Results
1 - 7
of
7
) sorted by null
/frameworks/base/obex/javax/obex/
ServerSession.java
389
byte[]
replyData
= new byte[totalLength];
390
replyData
[0] = (byte)code;
391
replyData
[1] = (byte)(totalLength >> 8);
392
replyData
[2] = (byte)totalLength;
394
System.arraycopy(head, 0,
replyData
, 3, head.length);
400
mOutput.write(
replyData
);
488
byte[]
replyData
;
490
replyData
= new byte[3 + head.length];
492
replyData
= new byte[3];
494
replyData
[0] = (byte)code
[
all
...]
/dalvik/vm/
Ddm.cpp
95
ArrayObject*
replyData
;
116
replyData
=
122
type,
replyData
, offset, length);
124
if (length == 0 ||
replyData
== NULL)
126
if (offset + length >
replyData
->length) {
128
offset, length,
replyData
->length);
140
memcpy(reply+kChunkHdrLen, (const u1*)
replyData
->contents + offset, length);
/frameworks/base/media/libmedia/
AudioEffect.cpp
230
void *
replyData
)
241
if (replySize == NULL || *replySize != sizeof(status_t) ||
replyData
== NULL) {
247
status_t status = mIEffect->command(cmdCode, cmdSize, cmdData, replySize,
replyData
);
251
status = *(status_t *)
replyData
;
386
void *
replyData
)
388
if (cmdData == NULL ||
replyData
== NULL) {
394
cmd->status = *(int32_t *)
replyData
;
/external/dbus/doc/
dcop-howto.txt
163
QByteArray data,
replyData
;
168
data, replyType,
replyData
))
171
QDataStream reply(
replyData
, IO_ReadOnly);
207
QCString &replyType, QByteArray &
replyData
)
214
QDataStream reply(
replyData
, IO_WriteOnly);
266
QByteArray
replyData
;
267
QDataStream reply(
replyData
, IO_WriteOnly);
269
kapp->dcopClient()->endTransaction( myTransaction, replyType,
replyData
);
/external/wpa_supplicant_8/src/wps/
wps_upnp_web.c
690
char *
replydata
;
local
696
replydata
= (char *) base64_encode(wpabuf_head(reply),
699
replydata
= NULL;
704
*
replydata
-- NULL or null-terminated string
706
buf = wpabuf_alloc(1000 + (
replydata
? os_strlen(
replydata
) : 0U) +
711
os_free(
replydata
);
753
if (
replydata
&& replyname) {
760
wpabuf_put_str(buf,
replydata
);
775
os_free(
replydata
);
[
all
...]
/external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_upnp_web.c
1190
char *
replydata
;
local
[
all
...]
/frameworks/base/include/media/
AudioEffect.h
376
void *
replyData
);
Completed in 260 milliseconds