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
228
int
maps_count
, maps_size;
local
237
maps_count
= 0; maps_size = INITIAL_MAPS;
248
if (
maps_count
>= maps_size) {
260
maps[
maps_count
] = map = calloc(1, sizeof(*map));
270
for (;
maps_count
> 0;
maps_count
--)
271
pm_map_destroy(maps[
maps_count
]);
280
maps_count
++;
285
new_maps = realloc(maps,
maps_count
* sizeof(pm_map_t*));
286
if (
maps_count
&& !new_maps)
[
all
...]
Completed in 39 milliseconds