OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:networkspeed
(Results
1 - 10
of
10
) 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-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.h
64
* Instances of this structure contains content of the
NetworkSpeed
structure,
69
/* Zero-terminated
NetworkSpeed
's "name" strings starts here. The "display"
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
770
NetworkSpeed
* android_netspeed;
[
all
...]
console.c
705
const
NetworkSpeed
* speed = android_netspeeds;
[
all
...]
/tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/skin/android/parser/
LayoutFileModel.java
77
private String
networkSpeed
;
99
void setNetworkSpeed(String
networkSpeed
)
101
this.
networkSpeed
=
networkSpeed
;
180
return
networkSpeed
;
/external/qemu/
net-android.c
139
const
NetworkSpeed
android_netspeeds[] = {
[
all
...]
Completed in 517 milliseconds