Public Types | |
enum | { kInitialSize = 1024 , kMinimalSize = 128 } |
enum | EMode { kRead = 0 , kWrite = 1 } |
enum | EStatusBits { kIsOwner = (1ULL << ( 16 )) , kCannotHandleMemberWiseStreaming = (1ULL << ( 17 )) } |
Public Types inherited from TObject | |
enum | { kIsOnHeap = 0x01000000 , kNotDeleted = 0x02000000 , kZombie = 0x04000000 , kInconsistent = 0x08000000 , kBitMask = 0x00ffffff } |
enum | { kSingleKey = (1ULL << ( 0 )) , kOverwrite = (1ULL << ( 1 )) , kWriteDelete = (1ULL << ( 2 )) } |
enum | EDeprecatedStatusBits { kObjInCanvas = (1ULL << ( 3 )) } |
enum | EStatusBits { kCanDelete = (1ULL << ( 0 )) , kMustCleanup = (1ULL << ( 3 )) , kIsReferenced = (1ULL << ( 4 )) , kHasUUID = (1ULL << ( 5 )) , kCannotPick = (1ULL << ( 6 )) , kNoContextMenu = (1ULL << ( 8 )) , kInvalidObject = (1ULL << ( 13 )) } |
Static Public Member Functions | |
static TClass * | Class () |
static const char * | Class_Name () |
static constexpr Version_t | Class_Version () |
static const char * | DeclFileName () |
static TClass * | GetClass (const char *className) |
Forward to TROOT::GetClass(). | |
static TClass * | GetClass (const std::type_info &typeinfo) |
Forward to TROOT::GetClass(). | |
Static Public Member Functions inherited from TObject | |
static TClass * | Class () |
static const char * | Class_Name () |
static constexpr Version_t | Class_Version () |
static const char * | DeclFileName () |
static Longptr_t | GetDtorOnly () |
Return destructor only flag. | |
static Bool_t | GetObjectStat () |
Get status of object stat flag. | |
static void | SetDtorOnly (void *obj) |
Set destructor only flag. | |
static void | SetObjectStat (Bool_t stat) |
Turn on/off tracking of objects in the TObjectTable. | |
Protected Types | |
typedef std::vector< TVirtualArray * > | CacheList_t |
Protected Types inherited from TObject | |
enum | { kOnlyPrepStep = (1ULL << ( 3 )) } |
Protected Member Functions | |
TBuffer () | |
TBuffer (const TBuffer &)=delete | |
void | operator= (const TBuffer &)=delete |
Int_t | Read (const char *name) override |
Read contents of object with specified name from the current directory. | |
Int_t | Write (const char *name, Int_t opt, Int_t bufs) const override |
Write this object to the current directory. | |
Int_t | Write (const char *name, Int_t opt, Int_t bufs) override |
Write this object to the current directory. | |
Protected Member Functions inherited from TObject | |
virtual void | DoError (int level, const char *location, const char *fmt, va_list va) const |
Interface to ErrorHandler (protected). | |
void | MakeZombie () |
Protected Attributes | |
char * | fBufCur |
char * | fBuffer |
char * | fBufMax |
Int_t | fBufSize |
CacheList_t | fCacheStack |
Realloc function to be used when extending the buffer. | |
Bool_t | fMode |
TObject * | fParent |
ReAllocCharFun_t | fReAllocFunc |
Int_t | fVersion |
#include <TBuffer.h>
|
protected |
TBuffer::TBuffer | ( | EMode | mode | ) |
Create an I/O buffer object.
Mode should be either TBuffer::kRead or TBuffer::kWrite. By default the I/O buffer has a size of TBuffer::kInitialSize (1024) bytes.
Definition at line 52 of file TBuffer.cxx.
Create an I/O buffer object.
Mode should be either TBuffer::kRead or TBuffer::kWrite.
Definition at line 73 of file TBuffer.cxx.
TBuffer::TBuffer | ( | EMode | mode, |
Int_t | bufsiz, | ||
void * | buf, | ||
Bool_t | adopt = kTRUE, | ||
ReAllocCharFun_t | reallocfunc = nullptr ) |
Create an I/O buffer object.
Mode should be either TBuffer::kRead or TBuffer::kWrite. By default the I/O buffer has a size of TBuffer::kInitialSize (1024) bytes. An external buffer can be passed to TBuffer via the buf argument. By default this buffer will be adopted unless adopt is false.
If the new buffer is not adopted and no memory allocation routine is provided, a Fatal error will be issued if the Buffer attempts to expand.
Definition at line 104 of file TBuffer.cxx.
|
virtual |
Delete an I/O buffer object.
Definition at line 140 of file TBuffer.cxx.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
void TBuffer::AutoExpand | ( | Int_t | size_needed | ) |
Automatically calculate a new size and expand the buffer to fit at least size_needed.
The goals is to minimize the number of memory allocation and the memory allocation which avoiding too much memory wastage.
If the size_needed is larger than the current size, the policy is to expand to double the current size or the size_needed which ever is largest.
Definition at line 158 of file TBuffer.cxx.
Byte-swap N primitive-elements in the buffer.
Bulk API relies on this function.
Definition at line 392 of file TBuffer.cxx.
|
pure virtual |
Implemented in TBufferFile, and TBufferText.
|
pure virtual |
Implemented in TBufferFile, and TBufferText.
Implemented in TBufferFile, and TBufferIO.
Implemented in TBufferFile, and TBufferIO.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
|
pure virtual |
Implemented in TBufferFile, TBufferJSON, TBufferSQL2, and TBufferXML.
|
pure virtual |
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Expand (or shrink) the I/O buffer to newsize bytes.
If copy is true (the default), the existing content of the buffer is preserved, otherwise the buffer is returned zero-ed out.
In order to avoid losing data, if the current length is greater than the requested size, we only shrink down to the current length.
Definition at line 223 of file TBuffer.cxx.
|
pure virtual |
|
pure virtual |
Implemented in TBufferIO.
Forward to TROOT::GetClass().
Definition at line 336 of file TBuffer.cxx.
Forward to TROOT::GetClass().
Definition at line 328 of file TBuffer.cxx.
|
pure virtual |
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
|
pure virtual |
Implemented in TBufferIO.
|
pure virtual |
Implemented in TBufferIO.
TObject * TBuffer::GetParent | ( | ) | const |
Return pointer to parent of this buffer.
Definition at line 262 of file TBuffer.cxx.
ReAllocCharFun_t TBuffer::GetReAllocFunc | ( | ) | const |
Return the reallocation method currently used.
Definition at line 277 of file TBuffer.cxx.
|
pure virtual |
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
|
inlineoverridevirtual |
Reimplemented from TObject.
Reimplemented in TBufferFile, TBufferIO, TBufferJSON, TBufferText, TBufferSQL2, TBufferXML, TMessage, and TBufferSQL.
Implemented in TBufferIO.
|
pure virtual |
Implemented in TBufferIO.
|
virtual |
Return the 'current' data cache area from the list of area to be used for temporarily store 'missing' data members.
Definition at line 371 of file TBuffer.cxx.
|
virtual |
Pop and Return the 'current' data cache area from the list of area to be used for temporarily store 'missing' data members.
Definition at line 381 of file TBuffer.cxx.
|
virtual |
Push a new data cache area onto the list of area to be used for temporarily store 'missing' data members.
Definition at line 362 of file TBuffer.cxx.
Read contents of object with specified name from the current directory.
First the key with the given name is searched in the current directory, next the key buffer is deserialized into the object. The object must have been created before via the default constructor. See TObject::Write().
Reimplemented from TObject.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
|
pure virtual |
Implemented in TBufferFile, and TBufferText.
|
pure virtual |
Implemented in TBufferFile, and TBufferText.
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferText, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
|
pure virtual |
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
|
pure virtual |
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
|
pure virtual |
Implemented in TBufferIO.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
|
pure virtual |
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
|
pure virtual |
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, TBufferSQL, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, TBufferSQL, and TBufferFile.
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, TBufferSQL, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, TBufferSQL, and TBufferFile.
Implemented in TBufferText, TBufferSQL, and TBufferFile.
Implemented in TBufferText, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferText, and TBufferFile.
Implemented in TBufferFile, TBufferJSON, TBufferSQL2, and TBufferXML.
|
pure virtual |
Return the current Process-ID.
Implemented in TBufferIO.
Definition at line 344 of file TBuffer.cxx.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
|
inlinevirtual |
Reimplemented in TBufferFile, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferSQL.
|
pure virtual |
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, TBufferFile, TBufferFile, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferSQL.
Implemented in TBufferText, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
|
pure virtual |
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferText, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
Implemented in TBufferText, and TBufferFile.
Implemented in TBufferText, and TBufferFile.
void TBuffer::SetBuffer | ( | void * | buf, |
UInt_t | newsiz = 0, | ||
Bool_t | adopt = kTRUE, | ||
ReAllocCharFun_t | reallocfunc = nullptr ) |
Sets a new buffer in an existing TBuffer object.
If newsiz=0 then the new buffer is expected to have the same size as the previous buffer. The current buffer position is reset to the start of the buffer. If the TBuffer owned the previous buffer, it will be deleted prior to accepting the new buffer. By default the new buffer will be adopted unless adopt is false.
If the new buffer is not adopted and no memory allocation routine is provided, a Fatal error will be issued if the Buffer attempts to expand.
Definition at line 187 of file TBuffer.cxx.
Implemented in TBufferFile, and TBufferText.
void TBuffer::SetParent | ( | TObject * | parent | ) |
Set parent owning this buffer.
Definition at line 270 of file TBuffer.cxx.
void TBuffer::SetReadMode | ( | ) |
Set buffer in read mode.
Definition at line 302 of file TBuffer.cxx.
void TBuffer::SetReAllocFunc | ( | ReAllocCharFun_t | reallocfunc = nullptr | ) |
Set which memory reallocation method to use.
If reallocafunc is null, reset it to the default value (TStorage::ReAlloc)
Definition at line 286 of file TBuffer.cxx.
|
pure virtual |
Implemented in TBufferFile, TBufferJSON, TBufferSQL2, and TBufferXML.
void TBuffer::SetWriteMode | ( | ) |
Set buffer in write mode.
Definition at line 315 of file TBuffer.cxx.
|
pure virtual |
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferText, and TBufferFile.
|
overridevirtual |
Stream an object of class TObject.
Reimplemented from TObject.
Reimplemented in TBufferFile, TBufferIO, TBufferJSON, TBufferText, TBufferSQL2, TBufferXML, TMessage, and TBufferSQL.
|
inline |
Implemented in TBufferFile, TBufferJSON, TBufferText, TBufferSQL2, TBufferXML, TBufferText, TBufferSQL2, and TBufferXML.
|
pure virtual |
Implemented in TBufferFile, TBufferJSON, TBufferText, TBufferSQL2, TBufferXML, TBufferText, TBufferSQL2, and TBufferXML.
|
pure virtual |
Implemented in TBufferFile, TBufferJSON, TBufferText, TBufferSQL2, TBufferXML, TBufferText, TBufferSQL2, and TBufferXML.
|
pure virtual |
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferFile, TBufferText, TBufferSQL2, and TBufferXML.
|
pure virtual |
|
inlineoverrideprotectedvirtual |
Write this object to the current directory.
The data structure corresponding to this object is serialized. The corresponding buffer is written to the current directory with an associated key with name "name".
Writing an object to a file involves the following steps:
Bufsize can be given to force a given buffer size to write this object. By default, the buffersize will be taken from the average buffer size of all objects written to the current file so far.
If a name is specified, it will be the name of the key. If name is not given, the name of the key will be the name as returned by GetName().
The option can be a combination of: kSingleKey, kOverwrite or kWriteDelete Using the kOverwrite option a previous key with the same name is overwritten. The previous key is deleted before writing the new object. Using the kWriteDelete option a previous key with the same name is deleted only after the new object has been written. This option is safer than kOverwrite but it is slower. NOTE: Neither kOverwrite nor kWriteDelete reduces the size of a TFile– the space is simply freed up to be overwritten; in the case of a TTree, it is more complicated. If one opens a TTree, appends some entries, then writes it out, the behaviour is effectively the same. If, however, one creates a new TTree and writes it out in this way, only the metadata is replaced, effectively making the old data invisible without deleting it. TTree::Delete() can be used to mark all disk space occupied by a TTree as free before overwriting its metadata this way. The kSingleKey option is only used by TCollection::Write() to write a container with a single key instead of each object in the container with its own key.
An object is read from the file into memory via TKey::Read() or via TObject::Read().
The function returns the total number of bytes written to the file. It returns 0 if the object cannot be written.
Reimplemented from TObject.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferText, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
|
pure virtual |
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferFile, and TBufferText.
|
pure virtual |
Implemented in TBufferIO.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
|
pure virtual |
Implemented in TBufferSQL, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
|
pure virtual |
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
|
pure virtual |
Implemented in TBufferIO.
|
pure virtual |
Always return 0 (current processID).
Implemented in TBufferIO, and TMessage.
Definition at line 353 of file TBuffer.cxx.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, TBufferFile, TBufferFile, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferSQL.
|
inlinevirtual |
Reimplemented in TBufferFile, TBufferJSON, TBufferSQL2, TBufferXML, and TBufferSQL.
Implemented in TBufferText, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, TBufferSQL, and TBufferFile.
Implemented in TBufferJSON, TBufferSQL2, TBufferXML, and TBufferFile.
|
pure virtual |
Implemented in TBufferText, and TBufferFile.
|
protected |
|
protected |