Lines Matching defs:data
1998 This function updates the data structure representing the desired state of the
2015 This function updates the data structure representing the desired state of the
2154 Write all data associated with the window into the provided file object.
3013 The following getmouse() will return the given state data.
3040 Read window related data stored in the file by an earlier putwin() call.
3042 The routine then creates and initializes a new window using that data,
3051 PyObject *data;
3066 data = _PyObject_CallMethodIdNoArgs(file, &PyId_read);
3067 if (data == NULL)
3069 if (!PyBytes_Check(data)) {
3072 Py_TYPE(data)->tp_name);
3073 Py_DECREF(data);
3076 datalen = PyBytes_GET_SIZE(data);
3077 if (fwrite(PyBytes_AS_STRING(data), 1, datalen, fp) != datalen) {
3078 Py_DECREF(data);
3082 Py_DECREF(data);
3710 Create and return a pointer to a new pad data structure.
4089 Adjusts other bookkeeping data used by the curses library that record the
4127 data. The resize_term() function attempts to resize all windows. However,