Searched refs:tmHeader (Results 1 - 2 of 2) sorted by relevance

/vbox/src/libs/xpcom18a4/ipc/ipcd/extensions/transmngr/common/
H A DtmTransaction.cpp66 tmHeader *header = nsnull;
71 header = (tmHeader*) RTMemAlloc(aLength);
73 header = (tmHeader*) malloc(aLength);
82 else { // need to create the tmHeader and concat the message
84 header = (tmHeader*) RTMemAlloc (sizeof(tmHeader) + aLength);
86 header = (tmHeader*) malloc (sizeof(tmHeader) + aLength);
89 mRawMessageLength = sizeof(tmHeader) + aLength;
H A DtmTransaction.h50 // | Action - Post/Flush/Attach etc | |- this is the tmHeader struct
67 * tmHeader contains various flags identifying
69 struct tmHeader { struct
88 * tmHeader struct preceeding the message. Currently this
100 * of aMessage and not include the length of the tmHeader struct.
176 return (mRawMessageLength > sizeof(tmHeader)) ?
177 (mRawMessageLength - sizeof(tmHeader)) : 0;
228 tmHeader* mHeader; // points to beginning of entire message
229 PRUint32 mRawMessageLength; // length of entire message, incl tmHeader

Completed in 1026 milliseconds