Lines Matching refs:this
137 * contains one entry and this entry is not assigned to any level. In this
160 struct landlock_rule *const this =
163 if (this->object != object) {
165 if (this->object < object)
182 if (WARN_ON_ONCE(this->num_layers != 1))
184 if (WARN_ON_ONCE(this->layers[0].level != 0))
186 this->layers[0].access |= (*layers)[0].access;
190 if (WARN_ON_ONCE(this->layers[0].level == 0))
197 new_rule = create_rule(object, &this->layers, this->num_layers,
201 rb_replace_node(&this->node, &new_rule->node, &ruleset->root);
202 free_rule(this);
464 struct landlock_rule *this =
467 if (this->object == object)
468 return this;
469 if (this->object < object)