#include <fio_UV_t.h>
Definition at line 36 of file fio_UV_t.h.
Public Member Functions | |
| fio_UV_t () | |
| fio_UV_t (ivd_RelFileID_t a_FileID, ivd_VectorSize_t a_VectorSize, ivd_RecordIDX_t a_Idx) | |
| fio_UV_t (const fio_UV_t &a_el2) | |
| fio_UV_t & | operator= (const fio_UV_t &a_el2) |
| void | Dump (ostream &os, ivd_RecordIDX_t a_idx=0) |
Public Attributes | |
| ivd_RelFileID_t | m_fileID |
| ivd_VectorSize_t | m_vectorSize |
| ivd_RecordIDX_t | m_idx |
| log_CLASSID_m | |
| fio_UV_t::fio_UV_t | ( | ) | [inline] |
| fio_UV_t::fio_UV_t | ( | ivd_RelFileID_t | a_FileID, | |
| ivd_VectorSize_t | a_VectorSize, | |||
| ivd_RecordIDX_t | a_Idx | |||
| ) | [inline] |
Definition at line 39 of file fio_UV_t.h.
00043 : 00044 m_fileID(a_FileID), 00045 m_vectorSize(a_VectorSize), 00046 m_idx(a_Idx) { 00047 // Empty 00048 };
| fio_UV_t::fio_UV_t | ( | const fio_UV_t & | a_el2 | ) | [inline] |
Definition at line 50 of file fio_UV_t.h.
00051 : 00052 m_fileID(a_el2.m_fileID), 00053 m_vectorSize(a_el2.m_vectorSize), 00054 m_idx(a_el2.m_idx) { 00055 // Empty 00056 };
Definition at line 58 of file fio_UV_t.h.
References m_fileID, m_idx, and m_vectorSize.
00058 { 00059 00060 m_fileID = a_el2.m_fileID; 00061 m_vectorSize = a_el2.m_vectorSize; 00062 m_idx = a_el2.m_idx; 00063 return *this; 00064 };
| void fio_UV_t::Dump | ( | ostream & | os, | |
| ivd_RecordIDX_t | a_idx = 0 | |||
| ) | [inline] |
Definition at line 66 of file fio_UV_t.h.
Referenced by fio_JourFile::Dump().
00066 { 00067 if ( a_idx == 0 00068 || a_idx == m_idx) { 00069 os << setw(12) << int(m_fileID) << setw(12) << int(m_vectorSize) << setw(12) << m_idx << endl; 00070 } 00071 };

Definition at line 71 of file fio_UV_t.h.
Referenced by operator=(), fio_Transaction::PutVectorToBuffer(), fio_Transaction::ReadUVListFromJour(), fio_Transaction::ReplyAddVectorToBuffer(), fio_Transaction::ReplyRemoveVectorFromBuffer(), fio_JourFile::TestFreedVector(), and fio_JourFile::TestUsedVector().
Definition at line 74 of file fio_UV_t.h.
Referenced by operator=(), fio_Transaction::PutVectorToBuffer(), fio_Transaction::ReadUVListFromJour(), fio_Transaction::ReplyAddVectorToBuffer(), fio_Transaction::ReplyRemoveVectorFromBuffer(), fio_JourFile::TestFreedVector(), and fio_JourFile::TestUsedVector().
Definition at line 75 of file fio_UV_t.h.
Referenced by operator=(), fio_Transaction::PutVectorToBuffer(), fio_uvListMgr::ReadUV(), fio_Transaction::ReadUVListFromJour(), fio_Transaction::ReplyAddVectorToBuffer(), fio_Transaction::ReplyRemoveVectorFromBuffer(), fio_JourFile::TestFreedVector(), fio_JourFile::TestUsedVector(), and fio_uvListMgr::WriteUV().
Definition at line 77 of file fio_UV_t.h.
1.5.6