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

  /external/qemu/android/protocol/
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-api.h 52 * netspeed - Upon success contains allocated and initialized NetworkSpeed
61 extern int corecmd_get_netspeed(int index, NetworkSpeed** netspeed);
core-commands-proxy.c 166 corecmd_get_netspeed(int index, NetworkSpeed** netspeed)
191 *netspeed = malloc(sizeof(NetworkSpeed) + 1 +
193 ret = *netspeed;
  /frameworks/base/docs/html-intl/ja/guide/publishing/
preparing.jd 64 <li>?????????????????????????????????<code>-dpi</code>?<code>-device</code>?<code>-scale</code>?<code>-netspeed</code>?<code>-netdelay</code>?<code>-cpu-delay</code> ????????? ??????????????????????????? ??????????????????????????????????????????????????????????????? UI ?????????????????????????????????????????????????????????????? </li>
  /frameworks/base/docs/html/tools/testing/
what_to_test.jd 81 <a href="{@docRoot}tools/help/emulator.html#netspeed">Network Speed Emulation</a>.
  /external/qemu/android/
cmdline-options.h 96 OPT_PARAM( netspeed, "<speed>", "maximum network download/upload speeds" )
main.c 377 if (!opts->netspeed && skin_network_speed) {
380 opts->netspeed = (char*)skin_network_speed;
482 if (opts->netspeed) {
483 args[n++] = "-netspeed";
484 args[n++] = opts->netspeed;
    [all...]
help.c 784 " skin configuration, or with '-netspeed <speed>' and '-netdelay <delay>'.\n\n"
786 " the format of -netspeed is one of the following (numbers are kbits/s):\n\n" );
789 PRINTF( " -netspeed %-12s %-15s (up: %.1f, down: %.1f)\n",
797 PRINTF( " -netspeed %-12s %s", "<num>", "select both upload and download speed\n");
798 PRINTF( " -netspeed %-12s %s", "<up>:<down>", "select individual up and down speed\n");
    [all...]
  /frameworks/base/docs/html/tools/help/
emulator.jd 368 <td>Shortcut for <code>-netspeed full -netdelay none</code></td>
371 <td><code>-netspeed &lt;speed&gt;</code></td>
374 <a href="{@docRoot}tools/devices/emulator.html#netspeed">Network Speed Emulation</a> for
  /external/qemu/docs/
ANDROID-SKIN-FILES.TXT 222 -netspeed <speed> emulator command-line option.
  /frameworks/base/docs/html/guide/practices/app-design/
seamlessness.jd 213 href="{@docRoot}tools/help/emulator.html#netspeed">command-line
  /frameworks/base/docs/html/guide/practices/
seamlessness.jd 214 href="{@docRoot}tools/help/emulator.html#netspeed">command-line
  /frameworks/base/docs/html/tools/devices/
emulator.jd 52 <li><a href="#netspeed">Network Speed Emulation</a></li>
    [all...]
  /external/qemu/
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
    [all...]
qemu-options.hx     [all...]
vl-android.c 374 /* -netspeed option value. */
    [all...]
  /frameworks/base/docs/html/sdk/
RELEASENOTES.jd     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AndroidLaunchController.java 100 private static final String FLAG_NETSPEED = "-netspeed"; //$NON-NLS-1$
    [all...]

Completed in 1822 milliseconds