Home | History | Annotate | Download | only in linux

Lines Matching refs:buffer_pool_

140       buffer_pool_(NULL),
413 static_cast<uint8*>(buffer_pool_[buffer.index].start),
456 buffer_pool_ = new Buffer[r_buffer.count];
470 buffer_pool_[i].start = mmap(NULL, buffer.length, PROT_READ | PROT_WRITE,
472 if (buffer_pool_[i].start == MAP_FAILED) {
475 buffer_pool_[i].length = buffer.length;
485 if (!buffer_pool_)
490 munmap(buffer_pool_[i].start, buffer_pool_[i].length);
502 delete [] buffer_pool_;
503 buffer_pool_ = NULL;