OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:maps_count
(Results
1 - 1
of
1
) sorted by null
/system/extras/libpagemap/
pm_process.c
252
int
maps_count
, maps_size;
local
261
maps_count
= 0; maps_size = INITIAL_MAPS;
278
if (
maps_count
>= maps_size) {
291
maps[
maps_count
] = map = calloc(1, sizeof(*map));
302
for (;
maps_count
> 0;
maps_count
--)
303
pm_map_destroy(maps[
maps_count
]);
314
maps_count
++;
320
new_maps = realloc(maps,
maps_count
* sizeof(pm_map_t*));
321
if (
maps_count
&& !new_maps)
[
all
...]
Completed in 1176 milliseconds