Lines Matching defs:key1
1730 union ubifs_key key1;
1759 key_read(c, buf + UBIFS_KEY_OFFSET, &key1);
1760 if (!keys_eq(c, &zbr->key, &key1)) {
1764 dbg_tnck(&key1, "found node's key ");
2036 union ubifs_key *key, *key1;
2042 key1 = &znode->parent->zbranch[0].key;
2044 while (keys_cmp(c, key, key1) < 0) {
2045 key_copy(c, key, key1);
2050 key1 = &znode->parent->zbranch[0].key;
2123 union ubifs_key *key = &zbr->key, *key1;
2166 key1 = &znode->zbranch[n - 1].key;
2167 if (key_inum(c, key1) == key_inum(c, key) &&
2168 key_type(c, key1) == UBIFS_DATA_KEY)
2177 key1 = &znode->zbranch[0].key;
2178 if (key_inum(c, key1) == key_inum(c, key) &&
2179 key_type(c, key1) == UBIFS_DATA_KEY) {
2180 key1 = &znode->zbranch[n].key;
2181 if (key_inum(c, key1) != key_inum(c, key) ||
2182 key_type(c, key1) != UBIFS_DATA_KEY) {
2905 union ubifs_key key1, key2;
2915 lowest_xent_key(c, &key1, inum);
2920 xent = ubifs_tnc_next_ent(c, &key1, &nm);
2937 err = ubifs_tnc_remove_nm(c, &key1, &nm);
2944 lowest_ino_key(c, &key1, xattr_inum);
2946 err = ubifs_tnc_remove_range(c, &key1, &key2);
2955 key_read(c, &xent->key, &key1);
2959 lowest_ino_key(c, &key1, inum);
2962 return ubifs_tnc_remove_range(c, &key1, &key2);