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

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

Completed in 331 milliseconds