Searched refs:reply (Results 1 - 15 of 15) sorted by relevance

/hardware/qcom/display/libqservice/
H A DIQClient.cpp45 Parcel data, reply; local
49 remote()->transact(NOTIFY_CALLBACK, data, &reply);
50 status_t result = reply.readInt32();
60 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
64 CHECK_INTERFACE(IQClient, data, reply);
71 return BBinder::onTransact(code, data, reply, flags);
59 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DIQService.cpp47 Parcel data, reply; local
50 remote()->transact(SECURING, data, &reply);
54 Parcel data, reply; local
57 remote()->transact(UNSECURING, data, &reply);
61 Parcel data, reply; local
64 remote()->transact(CONNECT, data, &reply);
68 Parcel data, reply; local
70 remote()->transact(SCREEN_REFRESH, data, &reply);
71 status_t result = reply.readInt32();
83 uint32_t code, const Parcel& data, Parcel* reply, uint32_
82 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
H A DIQClient.h46 android::Parcel* reply,
H A DIQService.h62 android::Parcel* reply,
/hardware/msm7k/librpc/
H A Dsvc.c484 /* Send a reply to an rpc request */
503 D("%08x:%d sending RPC reply (XID %d)\n",
515 #define SVCERR_XDR_SEND(xdr, reply) \
517 xdr_send_reply_header(xdr, &reply) && \
524 rpc_reply_header reply; local
525 reply.stat = RPC_MSG_ACCEPTED;
526 reply.u.ar.verf = serv->xdr->verf;
527 reply.u.ar.stat = RPC_GARBAGE_ARGS;
529 if (!SVCERR_XDR_SEND(serv->xdr, reply))
530 /* Couldn't send the reply
539 rpc_reply_header reply; local
554 rpc_reply_header reply; local
[all...]
H A Drpc.c104 rpc_reply_header const *reply)
106 if (!XDR_SEND_ENUM(xdr, &reply->stat))
109 switch ((*reply).stat) {
111 if (!xdr_send_accepted_reply_header(xdr, &reply->u.ar))
115 if (!xdr_send_denied_reply(xdr, &reply->u.dr))
102 xdr_send_reply_header( xdr_s_type *xdr, rpc_reply_header const *reply) argument
H A Dclnt.c38 incoming packet). For now, we just block until we get that reply.
63 extern bool_t xdr_recv_reply_header (xdr_s_type *xdr, rpc_reply_header *reply);
209 receiving a reply to an outstanding call, or processing
210 an incoming reply and receiving a call.
356 D("%08x:%08x waiting for reply.\n",
359 D("%08x:%08x received reply.\n", client->xdr->x_prog, client->xdr->x_vers);
371 D("%08x:%08x decoding reply header.\n",
374 E("%08x:%08x error reading reply header.\n",
513 bool_t xdr_recv_reply_header (xdr_s_type *xdr, rpc_reply_header *reply) argument
515 if (!XDR_RECV_ENUM(xdr, &reply
[all...]
H A Dsvc_clnt_common.c69 /* rpc call or reply? */
83 extern bool_t xdr_recv_reply_header(xdr_s_type *xdr, rpc_reply_header *reply);
/hardware/libhardware_legacy/include/hardware_legacy/
H A Dwifi.h101 * @param reply is a buffer to receive a reply string
103 * the reply buffer. On exit, the number of
104 * bytes in the reply buffer.
108 int wifi_command(const char *iface, const char *command, char *reply, size_t *reply_len);
/hardware/libhardware_legacy/wifi/
H A Dwifi.c708 int wifi_send_command(int index, const char *cmd, char *reply, size_t *reply_len) argument
716 ret = wpa_ctrl_request(ctrl_conn[index], cmd, strlen(cmd), reply, reply_len, NULL);
722 } else if (ret < 0 || strncmp(reply, "FAIL", 4) == 0) {
726 reply[*reply_len] = '\0';
731 int wifi_ctrl_recv(int index, char *reply, size_t *reply_len) argument
748 return wpa_ctrl_recv(monitor_conn[index], reply, reply_len);
876 int wifi_command(const char *ifname, const char *command, char *reply, size_t *reply_len) argument
879 return wifi_send_command(PRIMARY, command, reply, reply_len);
881 return wifi_send_command(SECONDARY, command, reply, reply_len);
/hardware/msm7k/libaudio-qdsp5v2/
H A DAudioHardware.cpp136 AudioParameter reply = AudioParameter(); local
140 return reply.toString();
/hardware/msm7k/librpc/rpc/
H A Dxdr.h72 extern bool_t xdr_send_reply_header (XDR *xdr, rpc_reply_header const *reply);
/hardware/libhardware_legacy/audio/
H A DAudioPolicyManagerBase.cpp1677 String8 reply; local
1680 reply = mpClientInterface->getParameters(output,
1683 reply.string());
1684 value = strpbrk((char *)reply.string(), "=");
1690 reply = mpClientInterface->getParameters(output,
1693 reply.string());
1694 value = strpbrk((char *)reply.string(), "=");
1700 reply = mpClientInterface->getParameters(output,
1703 reply.string());
1704 value = strpbrk((char *)reply
[all...]
/hardware/msm7k/libaudio-qsd8k/
H A DAudioHardware.cpp512 AudioParameter reply = AudioParameter(); local
534 reply.add(key, value);
537 return reply.toString();
/hardware/qcom/audio/hal/
H A Daudio_hw.c1469 struct str_parms *reply = str_parms_create(); local
1491 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value);
1492 str = str_parms_to_str(reply);
1497 str_parms_destroy(reply);

Completed in 158 milliseconds