Lines Matching refs:this
51 struct atm_dev_addr *this, *p; in atm_reset_addr() local
59 list_for_each_entry_safe(this, p, head, entry) { in atm_reset_addr()
60 list_del(&this->entry); in atm_reset_addr()
61 kfree(this); in atm_reset_addr()
72 struct atm_dev_addr *this; in atm_add_addr() local
84 list_for_each_entry(this, head, entry) { in atm_add_addr()
85 if (identical(&this->addr, addr)) { in atm_add_addr()
90 this = kmalloc(sizeof(struct atm_dev_addr), GFP_ATOMIC); in atm_add_addr()
91 if (!this) { in atm_add_addr()
95 this->addr = *addr; in atm_add_addr()
96 list_add(&this->entry, head); in atm_add_addr()
107 struct atm_dev_addr *this; in atm_del_addr() local
119 list_for_each_entry(this, head, entry) { in atm_del_addr()
120 if (identical(&this->addr, addr)) { in atm_del_addr()
121 list_del(&this->entry); in atm_del_addr()
123 kfree(this); in atm_del_addr()
137 struct atm_dev_addr *this; in atm_get_addr() local
147 list_for_each_entry(this, head, entry) in atm_get_addr()
154 list_for_each_entry(this, head, entry) in atm_get_addr()
155 memcpy(tmp_bufp++, &this->addr, sizeof(struct sockaddr_atmsvc)); in atm_get_addr()