Home
last modified time | relevance | path

Searched refs:netspeed (Results 1 – 9 of 9) sorted by relevance

/external/qemu/android/protocol/
Dcore-commands-impl.c217 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()
Dcore-commands-qemu.c65 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()
Dcore-commands-proxy.c166 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()
Dcore-commands-api.h61 extern int corecmd_get_netspeed(int index, NetworkSpeed** netspeed);
/external/qemu/android/
Dcmdline-options.h94 OPT_PARAM( netspeed, "<speed>", "maximum network download/upload speeds" )
Dmain.c429 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/
DANDROID-SKIN-FILES.TXT217 -netspeed <speed> emulator command-line option.
/external/qemu/
DCHANGES.TXT89 - Fix net shaping regression: -netspeed and -netdelay did not work anymore.
439 - Setting the network speed through the console or the -netspeed option will
Dqemu-options.hx1760 DEF("netspeed", HAS_ARG, QEMU_OPTION_netspeed, \
1761 "-netspeed <speed> maximum network download/upload speeds\n")