Lines Matching refs:this
50 struct atm_dev_addr *this, *p; in atm_reset_addr() local
58 list_for_each_entry_safe(this, p, head, entry) { in atm_reset_addr()
59 list_del(&this->entry); in atm_reset_addr()
60 kfree(this); in atm_reset_addr()
71 struct atm_dev_addr *this; in atm_add_addr() local
83 list_for_each_entry(this, head, entry) { in atm_add_addr()
84 if (identical(&this->addr, addr)) { in atm_add_addr()
89 this = kmalloc(sizeof(struct atm_dev_addr), GFP_ATOMIC); in atm_add_addr()
90 if (!this) { in atm_add_addr()
94 this->addr = *addr; in atm_add_addr()
95 list_add(&this->entry, head); in atm_add_addr()
106 struct atm_dev_addr *this; in atm_del_addr() local
118 list_for_each_entry(this, head, entry) { in atm_del_addr()
119 if (identical(&this->addr, addr)) { in atm_del_addr()
120 list_del(&this->entry); in atm_del_addr()
122 kfree(this); in atm_del_addr()
136 struct atm_dev_addr *this; in atm_get_addr() local
146 list_for_each_entry(this, head, entry) in atm_get_addr()
153 list_for_each_entry(this, head, entry) in atm_get_addr()
154 memcpy(tmp_bufp++, &this->addr, sizeof(struct sockaddr_atmsvc)); in atm_get_addr()