Lines Matching refs:this
102 static struct __res_state * nw_res_get(struct irs_nw *this);
103 static void nw_res_set(struct irs_nw *this,
107 static int init(struct irs_nw *this);
118 irs_lcl_nw(struct irs_acc *this) { in irs_lcl_nw() argument
122 UNUSED(this); in irs_lcl_nw()
150 nw_close(struct irs_nw *this) { in nw_close() argument
151 struct pvt *pvt = (struct pvt *)this->private; in nw_close()
153 nw_minimize(this); in nw_close()
159 memput(this, sizeof *this); in nw_close()
163 nw_byaddr(struct irs_nw *this, void *net, int length, int type) { in nw_byaddr() argument
166 if (init(this) == -1) in nw_byaddr()
169 nw_rewind(this); in nw_byaddr()
170 while ((p = nw_next(this)) != NULL) in nw_byaddr()
178 nw_byname(struct irs_nw *this, const char *name, int type) { in nw_byname() argument
182 if (init(this) == -1) in nw_byname()
185 nw_rewind(this); in nw_byname()
186 while ((p = nw_next(this)) != NULL) { in nw_byname()
200 nw_rewind(struct irs_nw *this) { in nw_rewind() argument
201 struct pvt *pvt = (struct pvt *)this->private; in nw_rewind()
217 nw_next(struct irs_nw *this) { in nw_next() argument
218 struct pvt *pvt = (struct pvt *)this->private; in nw_next()
224 if (init(this) == -1) in nw_next()
228 nw_rewind(this); in nw_next()
315 nw_minimize(struct irs_nw *this) { in nw_minimize() argument
316 struct pvt *pvt = (struct pvt *)this->private; in nw_minimize()
327 nw_res_get(struct irs_nw *this) { in nw_res_get() argument
328 struct pvt *pvt = (struct pvt *)this->private; in nw_res_get()
338 nw_res_set(this, res, free); in nw_res_get()
345 nw_res_set(struct irs_nw *this, struct __res_state *res, in nw_res_set() argument
347 struct pvt *pvt = (struct pvt *)this->private; in nw_res_set()
359 init(struct irs_nw *this) { in init() argument
360 struct pvt *pvt = (struct pvt *)this->private; in init()
362 if (!pvt->res && !nw_res_get(this)) in init()