Home
last modified time | relevance | path

Searched refs:newContents (Results 1 – 1 of 1) sorted by relevance

/system/core/libcutils/
Darray.c70 void** newContents; in ensureCapacity() local
73 newContents = malloc(newCapacity * sizeof(void*)); in ensureCapacity()
74 if (newContents == NULL) { in ensureCapacity()
79 newContents = realloc(array->contents, sizeof(void*) * newCapacity); in ensureCapacity()
80 if (newContents == NULL) { in ensureCapacity()
86 array->contents = newContents; in ensureCapacity()