Searched defs:reply (Results 26 - 39 of 39) sorted by relevance

12

/hardware/qcom/audio/hal/voice_extn/
H A Dvoice_extn.c544 struct str_parms *reply)
556 str_parms_add_int(reply, AUDIO_PARAMETER_KEY_AUDIO_MODE, adev->mode);
567 str_parms_add_str(reply, AUDIO_PARAMETER_KEY_ALL_CALL_STATES, value);
570 str = str_parms_to_str(reply);
542 voice_extn_get_parameters(const struct audio_device *adev, struct str_parms *query, struct str_parms *reply) argument
/hardware/qcom/wlan/qcwcn/wifi_hal/
H A Dnan.cpp1134 int NanCommand::handleResponse(WifiEvent &reply){ argument
H A Dcpp_bindings.cpp617 while (err > 0) { /* wait for reply */
680 WifiEvent reply(msg);
681 int res = reply.parse();
683 ALOGE("Failed to parse reply message = %d", res);
686 // reply.log(); /* Don't call log() to avoid excess WiFi HAL logging */
687 return cmd->handleResponse(reply);
752 // Override this method to parse reply and dig out data; save it
754 int WifiVendorCommand::handleResponse(WifiEvent &reply) argument
756 struct nlattr **tb = reply.attributes();
757 struct genlmsghdr *gnlh = reply
[all...]
H A Dcpp_bindings.h347 /* Override this method to parse reply and dig out data; save it in the object */
348 virtual int handleResponse(WifiEvent& reply) { argument
349 UNUSED(reply);
458 /* Override this method to parse reply and dig out data; save it in the corresponding
460 virtual int handleResponse(WifiEvent &reply);
H A Dgscan.cpp1328 int GScanCommand::handleResponse(WifiEvent &reply) { argument
1333 WifiVendorCommand::handleResponse(reply);
H A Dwifi_hal.cpp964 virtual int handleResponse(WifiEvent& reply) { argument
968 struct nlattr **tb = reply.attributes();
H A Dwifilogger.cpp985 int WifiLoggerCommand::handleResponse(WifiEvent &reply) { argument
990 WifiVendorCommand::handleResponse(reply);
/hardware/broadcom/wlan/bcmdhd/wifi_hal/
H A Dcpp_bindings.h300 /* Override this method to parse reply and dig out data; save it in the object */
301 virtual int handleResponse(WifiEvent& reply) { argument
H A Drtt.cpp139 virtual int handleResponse(WifiEvent& reply) { argument
143 if (reply.get_cmd() != NL80211_CMD_VENDOR) {
144 ALOGD("Ignoring reply with cmd = %d", reply.get_cmd());
148 int id = reply.get_vendor_id();
149 int subcmd = reply.get_vendor_subcmd();
151 void *data = reply.get_vendor_data();
152 int len = reply.get_vendor_data_len();
187 virtual int handleResponse(WifiEvent& reply) { argument
191 if (reply
238 handleResponse(WifiEvent& reply) argument
285 handleResponse(WifiEvent& reply) argument
502 handleResponse(WifiEvent& reply) argument
[all...]
H A Dwifi_logger.cpp296 virtual int handleResponse(WifiEvent& reply) { argument
299 if (reply.get_cmd() != NL80211_CMD_VENDOR) {
300 ALOGD("Ignoring reply with cmd = %d", reply.get_cmd());
308 void *data = reply.get_vendor_data();
309 int len = reply.get_vendor_data_len();
325 nlattr *vendor_data = reply.get_attribute(NL80211_ATTR_VENDOR_DATA);
326 int len = reply.get_vendor_data_len();
365 void *data = reply.get_vendor_data();
366 int len = reply
630 handleResponse(WifiEvent& reply) argument
812 handleResponse(WifiEvent& reply) argument
1011 handleResponse(WifiEvent& reply) argument
[all...]
H A Dgscan.cpp196 virtual int handleResponse(WifiEvent& reply) { argument
200 if (reply.get_cmd() != NL80211_CMD_VENDOR) {
201 ALOGD("Ignoring reply with cmd = %d", reply.get_cmd());
205 int id = reply.get_vendor_id();
206 int subcmd = reply.get_vendor_subcmd();
208 void *data = reply.get_vendor_data();
209 int len = reply.get_vendor_data_len();
262 virtual int handleResponse(WifiEvent& reply) { argument
266 if (reply
439 handleResponse(WifiEvent& reply) argument
647 handleResponse(WifiEvent& reply) argument
889 handleResponse(WifiEvent& reply) argument
1125 handleResponse(WifiEvent& reply) argument
1325 handleResponse(WifiEvent& reply) argument
1547 handleResponse(WifiEvent& reply) argument
1757 handleResponse(WifiEvent& reply) argument
[all...]
H A Dwifi_hal.cpp570 virtual int handleResponse(WifiEvent& reply) { argument
574 struct nlattr **tb = reply.attributes();
575 struct genlmsghdr *gnlh = reply.header();
662 virtual int handleResponse(WifiEvent& reply) { argument
802 virtual int handleResponse(WifiEvent& reply) { argument
934 int handleResponse(WifiEvent& reply) { argument
937 if (reply.get_cmd() != NL80211_CMD_VENDOR) {
938 ALOGD("Ignoring reply with cmd = %d", reply.get_cmd());
942 int id = reply
1050 handleResponse(WifiEvent& reply) argument
[all...]
/hardware/qcom/audio/hal/
H A Daudio_hw.c2071 struct str_parms *reply = str_parms_create(); local
2093 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value);
2094 str = str_parms_to_str(reply);
2099 str_parms_destroy(reply);
3621 struct str_parms *reply = str_parms_create(); local
3627 voice_get_parameters(adev, query, reply);
3628 str = str_parms_to_str(reply);
3630 str_parms_destroy(reply);
/hardware/ril/reference-ril/
H A Dreference-ril.c2421 int reply[2]; local
2423 reply[0] = s_ims_registered;
2426 //reply[1] = s_ims_services;
2429 reply[1] = s_ims_format;
2432 reply[0], reply[1]);
2433 if (reply[1] != -1) {
2434 RIL_onRequestComplete(t, RIL_E_SUCCESS, reply, sizeof(reply));
3214 int reply[
[all...]

Completed in 619 milliseconds

12