Home | History | Annotate | Download | only in irs

Lines Matching defs:pvt

47 struct pvt {
75 struct pvt *pvt;
83 if (!(pvt = memget(sizeof *pvt))) {
88 memset(pvt, 0, sizeof *pvt);
89 pvt->girpdata = this->private;
91 ng->private = pvt;
111 struct pvt *pvt = (struct pvt *)this->private;
115 memput(pvt, sizeof *pvt);
130 struct pvt *pvt = (struct pvt *)this->private;
134 if (irs_irp_connection_setup(pvt->girpdata, &pvt->warned) != 0) {
138 if (irs_irp_send_command(pvt->girpdata,
143 code = irs_irp_read_response(pvt->girpdata, text, sizeof text);
163 struct pvt *pvt = (struct pvt *)this->private;
170 if (irs_irp_connection_setup(pvt->girpdata, &pvt->warned) != 0) {
174 if (irs_irp_send_command(pvt->girpdata, "getnetgrent") != 0)
177 if (irs_irp_get_full_response(pvt->girpdata, &code,
205 struct pvt *pvt = (struct pvt *)this->private;
214 if (irs_irp_connection_setup(pvt->girpdata, &pvt->warned) != 0) {
222 if (irs_irp_send_command(pvt->girpdata, "innetgr %s", body) == 0) {
223 code = irs_irp_read_response(pvt->girpdata, text, sizeof text);
244 struct pvt *pvt = (struct pvt *)this->private;
246 irs_irp_disconnect(pvt->girpdata);