Lines Matching defs:data
4906 "readv will transfer data into each buffer until it is full\n"
4908 "the rest of the data.\n"
5011 "transfer data into each buffer until it is full and then move on to the next\n"
5012 "buffer in the sequence to hold the rest of the data. Its fourth argument,\n"
5073 "write($module, fd, data, /)\n"
5082 os_write_impl(PyObject *module, int fd, Py_buffer *data);
5089 Py_buffer data = {NULL, NULL};
5099 if (PyObject_GetBuffer(args[1], &data, PyBUF_SIMPLE) != 0) {
5102 if (!PyBuffer_IsContiguous(&data, 'C')) {
5106 _return_value = os_write_impl(module, fd, &data);
5113 /* Cleanup for data */
5114 if (data.obj) {
5115 PyBuffer_Release(&data);
6306 "Announce an intention to access data in a specific pattern.\n"
6308 "Announce an intention to access data in a specific pattern, thus allowing\n"