Lines Matching defs:pstr
161 Py_buffer pstr;
172 if (PyArg_Parse(ob_arg, "w*:ioctl", &pstr)) {
174 str = pstr.buf;
175 len = pstr.len;
189 PyBuffer_Release(&pstr);
211 PyBuffer_Release(&pstr); /* No further access to str below this point */
225 if (PyArg_Parse(ob_arg, "s*:ioctl", &pstr)) {
226 str = pstr.buf;
227 len = pstr.len;
229 PyBuffer_Release(&pstr);
240 PyBuffer_Release(&pstr);
244 PyBuffer_Release(&pstr);