Home
last modified time | relevance | path

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

/external/qemu/android/protocol/
Dcore-commands-impl.c261 const NetworkLatency* netdelay = &android_netdelays[cmd->index]; in _coreCmdImpl_handle_command() local
265 strlen(netdelay->name) + 1; in _coreCmdImpl_handle_command()
267 if (netdelay->display != NULL) { in _coreCmdImpl_handle_command()
268 resp.resp_data_size += strlen(netdelay->display) + 1; in _coreCmdImpl_handle_command()
275 resp_data->min_ms = netdelay->min_ms; in _coreCmdImpl_handle_command()
276 resp_data->max_ms = netdelay->max_ms; in _coreCmdImpl_handle_command()
277 strcpy(resp_data->name, netdelay->name); in _coreCmdImpl_handle_command()
278 if (netdelay->display != NULL) { in _coreCmdImpl_handle_command()
280 netdelay->display); in _coreCmdImpl_handle_command()
Dcore-commands-qemu.c77 corecmd_get_netdelay(int index, NetworkLatency** netdelay) in corecmd_get_netdelay() argument
83 *netdelay = (NetworkLatency*)malloc(sizeof(NetworkLatency)); in corecmd_get_netdelay()
84 memcpy(*netdelay, &android_netdelays[index], sizeof(NetworkLatency)); in corecmd_get_netdelay()
Dcore-commands-proxy.c211 corecmd_get_netdelay(int index, NetworkLatency** netdelay) in corecmd_get_netdelay() argument
236 *netdelay = malloc(sizeof(NetworkLatency) + 1 + in corecmd_get_netdelay()
238 ret = *netdelay; in corecmd_get_netdelay()
Dcore-commands-api.h75 extern int corecmd_get_netdelay(int index, NetworkLatency** netdelay);
/external/qemu/android/
Dcmdline-options.h95 OPT_PARAM( netdelay, "<delay>", "network latency emulation" )
Dmain.c379 if (!opts->netdelay && skin_network_delay) { in main()
382 opts->netdelay = (char*)skin_network_delay; in main()
479 if (opts->netdelay) { in main()
481 args[n++] = opts->netdelay; in main()
/external/qemu/docs/
DANDROID-SKIN-FILES.TXT221 -netdelay <delay> emulator command-line option.
/external/qemu/
Dqemu-options.hx1774 DEF("netdelay", HAS_ARG, QEMU_OPTION_netdelay, \
1775 "-netdelay <delay> network latency emulation\n")
DCHANGES.TXT89 - Fix net shaping regression: -netspeed and -netdelay did not work anymore.