Lines Matching refs:tempSpace
297 char* tempSpace; in Read() local
309 tempSpace = new char [blockSize]; in Read()
314 tempSpace = new char [numBlocks * blockSize]; in Read()
316 if (tempSpace == NULL) { in Read()
322 retval = read(fd, tempSpace, numBlocks * blockSize); in Read()
323 memcpy(buffer, tempSpace, numBytes); in Read()
329 delete[] tempSpace; in Read()
340 char* tempSpace; in Write() local
352 tempSpace = new char [blockSize]; in Write()
356 tempSpace = new char [numBlocks * blockSize]; in Write()
358 if (tempSpace == NULL) { in Write()
364 memcpy(tempSpace, buffer, numBytes); in Write()
366 tempSpace[i] = 0; in Write()
368 retval = write(fd, tempSpace, numBlocks * blockSize); in Write()
374 delete[] tempSpace; in Write()