Lines Matching refs:pool_ptr

76 UINT  _tx_byte_pool_create(TX_BYTE_POOL *pool_ptr, CHAR *name_ptr, VOID *pool_start, ULONG pool_siz…  in _tx_byte_pool_create()  argument
90 TX_MEMSET(pool_ptr, 0, (sizeof(TX_BYTE_POOL))); in _tx_byte_pool_create()
97 pool_ptr -> tx_byte_pool_name = name_ptr; in _tx_byte_pool_create()
100 pool_ptr -> tx_byte_pool_start = TX_VOID_TO_UCHAR_POINTER_CONVERT(pool_start); in _tx_byte_pool_create()
101 pool_ptr -> tx_byte_pool_size = pool_size; in _tx_byte_pool_create()
104 pool_ptr -> tx_byte_pool_list = TX_VOID_TO_UCHAR_POINTER_CONVERT(pool_start); in _tx_byte_pool_create()
105 pool_ptr -> tx_byte_pool_search = TX_VOID_TO_UCHAR_POINTER_CONVERT(pool_start); in _tx_byte_pool_create()
111 pool_ptr -> tx_byte_pool_available = pool_size - ((sizeof(VOID *)) + (sizeof(ALIGN_TYPE))); in _tx_byte_pool_create()
112 pool_ptr -> tx_byte_pool_fragments = ((UINT) 2); in _tx_byte_pool_create()
126 temp_ptr = TX_BYTE_POOL_TO_UCHAR_POINTER_CONVERT(pool_ptr); in _tx_byte_pool_create()
144 pool_ptr -> tx_byte_pool_owner = TX_NULL; in _tx_byte_pool_create()
150 pool_ptr -> tx_byte_pool_id = TX_BYTE_POOL_ID; in _tx_byte_pool_create()
158 _tx_byte_pool_created_ptr = pool_ptr; in _tx_byte_pool_create()
159 pool_ptr -> tx_byte_pool_created_next = pool_ptr; in _tx_byte_pool_create()
160 pool_ptr -> tx_byte_pool_created_previous = pool_ptr; in _tx_byte_pool_create()
170 next_pool -> tx_byte_pool_created_previous = pool_ptr; in _tx_byte_pool_create()
171 previous_pool -> tx_byte_pool_created_next = pool_ptr; in _tx_byte_pool_create()
174 pool_ptr -> tx_byte_pool_created_previous = previous_pool; in _tx_byte_pool_create()
175 pool_ptr -> tx_byte_pool_created_next = next_pool; in _tx_byte_pool_create()
182 TX_BYTE_POOL_CREATE_EXTENSION(pool_ptr) in _tx_byte_pool_create()
185 TX_TRACE_OBJECT_REGISTER(TX_TRACE_OBJECT_TYPE_BYTE_POOL, pool_ptr, name_ptr, pool_size, 0) in _tx_byte_pool_create()
188 …TX_TRACE_IN_LINE_INSERT(TX_TRACE_BYTE_POOL_CREATE, pool_ptr, TX_POINTER_TO_ULONG_CONVERT(pool_star… in _tx_byte_pool_create()