Searched refs:bufctl (Results 1 – 1 of 1) sorted by relevance
194 rtl_cache_bufctl_type * bufctl in rtl_cache_hash_insert() argument199 ppHead = &(cache->m_hash_table[RTL_CACHE_HASH_INDEX(cache, bufctl->m_addr)]); in rtl_cache_hash_insert()201 bufctl->m_next = (*ppHead); in rtl_cache_hash_insert()202 (*ppHead) = bufctl; in rtl_cache_hash_insert()204 return (bufctl->m_addr); in rtl_cache_hash_insert()221 rtl_cache_bufctl_type * bufctl; in rtl_cache_hash_remove() local225 while ((bufctl = *ppHead) != NULL) in rtl_cache_hash_remove()227 if (bufctl->m_addr == addr) in rtl_cache_hash_remove()229 *ppHead = bufctl->m_next, bufctl->m_next = NULL; in rtl_cache_hash_remove()234 ppHead = &(bufctl->m_next); in rtl_cache_hash_remove()[all …]