OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:qemu_malloc
(Results
1 - 25
of
63
) sorted by null
1
2
3
/external/qemu/
qemu-malloc.c
42
void *
qemu_malloc
(size_t size)
function
79
ptr =
qemu_malloc
(len + 1);
93
new =
qemu_malloc
(size + 1);
qbool.c
34
qb =
qemu_malloc
(sizeof(*qb));
qfloat.c
34
qf =
qemu_malloc
(sizeof(*qf));
qint.c
33
qi =
qemu_malloc
(sizeof(*qi));
acl.c
58
acl =
qemu_malloc
(sizeof(*acl));
119
entry =
qemu_malloc
(sizeof(*entry));
145
entry =
qemu_malloc
(sizeof(*entry));
qstring.c
43
qstring =
qemu_malloc
(sizeof(*qstring));
48
qstring->string =
qemu_malloc
(qstring->capacity + 1);
qlist.c
34
qlist =
qemu_malloc
(sizeof(*qlist));
67
entry =
qemu_malloc
(sizeof(*entry));
async.c
102
bh =
qemu_malloc
(sizeof(*bh));
loader.c
268
ptr =
qemu_malloc
(size);
380
p =
qemu_malloc
(size);
505
data =
qemu_malloc
(hdr->ih_size);
519
data =
qemu_malloc
(max_bytes);
shaper.c
75
packet =
qemu_malloc
(packet_size);
165
NetShaper shaper =
qemu_malloc
(sizeof(*shaper));
462
NetDelay delay =
qemu_malloc
(sizeof(*delay));
550
session =
qemu_malloc
( sizeof(*session) );
translate-all.c
151
qemu_malloc
(gen_opc_tpc2gpc_pairs * 2 * sizeof(uintptr_t));
/external/qemu/block/
cloop.c
73
s->offsets =
qemu_malloc
(offsets_size);
88
s->compressed_block =
qemu_malloc
(max_compressed_block_size+1);
89
s->uncompressed_block =
qemu_malloc
(s->block_size);
parallels.c
91
s->catalog_bitmap =
qemu_malloc
(s->catalog_size * 4);
qcow2-snapshot.c
99
sn->id_str =
qemu_malloc
(id_str_size + 1);
105
sn->name =
qemu_malloc
(name_size + 1);
279
l1_table =
qemu_malloc
(s->l1_size * sizeof(uint64_t));
293
snapshots1 =
qemu_malloc
((s->nb_snapshots + 1) * sizeof(QCowSnapshot));
dmg.c
173
s->compressed_chunk =
qemu_malloc
(max_compressed_size+1);
174
s->uncompressed_chunk =
qemu_malloc
(512*max_sectors_per_chunk);
qcow.c
132
s->l1_table =
qemu_malloc
(s->l1_size * sizeof(uint64_t));
142
s->l2_cache =
qemu_malloc
(s->l2_size * L2_CACHE_SIZE * sizeof(uint64_t));
145
s->cluster_cache =
qemu_malloc
(s->cluster_size);
148
s->cluster_data =
qemu_malloc
(s->cluster_size);
867
out_buf =
qemu_malloc
(s->cluster_size + (s->cluster_size / 1000) + 128);
qcow2-refcount.c
64
s->refcount_block_cache =
qemu_malloc
(s->cluster_size);
66
s->refcount_table =
qemu_malloc
(refcount_table_size2);
778
l2_table =
qemu_malloc
(l2_size);
944
l2_table =
qemu_malloc
(l2_size);
[
all
...]
vmdk.c
290
rgd_buf =
qemu_malloc
(gd_size);
309
gd_buf =
qemu_malloc
(gd_size);
411
s->l1_table =
qemu_malloc
(l1_size);
419
s->l1_backup_table =
qemu_malloc
(l1_size);
427
s->l2_cache =
qemu_malloc
(s->l2_size * L2_CACHE_SIZE * sizeof(uint32_t));
/external/qemu/memcheck/
memcheck_mmrange_map.c
129
MMRangeMapEntry* rdesc =
qemu_malloc
(sizeof(MMRangeMapEntry));
192
(MMRangeMapEntry*)
qemu_malloc
(sizeof(MMRangeMapEntry));
198
new_entry->desc.path =
qemu_malloc
(strlen(entry->desc.path) + 1);
memcheck_common.h
418
addr_array->addr =
qemu_malloc
(sizeof(target_ulong));
447
new_arr =
qemu_malloc
(sizeof(target_ulong) * (addr_array->num + 1));
memcheck_malloc_map.c
168
AllocMapEntry* adesc =
qemu_malloc
(sizeof(AllocMapEntry));
231
(AllocMapEntry*)
qemu_malloc
(sizeof(AllocMapEntry));
241
qemu_malloc
(entry->desc.call_stack_count * sizeof(target_ulong));
memcheck_proc_management.c
71
ThreadDesc* new_thread = (ThreadDesc*)
qemu_malloc
(sizeof(ThreadDesc));
101
ProcDesc* new_proc = (ProcDesc*)
qemu_malloc
(sizeof(ProcDesc));
272
proc->image_path =
qemu_malloc
(strlen(image_path) + 1);
385
qemu_malloc
(thread->call_stack_max * sizeof(ThreadCallStackEntry));
408
qemu_malloc
(strlen(rdesc->path) + 1);
718
desc.path =
qemu_malloc
(strlen(path) + 1);
788
tail.path =
qemu_malloc
(strlen(desc.path) + 1);
/external/qemu/hw/
fw_cfg.c
208
copy =
qemu_malloc
(sizeof(value));
217
copy =
qemu_malloc
(sizeof(value));
226
copy =
qemu_malloc
(sizeof(value));
/external/qemu/android/protocol/
core-commands-impl.c
92
corecmd->cmd_param_buf =
qemu_malloc
(size);
230
(UICmdGetNetSpeedResp*)
qemu_malloc
(resp.resp_data_size);
274
(UICmdGetNetDelayResp*)
qemu_malloc
(resp.resp_data_size);
ui-commands-proxy.c
152
(UICmdChangeDispBrightness*)
qemu_malloc
(cmd_size);
Completed in 1338 milliseconds
1
2
3