Lines Matching refs:this
227 struct landlock_rule *const this = in insert_rule() local
230 if (this->key.data != id.key.data) { in insert_rule()
232 if (this->key.data < id.key.data) in insert_rule()
249 if (WARN_ON_ONCE(this->num_layers != 1)) in insert_rule()
251 if (WARN_ON_ONCE(this->layers[0].level != 0)) in insert_rule()
253 this->layers[0].access |= (*layers)[0].access; in insert_rule()
257 if (WARN_ON_ONCE(this->layers[0].level == 0)) in insert_rule()
264 new_rule = create_rule(id, &this->layers, this->num_layers, in insert_rule()
268 rb_replace_node(&this->node, &new_rule->node, root); in insert_rule()
269 free_rule(this, id.type); in insert_rule()
595 struct landlock_rule *this = in landlock_find_rule() local
598 if (this->key.data == id.key.data) in landlock_find_rule()
599 return this; in landlock_find_rule()
600 if (this->key.data < id.key.data) in landlock_find_rule()