#include <Malloc.h>
Collaboration diagram for ACE_Control_Block::ACE_Name_Node:

Public Member Functions | |
| ACE_Name_Node (const char *name, char *name_ptr, char *pointer, ACE_Name_Node *head) | |
| Constructor.   | |
| ACE_Name_Node (const ACE_Name_Node &) | |
| Copy constructor.   | |
| ACE_Name_Node (void) | |
| Constructor.   | |
| ~ACE_Name_Node (void) | |
| Constructor.   | |
| const char * | name (void) const | 
| Return a pointer to the name of this node.   | |
| void | name (const char *) | 
| Assign a name;.   | |
| void | dump (void) const | 
| Dump the state of the object.   | |
Static Public Member Functions | |
| void | init_ptr (ACE_Name_Node **ptr, ACE_Name_Node *init, void *base_addr) | 
| Initialize a name node pointer.   | |
Public Attributes | |
| char * | name_ | 
| Name of the Node.   | |
| char * | pointer_ | 
| Pointer to the contents.   | |
| ACE_Name_Node * | next_ | 
| Pointer to the next node in the doubly-linked list.   | |
| ACE_Name_Node * | prev_ | 
| Pointer to the previous node in the doubly-linked list.   | |
Internally, the named memory regions are stored as a doubly-linked list within the <memory_pool>. This makes it easy to iterate over the items in the list in both FIFO and LIFO order.
      
  | 
  ||||||||||||||||||||
| 
 Constructor. 
  | 
  
      
  | 
  
| 
 Copy constructor. 
  | 
  
      
  | 
  
| 
 Constructor. 
  | 
  
      
  | 
  
| 
 Constructor. 
  | 
  
      
  | 
  
| 
 Dump the state of the object. 
  | 
  
      
  | 
  ||||||||||||||||
| 
 Initialize a name node pointer. 
  | 
  
      
  | 
  
| 
 Assign a name;. 
  | 
  
      
  | 
  
| 
 Return a pointer to the name of this node. 
  | 
  
      
  | 
  
| 
 Name of the Node. 
  | 
  
      
  | 
  
| 
 Pointer to the next node in the doubly-linked list. 
  | 
  
      
  | 
  
| 
 Pointer to the contents. 
  | 
  
      
  | 
  
| 
 Pointer to the previous node in the doubly-linked list. 
  | 
  
 1.3.9.1