OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NetworkSpeed
(Results
1 - 8
of
8
) sorted by null
/external/qemu/android/protocol/
core-commands-api.h
49
/* Requests a
NetworkSpeed
instance from the Core.
51
* index - Index of an entry in the
NetworkSpeed
array.
52
* netspeed - Upon success contains allocated and initialized
NetworkSpeed
54
* "display" fileds in the returned
NetworkSpeed
instance are containd
55
* inside the buffer allocated for the returned
NetworkSpeed
instance.
61
extern int corecmd_get_netspeed(int index,
NetworkSpeed
** netspeed);
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-proxy.c
166
corecmd_get_netspeed(int index,
NetworkSpeed
** netspeed)
186
NetworkSpeed
* ret;
187
// Allocate memory for the returning
NetworkSpeed
instance.
188
// It includes:
NetworkSpeed
structure +
191
*netspeed = malloc(sizeof(
NetworkSpeed
) + 1 +
195
// Copy data obtained from the core to the returning
NetworkSpeed
199
ret->name = (char*)ret + sizeof(
NetworkSpeed
);
core-commands-impl.c
217
const
NetworkSpeed
* netspeed = &android_netspeeds[cmd->index];
/external/qemu/android/
android.h
40
}
NetworkSpeed
;
42
extern const
NetworkSpeed
android_netspeeds[];
help.c
779
NetworkSpeed
* android_netspeed;
[
all
...]
console.c
705
const
NetworkSpeed
* speed = android_netspeeds;
[
all
...]
/external/qemu/
net-android.c
139
const
NetworkSpeed
android_netspeeds[] = {
[
all
...]
Completed in 103 milliseconds