Lines Matching refs:pstr
173 Py_buffer pstr; in fcntl_ioctl_impl() local
184 if (PyArg_Parse(ob_arg, "w*:ioctl", &pstr)) { in fcntl_ioctl_impl()
186 str = pstr.buf; in fcntl_ioctl_impl()
187 len = pstr.len; in fcntl_ioctl_impl()
201 PyBuffer_Release(&pstr); in fcntl_ioctl_impl()
223 PyBuffer_Release(&pstr); /* No further access to str below this point */ in fcntl_ioctl_impl()
237 if (PyArg_Parse(ob_arg, "s*:ioctl", &pstr)) { in fcntl_ioctl_impl()
238 str = pstr.buf; in fcntl_ioctl_impl()
239 len = pstr.len; in fcntl_ioctl_impl()
241 PyBuffer_Release(&pstr); in fcntl_ioctl_impl()
252 PyBuffer_Release(&pstr); in fcntl_ioctl_impl()
256 PyBuffer_Release(&pstr); in fcntl_ioctl_impl()