HomeSort by relevance Sort by last modified time
    Searched full:replydata (Results 1 - 14 of 14) sorted by null

  /external/iputils/ninfod/
ninfod_core.c 287 p->replydata = ni_malloc(p->replydatalen);
288 if (p->replydata == NULL) {
293 memcpy(p->replydata, suptypes, p->replydatalen);
344 p->replydata = NULL;
362 p->replydata = NULL;
470 ni_free(p->replydata);
475 ni_free(p->replydata);
620 ni_free(p->replydata);
621 p->replydata = NULL;
653 ni_free(p->replydata);
    [all...]
ninfod_addrs.c 257 p->replydata = p->replydatalen ? ni_malloc(p->replydatalen) : NULL;
259 if (p->replydatalen && !p->replydata) {
292 cp = p->replydata +
417 p->replydata = addrs0 ? ni_malloc(p->replydatalen) : NULL;
419 if (p->replydatalen && !p->replydata) {
453 cp = (p->replydata +
ninfod_name.c 380 p->replydata = nodenamelen ? ni_malloc(p->replydatalen) : NULL;
381 if (p->replydata) {
382 memcpy(p->replydata, &ttl, sizeof(ttl));
383 memcpy(p->replydata + sizeof(ttl), &nodename, nodenamelen);
ninfod.h 69 char *replydata; /* data */ member in struct:packetcontext
ninfod.c 345 iov[1].iov_base = p->replydata;
352 msgh.msg_iovlen = p->replydata ? 2 : 1;
386 ni_free(p->replydata);
  /frameworks/base/obex/javax/obex/
ServerSession.java 400 byte[] replyData = new byte[totalLength];
401 replyData[0] = (byte)code;
402 replyData[1] = (byte)(totalLength >> 8);
403 replyData[2] = (byte)totalLength;
405 System.arraycopy(head, 0, replyData, 3, head.length);
411 mOutput.write(replyData);
500 byte[] replyData;
502 replyData = new byte[3 + head.length];
504 replyData = new byte[3];
506 replyData[0] = (byte)code
    [all...]
  /frameworks/av/media/libaudioclient/
AudioEffect.cpp 241 void *replyData)
252 if (replySize == NULL || *replySize != sizeof(status_t) || replyData == NULL) {
258 status_t status = mIEffect->command(cmdCode, cmdSize, cmdData, replySize, replyData);
262 status = *(status_t *)replyData;
403 void *replyData)
405 if (cmdData == NULL || replyData == NULL) {
411 cmd->status = *(int32_t *)replyData;
  /frameworks/av/media/libeffects/proxy/
EffectProxy.cpp 138 pContext->replyData = (char *)malloc(PROXY_REPLY_SIZE_DEFAULT);
153 free(pContext->replyData);
274 ALOGV("Effect_command OFFLOAD return 0, replyData %d",
301 pContext->replyData = (char *)realloc(pContext->replyData, tmpSize);
315 // other sub effect is lost in pContext->replyData
327 subReplyData[i] = pReplyData == NULL ? NULL : pContext->replyData;
EffectProxy.h 77 char* replyData; // temporary buffer for non active sub effect command reply
  /hardware/interfaces/audio/effect/2.0/default/
Effect.cpp 433 uint32_t* replySize, void* replyData) {
434 return sendCommandReturningData(commandCode, commandName, 0, NULL, replySize, replyData);
440 uint32_t* replySize, void* replyData) {
442 status_t status = (*mHandle)->command(mHandle, commandCode, size, data, replySize, replyData);
464 uint32_t* replySize, void* replyData,
468 (*mHandle)->command(mHandle, commandCode, size, data, replySize, replyData);
471 uint32_t commandStatus = *reinterpret_cast<uint32_t*>(replyData);
Effect.h 247 int commandCode, const char* commandName, uint32_t* replySize, void* replyData);
251 uint32_t* replySize, void* replyData);
258 uint32_t* replySize, void* replyData,
  /external/wpa_supplicant_8/src/wps/
wps_upnp_web.c 762 char *replydata; local
768 replydata = (char *) base64_encode(wpabuf_head(reply),
771 replydata = NULL;
776 * replydata -- NULL or null-terminated string
778 buf = wpabuf_alloc(1000 + (replydata ? os_strlen(replydata) : 0U) +
783 os_free(replydata);
825 if (replydata && replyname) {
832 wpabuf_put_str(buf, replydata);
847 os_free(replydata);
    [all...]
  /frameworks/av/media/libaudioclient/include/media/
AudioEffect.h 386 void *replyData);
  /art/runtime/
debugger.cc     [all...]

Completed in 5010 milliseconds