Lines Matching defs:info
86 /* Allocate a device info from the pool and return a pointer to it */
98 dev_info_pool[index].info = (uintptr_t)&state_pool[index];
107 /* Release a device info to the pool */
115 state = (block_dev_state_t *)dev_info->info;
118 /* free if device info is valid */
133 assert((dev_info->info != (uintptr_t)NULL) &&
135 (entity->info == (uintptr_t)NULL));
138 cur = (block_dev_state_t *)dev_info->info;
146 entity->info = (uintptr_t)cur;
155 assert(entity->info != (uintptr_t)NULL);
157 cur = (block_dev_state_t *)entity->info;
267 assert(entity->info != (uintptr_t)NULL);
268 cur = (block_dev_state_t *)entity->info;
379 assert(entity->info != (uintptr_t)NULL);
380 cur = (block_dev_state_t *)entity->info;
496 entity->info = (uintptr_t)NULL;
504 io_dev_info_t *info;
509 result = allocate_dev_info(&info);
513 cur = (block_dev_state_t *)info->info;
523 *dev_info = info; /* cast away const */
545 * use the same device info at here instead.