Lines Matching refs:AllocatedOutputBuffer
223 VOID *AllocatedOutputBuffer;
232 AllocatedOutputBuffer = NULL;
263 AllocatedOutputBuffer = AllocatePool (OutputBufferSize);
264 if (AllocatedOutputBuffer == NULL) {
268 *OutputBuffer = AllocatedOutputBuffer;
284 if (AllocatedOutputBuffer != NULL) {
285 FreePool (AllocatedOutputBuffer);
294 if (*OutputBuffer != AllocatedOutputBuffer) {
299 CopyMem (AllocatedOutputBuffer, *OutputBuffer, OutputBufferSize);
300 *OutputBuffer = AllocatedOutputBuffer;