Lines Matching defs:key1
1729 union ubifs_key key1;
1758 key_read(c, buf + UBIFS_KEY_OFFSET, &key1);
1759 if (!keys_eq(c, &zbr->key, &key1)) {
1763 dbg_tnck(&key1, "found node's key ");
2035 union ubifs_key *key, *key1;
2041 key1 = &znode->parent->zbranch[0].key;
2043 while (keys_cmp(c, key, key1) < 0) {
2044 key_copy(c, key, key1);
2049 key1 = &znode->parent->zbranch[0].key;
2122 union ubifs_key *key = &zbr->key, *key1;
2165 key1 = &znode->zbranch[n - 1].key;
2166 if (key_inum(c, key1) == key_inum(c, key) &&
2167 key_type(c, key1) == UBIFS_DATA_KEY)
2176 key1 = &znode->zbranch[0].key;
2177 if (key_inum(c, key1) == key_inum(c, key) &&
2178 key_type(c, key1) == UBIFS_DATA_KEY) {
2179 key1 = &znode->zbranch[n].key;
2180 if (key_inum(c, key1) != key_inum(c, key) ||
2181 key_type(c, key1) != UBIFS_DATA_KEY) {
2904 union ubifs_key key1, key2;
2914 lowest_xent_key(c, &key1, inum);
2919 xent = ubifs_tnc_next_ent(c, &key1, &nm);
2936 err = ubifs_tnc_remove_nm(c, &key1, &nm);
2943 lowest_ino_key(c, &key1, xattr_inum);
2945 err = ubifs_tnc_remove_range(c, &key1, &key2);
2954 key_read(c, &xent->key, &key1);
2958 lowest_ino_key(c, &key1, inum);
2961 return ubifs_tnc_remove_range(c, &key1, &key2);