HomeSort by relevance Sort by last modified time
    Searched refs:resp_data (Results 1 - 7 of 7) sorted by null

  /external/qemu/android/protocol/
core-commands-proxy.c 89 * resp_data - Upon success contains allocated reponse data (if any). The caller
95 _coreCmdProxy_get_response(UICmdRespHeader* resp, void** resp_data)
105 *resp_data = malloc(resp->resp_data_size);
106 if (*resp_data == NULL) {
109 status = syncsocket_read(_coreCmdProxy.sync_reader, *resp_data,
170 UICmdGetNetSpeedResp* resp_data = NULL; local
181 status = _coreCmdProxy_get_response(&resp, (void**)&resp_data);
190 // resp_data.
197 ret->upload = resp_data->upload;
198 ret->download = resp_data->download
215 UICmdGetNetDelayResp* resp_data = NULL; local
262 char* resp_data = NULL; local
    [all...]
core-commands-impl.c 125 * resp_data - Response data. Data size is defined by the header.
130 _coreCmdImpl_respond(CoreCmdImpl* corecmd, UICmdRespHeader* resp, void* resp_data)
139 if (status > 0 && resp_data != NULL && resp->resp_data_size != 0) {
140 status = syncsocket_write(corecmd->sync_writer, resp_data,
207 UICmdGetNetSpeedResp* resp_data = NULL; local
229 resp_data =
231 resp_data->upload = netspeed->upload;
232 resp_data->download = netspeed->download;
233 strcpy(resp_data->name, netspeed->name);
235 strcpy(resp_data->name + strlen(resp_data->name) + 1
251 UICmdGetNetDelayResp* resp_data = NULL; local
    [all...]
  /development/scripts/app_engine_server/
memcache_zipserve.py 439 resp_data = self.GetFromCache(name)
440 if resp_data is None:
442 resp_data = self.GetFromNegativeCache(name)
443 if resp_data is None:
444 resp_data = self.GetFromStore(name)
448 if resp_data is not None:
449 self.StoreOrUpdateInCache(name, resp_data)
484 self.response.out.write(resp_data)
488 self.response.out.write(resp_data)
492 self.response.out.write(resp_data)
    [all...]
  /external/chromium/net/http/
http_transaction_unittest.cc 230 std::string resp_data = t->data; local
232 (t->handler)(request, &resp_status, &resp_headers, &resp_data);
250 data_ = resp_data;
http_network_transaction_unittest.cc     [all...]
  /external/libnfc-nxp/src/
phDnldNfc.c 2596 phDnldNfc_sData_Hdr_t *resp_data = local
2654 phDnldNfc_sData_Hdr_t *resp_data = NULL; local
    [all...]
  /external/chromium/net/spdy/
spdy_network_transaction_unittest.cc     [all...]

Completed in 1788 milliseconds