Home | History | Annotate | Download | only in UncachedMemoryAllocationLib

Lines Matching refs:Allocated

55   BOOLEAN               Allocated;

60 // Track the size of the non-allocated buffer in the linked-list
65 * of the previously allocated buffer.
72 * @param Allocation Address of the newly allocated buffer
104 if ((Node->Allocated == FALSE) && (Node->MemoryType == MemoryType)) {
109 Node->Allocated = TRUE;
130 NewNode->Allocated = TRUE;
182 NewNode->Allocated = TRUE;
220 Node->Allocated = FALSE;
225 // If the size of the non-allocated reaches the threshold we raise a warning.
229 DEBUG ((EFI_D_WARN, "Warning: The list of non-allocated buffer has reach the threshold.\n"));
240 * It frees all the non-allocated memory buffer.
241 * This function is not responsible to free allocated buffer (eg: case of memory leak,
266 // We only free the non-allocated buffer
267 if (OldNode->Allocated == FALSE) {