Home | History | Annotate | Download | only in src

Lines Matching refs:newData

740   MemoryData* newData;
793 newData = (MemoryData *) PortNew(actualSize);
794 if (newData == NULL)
802 memcpy(newData, oldData, actualSize);
806 memcpy(newData, oldData, oldSize);
810 newData = (MemoryData *) realloc(oldData, actualSize);
816 newData = oldData;
820 if (newData != NULL && bMalloc)
834 newData->stackTrace = oldStackTrace;
835 newData->next = oldNext;
836 newData->last = oldLast;
837 if (newData->last != NULL)
838 newData->last->next = newData;
839 if (newData->next != NULL)
840 newData->next->last = newData;
842 e->first = newData;
844 e->last = newData;
849 if (newData != NULL)
851 newData->size = actualSize;
852 result = (void*)(newData + 1);