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

  /external/qemu/android/protocol/
core-commands-api.h 63 /* Requests a NetworkLatency instance from the Core.
65 * index - Index of an entry in the NetworkLatency array.
66 * netdelay - Upon success contains allocated and initialized NetworkLatency
68 * "display" fileds in the returned NetworkLatency instance are containd
69 * inside the buffer allocated for the returned NetworkLatency instance.
75 extern int corecmd_get_netdelay(int index, NetworkLatency** netdelay);
core-commands-qemu.c 77 corecmd_get_netdelay(int index, NetworkLatency** netdelay)
83 *netdelay = (NetworkLatency*)malloc(sizeof(NetworkLatency));
84 memcpy(*netdelay, &android_netdelays[index], sizeof(NetworkLatency));
core-commands-proxy.c 211 corecmd_get_netdelay(int index, NetworkLatency** netdelay)
231 NetworkLatency* ret;
232 // Allocate memory for the returning NetworkLatency instance.
233 // It includes: NetworkLatency structure +
236 *netdelay = malloc(sizeof(NetworkLatency) + 1 +
240 // Copy data obtained from the core to the returning NetworkLatency
244 ret->name = (char*)ret + sizeof(NetworkLatency);
core-commands-impl.c 261 const NetworkLatency* netdelay = &android_netdelays[cmd->index];
  /external/qemu/android/
android.h 51 } NetworkLatency;
53 extern const NetworkLatency android_netdelays[];
help.c 780 NetworkLatency* android_netdelay;
    [all...]
  /external/qemu/
net-android.c 152 const NetworkLatency android_netdelays[] = {
    [all...]

Completed in 420 milliseconds