OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:g_malloc0
(Results
1 - 25
of
84
) sorted by null
1
2
3
4
/external/qemu/util/
error.c
37
err =
g_malloc0
(sizeof(*err));
62
err =
g_malloc0
(sizeof(*err));
99
err =
g_malloc0
(sizeof(*err));
124
err_new =
g_malloc0
(sizeof(*err));
module.c
63
e =
g_malloc0
(sizeof(*e));
/external/qemu/hw/core/
irq.c
47
s = (qemu_irq *)
g_malloc0
(sizeof(qemu_irq) * n);
48
p = (struct IRQState *)
g_malloc0
(sizeof(struct IRQState) * n);
qdev.c
62
t =
g_malloc0
(sizeof(DeviceType));
85
dev =
g_malloc0
(t->info->size);
240
prop =
g_malloc0
(sizeof(*prop));
442
bus =
g_malloc0
(size);
/external/qemu/include/android/
monitor.h
11
mon =
g_malloc0
(sizeof(*mon));
/external/qemu/distrib/mini-glib/include/
glib.h
79
void*
g_malloc0
(size_t size);
84
#define g_new0(type, count) ((type*)
g_malloc0
(sizeof(type) * (count)))
/external/qemu/ui/
input.c
51
s =
g_malloc0
(sizeof(QEMUPutKBDEntry));
97
s =
g_malloc0
(sizeof(QEMUPutMouseEntry));
135
s =
g_malloc0
(sizeof(QEMUPutLEDEntry));
keymaps.c
55
kr =
g_malloc0
(sizeof(*kr));
82
k =
g_malloc0
(sizeof(kbd_layout_t));
/external/qemu/include/hw/
elf_ops.h
164
s =
g_malloc0
(sizeof(*s));
220
phdr =
g_malloc0
(size);
238
data =
g_malloc0
(mem_size);
/external/qemu/backends/
msmouse.c
71
chr =
g_malloc0
(sizeof(CharDriverState));
/external/qemu/
monitor-android.c
44
mon =
g_malloc0
(sizeof(*mon));
qemu-char.c
256
chr =
g_malloc0
(sizeof(CharDriverState));
503
chr =
g_malloc0
(sizeof(CharDriverState));
504
d =
g_malloc0
(sizeof(MuxDriver));
681
chr =
g_malloc0
(sizeof(CharDriverState));
682
s =
g_malloc0
(sizeof(FDCharDriver));
1055
chr =
g_malloc0
(sizeof(CharDriverState));
1056
s =
g_malloc0
(sizeof(PtyCharDriver));
[
all
...]
async.c
67
struct AsyncContext *new =
g_malloc0
(sizeof(*new));
130
bh =
g_malloc0
(sizeof(QEMUBH));
iohandler.c
70
ioh =
g_malloc0
(sizeof(IOHandlerRecord));
188
rec =
g_malloc0
(sizeof(ChildProcessRecord));
savevm.c
370
s =
g_malloc0
(sizeof(QEMUFileStdio));
490
s =
g_malloc0
(sizeof(QEMUFileSocket));
533
s =
g_malloc0
(sizeof(QEMUFileSocket));
552
s =
g_malloc0
(sizeof(QEMUFileStdio));
628
f =
g_malloc0
(sizeof(QEMUFile));
[
all
...]
aio-android.c
85
node =
g_malloc0
(sizeof(AioHandler));
aio.c
84
node =
g_malloc0
(sizeof(AioHandler));
/external/qemu/qobject/
qerror.c
34
qerr =
g_malloc0
(sizeof(*qerr));
qdict.c
38
qdict =
g_malloc0
(sizeof(*qdict));
78
entry =
g_malloc0
(sizeof(*entry));
/external/qemu/hw/i386/
smbios.c
96
smbios_entries =
g_malloc0
(smbios_entries_len);
183
smbios_entries =
g_malloc0
(smbios_entries_len);
/external/qemu/audio/
wavcapture.c
123
wav =
g_malloc0
(sizeof (*wav));
/external/qemu/hw/android/
android_arm.c
92
smc_device =
g_malloc0
(sizeof(*smc_device));
/external/qemu/hw/android/goldfish/
interrupt.c
169
s =
g_malloc0
(sizeof(*s));
/external/qemu/qom/
object.c
93
TypeImpl *ti =
g_malloc0
(sizeof(*ti));
241
ti->class =
g_malloc0
(ti->class_size);
731
prop =
g_malloc0
(sizeof(*prop));
1275
StringProperty *prop =
g_malloc0
(sizeof(*prop));
1331
BoolProperty *prop =
g_malloc0
(sizeof(*prop));
[
all
...]
/external/qemu/block/
qcow2-snapshot.c
79
s->snapshots =
g_malloc0
(s->nb_snapshots * sizeof(QCowSnapshot));
402
sn_tab =
g_malloc0
(s->nb_snapshots * sizeof(QEMUSnapshotInfo));
Completed in 567 milliseconds
1
2
3
4