Lines Matching defs:key
85 * a key, in addition to the user's data pointer. Note that it's not a good
239 radix_tree_delete(&mru->store, elem->key);
415 * element's key and the client data pointer. This function returns 0 on
421 unsigned long key,
434 elem->key = key;
437 error = radix_tree_insert(&mru->store, key, elem);
448 * xfs_mru_cache_remove() with the data store and the element's key. On success
455 unsigned long key)
464 elem = radix_tree_delete(&mru->store, key);
474 * with the data store and the element's key.
479 unsigned long key)
483 elem = xfs_mru_cache_remove(mru, key);
489 * To look up an element using its key, call xfs_mru_cache_lookup() with the
490 * data store and the element's key. If found, the element will be moved to the
511 unsigned long key)
520 elem = radix_tree_lookup(&mru->store, key);