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

  /external/qemu/android/protocol/
core-commands-api.h 52 * netspeed - Upon success contains allocated and initialized NetworkSpeed
61 extern int corecmd_get_netspeed(int index, NetworkSpeed** netspeed);
core-commands-qemu.c 65 corecmd_get_netspeed(int index, NetworkSpeed** netspeed)
71 *netspeed = (NetworkSpeed*)malloc(sizeof(NetworkSpeed));
72 memcpy(*netspeed, &android_netspeeds[index], sizeof(NetworkSpeed));
core-commands-impl.c 217 const NetworkSpeed* netspeed = &android_netspeeds[cmd->index]; local
219 // fixed header + zero-terminated netspeed name.
221 strlen(netspeed->name) + 1;
222 // Count in zero-terminated netspeed display.
223 if (netspeed->display != NULL) {
224 resp.resp_data_size += strlen(netspeed->display) + 1;
231 resp_data->upload = netspeed->upload;
232 resp_data->download = netspeed->download;
233 strcpy(resp_data->name, netspeed->name);
234 if (netspeed->display != NULL)
    [all...]
core-commands-proxy.c 166 corecmd_get_netspeed(int index, NetworkSpeed** netspeed)
191 *netspeed = malloc(sizeof(NetworkSpeed) + 1 +
193 ret = *netspeed;
  /external/qemu/android/
cmdline-options.h 95 OPT_PARAM( netspeed, "<speed>", "maximum network download/upload speeds" )
main.c 373 if (!opts->netspeed && skin_network_speed) {
376 opts->netspeed = (char*)skin_network_speed;
478 if (opts->netspeed) {
479 args[n++] = "-netspeed";
480 args[n++] = opts->netspeed;
    [all...]
  /tools/motodev/src/plugins/emulator/
plugin.properties 126 StartUp_Options_NetFast_Description=Shortcut for -netspeed full -netdelay none

Completed in 151 milliseconds