Lines Matching refs:block
32 // Data about a block written to disk so that it can be verified later.
48 int64 addr_; // address of first sector in block
49 int64 size_; // size of block
51 bool initialized_; // flag indicating the block was written on disk
57 // Disk Block table - store data from blocks to be write / read by
68 // Get a random block from the list. Only returns if a element
77 // Return a new block in a unused address.
79 // Remove block from structure (called by write threads)
80 int RemoveBlock(BlockData *block);
81 // Release block to be erased (called by random threads)
82 int ReleaseBlock(BlockData *block);
86 void InsertOnStructure(BlockData *block);
92 BlockData *block;
105 int write_block_size_; // Block size, in bytes