/device/linaro/poplar/wifi/wifi_hal/ |
D | link_layer_stats.cpp | 71 virtual int handleResponse(WifiEvent& reply) { in handleResponse() argument 75 if (reply.get_cmd() != NL80211_CMD_VENDOR) { in handleResponse() 76 ALOGD("Ignoring reply with cmd = %d", reply.get_cmd()); in handleResponse() 80 int id = reply.get_vendor_id(); in handleResponse() 81 int subcmd = reply.get_vendor_subcmd(); in handleResponse() 85 void *data = reply.get_vendor_data(); in handleResponse() 86 int len = reply.get_vendor_data_len(); in handleResponse()
|
D | rtt.cpp | 157 virtual int handleResponse(WifiEvent& reply) { in handleResponse() argument 161 if (reply.get_cmd() != NL80211_CMD_VENDOR) { in handleResponse() 162 ALOGD("Ignoring reply with cmd = %d", reply.get_cmd()); in handleResponse() 166 int id = reply.get_vendor_id(); in handleResponse() 167 int subcmd = reply.get_vendor_subcmd(); in handleResponse() 169 void *data = reply.get_vendor_data(); in handleResponse() 170 int len = reply.get_vendor_data_len(); in handleResponse() 205 virtual int handleResponse(WifiEvent& reply) { in handleResponse() argument 209 if (reply.get_cmd() != NL80211_CMD_VENDOR) { in handleResponse() 210 ALOGD("Ignoring reply with cmd = %d", reply.get_cmd()); in handleResponse() [all …]
|
D | wifi_logger.cpp | 312 virtual int handleResponse(WifiEvent& reply) { in handleResponse() argument 315 if (reply.get_cmd() != NL80211_CMD_VENDOR) { in handleResponse() 316 ALOGD("Ignoring reply with cmd = %d", reply.get_cmd()); in handleResponse() 324 void *data = reply.get_vendor_data(); in handleResponse() 325 int len = reply.get_vendor_data_len(); in handleResponse() 341 nlattr *vendor_data = reply.get_attribute(NL80211_ATTR_VENDOR_DATA); in handleResponse() 342 int len = reply.get_vendor_data_len(); in handleResponse() 381 void *data = reply.get_vendor_data(); in handleResponse() 382 int len = reply.get_vendor_data_len(); in handleResponse() 646 virtual int handleResponse(WifiEvent& reply) { in handleResponse() argument [all …]
|
D | wifi_hal.cpp | 618 virtual int handleResponse(WifiEvent& reply) { in handleResponse() argument 622 struct nlattr **tb = reply.attributes(); in handleResponse() 623 struct genlmsghdr *gnlh = reply.header(); in handleResponse() 710 virtual int handleResponse(WifiEvent& reply) { in handleResponse() argument 850 virtual int handleResponse(WifiEvent& reply) { in handleResponse() argument 982 int handleResponse(WifiEvent& reply) { in handleResponse() argument 985 if (reply.get_cmd() != NL80211_CMD_VENDOR) { in handleResponse() 986 ALOGD("Ignoring reply with cmd = %d", reply.get_cmd()); in handleResponse() 990 int id = reply.get_vendor_id(); in handleResponse() 991 int subcmd = reply.get_vendor_subcmd(); in handleResponse() [all …]
|
D | gscan.cpp | 213 virtual int handleResponse(WifiEvent& reply) { in handleResponse() argument 217 if (reply.get_cmd() != NL80211_CMD_VENDOR) { in handleResponse() 218 ALOGD("Ignoring reply with cmd = %d", reply.get_cmd()); in handleResponse() 222 int id = reply.get_vendor_id(); in handleResponse() 223 int subcmd = reply.get_vendor_subcmd(); in handleResponse() 225 void *data = reply.get_vendor_data(); in handleResponse() 226 int len = reply.get_vendor_data_len(); in handleResponse() 279 virtual int handleResponse(WifiEvent& reply) { in handleResponse() argument 283 if (reply.get_cmd() != NL80211_CMD_VENDOR) { in handleResponse() 284 ALOGD("Ignoring reply with cmd = %d", reply.get_cmd()); in handleResponse() [all …]
|
D | wifi_offload.cpp | 191 virtual int handleResponse(WifiEvent& reply) { in handleResponse() argument 194 if (reply.get_cmd() != NL80211_CMD_VENDOR) { in handleResponse() 195 ALOGD("Ignoring reply with cmd = %d", reply.get_cmd()); in handleResponse()
|
D | cpp_bindings.cpp | 696 WifiEvent reply(msg); in response_handler() local 697 int res = reply.parse(); in response_handler() 703 return cmd->handleResponse(reply); in response_handler()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/ |
D | rpython.py | 28 reply = '' 32 reply = reply + data 33 print reply,
|
D | rpythond.py | 33 reply = execute(request) 34 conn.send(reply)
|
/device/google/cuttlefish/host/frontend/gcastv2/webrtc/ |
D | MyWebSocketHandler.cpp | 91 auto reply = "{\"error\": \"" + error_msg + "\"}"; in handleMessage() local 92 sendMessage(reply.c_str(), reply.size()); in handleMessage() 102 Json::Value reply; in handleMessage() local 103 reply["type"] = "hello"; in handleMessage() 104 reply["reply"] = "Right back at ya!"; in handleMessage() 106 auto replyAsString = json_writer.write(reply); in handleMessage() 261 Json::Value reply; in handleMessage() local 262 reply["type"] = "offer"; in handleMessage() 263 reply["sdp"] = ss.str(); in handleMessage() 265 auto replyAsString = json_writer.write(reply); in handleMessage() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/ |
D | client.py | 105 reply = self._replies[id] 107 return reply 112 reply = rp.load() 114 if self._verbose > 1: print "got reply: %s" % repr(reply) 115 rid = reply[2] 119 return reply 120 self._replies[rid] = reply
|
D | server.py | 79 reply = (None, self._special(methodname, args), id) 84 reply = (None, apply(method, args), id) 86 reply = (sys.exc_type, sys.exc_value, id) 87 if id < 0 and reply[:2] == (None, None): 90 if self._verbose > 1: print "Send reply: %s" % repr(reply) 92 wp.dump(reply)
|
/device/google/contexthub/firmware/os/core/ |
D | nanohubCommand.c | 379 uint32_t reply; in appSecErrToNanohubReply() local 383 reply = NANOHUB_FIRMWARE_UPLOAD_SUCCESS; in appSecErrToNanohubReply() 386 reply = NANOHUB_FIRMWARE_UPLOAD_APP_SEC_KEY_NOT_FOUND; in appSecErrToNanohubReply() 389 reply = NANOHUB_FIRMWARE_UPLOAD_APP_SEC_HEADER_ERROR; in appSecErrToNanohubReply() 392 reply = NANOHUB_FIRMWARE_UPLOAD_APP_SEC_TOO_MUCH_DATA; in appSecErrToNanohubReply() 395 reply = NANOHUB_FIRMWARE_UPLOAD_APP_SEC_TOO_LITTLE_DATA; in appSecErrToNanohubReply() 398 reply = NANOHUB_FIRMWARE_UPLOAD_APP_SEC_SIG_VERIFY_FAIL; in appSecErrToNanohubReply() 401 reply = NANOHUB_FIRMWARE_UPLOAD_APP_SEC_SIG_DECODE_FAIL; in appSecErrToNanohubReply() 404 reply = NANOHUB_FIRMWARE_UPLOAD_APP_SEC_SIG_ROOT_UNKNOWN; in appSecErrToNanohubReply() 407 reply = NANOHUB_FIRMWARE_UPLOAD_APP_SEC_MEMORY_ERROR; in appSecErrToNanohubReply() [all …]
|
/device/google/atv/audio_proxy/ |
D | StreamOutImpl.cpp | 91 status.reply.written = 0; in doWrite() 93 status.reply.written = availToRead; in doWrite() 96 status.reply.written = writeResult; in doWrite() 111 &status.reply.presentationPosition.frames, in doGetPresentationPosition() 112 &status.reply.presentationPosition.timeStamp); in doGetPresentationPosition() 120 status.reply.latencyMs = mStream->getLatency(); in doGetLatency()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | pdb.py | 574 reply = 'Will ignore next ' 576 reply = reply + '%d crossings' % count 578 reply = reply + '1 crossing' 579 print >>self.stdout, reply + ' of breakpoint %d.' % bpnum 591 reply = raw_input('Clear all breaks? ') 593 reply = 'no' 594 reply = reply.strip().lower() 595 if reply in ('y', 'yes'):
|
D | smtplib.py | 627 (resp, reply) = self.docmd("STARTTLS") 641 return (resp, reply)
|
/device/generic/goldfish/audio/ |
D | stream_out.cpp | 182 status.reply.written = written; in doWrite() 210 status.reply.presentationPosition.frames, in doGetPresentationPosition() 211 status.reply.presentationPosition.timeStamp); in doGetPresentationPosition() 220 status.reply.latencyMs = mStream->getLatency(); in doGetLatency()
|
D | stream_in.cpp | 179 status.reply.read = read; in doRead() 203 status.reply.capturePosition.frames, in doGetCapturePosition() 204 status.reply.capturePosition.time); in doGetCapturePosition()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
D | ftpmirror.py | 359 reply = raw_input(prompt).strip().lower() 360 if reply in ['y', 'ye', 'yes']: 362 if reply in ['', 'n', 'no', 'nop', 'nope']:
|
/device/google/cuttlefish/guest/hals/audio/ |
D | audio_hw.c | 367 struct str_parms *reply = str_parms_create(); in out_get_parameters() local 378 str_parms_add_int(reply, AUDIO_PARAMETER_STREAM_ROUTING, device); in out_get_parameters() 386 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_FORMATS, value); in out_get_parameters() 393 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_FORMAT, value); in out_get_parameters() 398 str = str_parms_to_str(reply); in out_get_parameters() 405 str_parms_destroy(reply); in out_get_parameters() 892 struct str_parms *reply = str_parms_create(); in in_get_parameters() local 898 str_parms_add_int(reply, AUDIO_PARAMETER_STREAM_ROUTING, in->device); in in_get_parameters() 905 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_FORMATS, value); in in_get_parameters() 912 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_FORMAT, value); in in_get_parameters() [all …]
|
/device/generic/goldfish/wifi/wifi_hal/ |
D | interface.h | 88 const NetlinkMessage& reply);
|
/device/google/trout/hal/audio/6.0/ |
D | audio_hw.c | 255 struct str_parms *reply = str_parms_create(); in out_get_parameters() local 261 str_parms_add_int(reply, AUDIO_PARAMETER_STREAM_ROUTING, out->device); in out_get_parameters() 263 str = strdup(str_parms_to_str(reply)); in out_get_parameters() 269 str_parms_destroy(reply); in out_get_parameters() 775 struct str_parms *reply = str_parms_create(); in in_get_parameters() local 780 str_parms_add_int(reply, AUDIO_PARAMETER_STREAM_ROUTING, in->device); in in_get_parameters() 781 str = strdup(str_parms_to_str(reply)); in in_get_parameters() 787 str_parms_destroy(reply); in in_get_parameters()
|
/device/generic/car/emulator/audio/driver/ |
D | audio_hw.c | 215 struct str_parms *reply = str_parms_create(); in out_get_parameters() local 221 str_parms_add_int(reply, AUDIO_PARAMETER_STREAM_ROUTING, out->device); in out_get_parameters() 223 str = strdup(str_parms_to_str(reply)); in out_get_parameters() 229 str_parms_destroy(reply); in out_get_parameters() 737 struct str_parms *reply = str_parms_create(); in in_get_parameters() local 742 str_parms_add_int(reply, AUDIO_PARAMETER_STREAM_ROUTING, in->device); in in_get_parameters() 743 str = strdup(str_parms_to_str(reply)); in in_get_parameters() 749 str_parms_destroy(reply); in in_get_parameters()
|
/device/generic/opengl-transport/host/commands/emugen/ |
D | README | 33 A general Decoder->Encoder reply is expected to be received in the 34 context of the ‘call’ that triggered it, thus it includes the reply 35 data only, with no context headers. In precise term terms, a reply 39 ...// reply data
|
/device/generic/goldfish/radio/ril/ |
D | reference-ril.c | 2497 char reply[] = ""; local 2910 int reply[2]; local 2912 reply[0] = s_ims_registered; 2918 reply[1] = s_ims_format; 2921 reply[0], reply[1]); 2922 if (reply[1] != -1) { 2923 RIL_onRequestComplete(t, RIL_E_SUCCESS, reply, sizeof(reply)); 3788 int reply[2]; 3789 reply[0] = s_ims_registered; 3790 reply[1] = s_ims_services; [all …]
|