Searched refs:netspeed (Results 1 – 9 of 9) sorted by relevance
/external/qemu/android/protocol/ |
D | core-commands-impl.c | 217 const NetworkSpeed* netspeed = &android_netspeeds[cmd->index]; in _coreCmdImpl_handle_command() local 221 strlen(netspeed->name) + 1; in _coreCmdImpl_handle_command() 223 if (netspeed->display != NULL) { in _coreCmdImpl_handle_command() 224 resp.resp_data_size += strlen(netspeed->display) + 1; in _coreCmdImpl_handle_command() 231 resp_data->upload = netspeed->upload; in _coreCmdImpl_handle_command() 232 resp_data->download = netspeed->download; in _coreCmdImpl_handle_command() 233 strcpy(resp_data->name, netspeed->name); in _coreCmdImpl_handle_command() 234 if (netspeed->display != NULL) { in _coreCmdImpl_handle_command() 236 netspeed->display); in _coreCmdImpl_handle_command()
|
D | core-commands-qemu.c | 65 corecmd_get_netspeed(int index, NetworkSpeed** netspeed) in corecmd_get_netspeed() argument 71 *netspeed = (NetworkSpeed*)malloc(sizeof(NetworkSpeed)); in corecmd_get_netspeed() 72 memcpy(*netspeed, &android_netspeeds[index], sizeof(NetworkSpeed)); in corecmd_get_netspeed()
|
D | core-commands-proxy.c | 166 corecmd_get_netspeed(int index, NetworkSpeed** netspeed) in corecmd_get_netspeed() argument 191 *netspeed = malloc(sizeof(NetworkSpeed) + 1 + in corecmd_get_netspeed() 193 ret = *netspeed; in corecmd_get_netspeed()
|
D | core-commands-api.h | 61 extern int corecmd_get_netspeed(int index, NetworkSpeed** netspeed);
|
/external/qemu/android/ |
D | cmdline-options.h | 94 OPT_PARAM( netspeed, "<speed>", "maximum network download/upload speeds" )
|
D | main.c | 429 if (!opts->netspeed && skin_network_speed) { in main() 432 opts->netspeed = (char*)skin_network_speed; in main() 531 if (opts->netspeed) { in main() 533 args[n++] = opts->netspeed; in main()
|
/external/qemu/docs/ |
D | ANDROID-SKIN-FILES.TXT | 217 -netspeed <speed> emulator command-line option.
|
/external/qemu/ |
D | CHANGES.TXT | 89 - Fix net shaping regression: -netspeed and -netdelay did not work anymore. 439 - Setting the network speed through the console or the -netspeed option will
|
D | qemu-options.hx | 1760 DEF("netspeed", HAS_ARG, QEMU_OPTION_netspeed, \ 1761 "-netspeed <speed> maximum network download/upload speeds\n")
|