Lines Matching defs:this
10 * This code is derived from software contributed to The NetBSD Foundation
17 * notice, this list of conditions and the following disclaimer.
19 * notice, this list of conditions and the following disclaimer in the
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
126 struct chfs_vnode_cache *this, *next;
131 this = hash[i];
132 while (this) {
133 next = this->next;
134 chfs_vnode_cache_free(this);
135 this = next;