Lines Matching defs:data
1002 "deserialize($self, data, /, *, name=\'main\')\n"
1007 " data\n"
1014 "serialized data.\n"
1023 deserialize_impl(pysqlite_Connection *self, Py_buffer *data,
1034 Py_buffer data = {NULL, NULL};
1047 PyBuffer_FillInfo(&data, args[0], (void *)ptr, len, 1, 0);
1050 if (PyObject_GetBuffer(args[0], &data, PyBUF_SIMPLE) != 0) {
1053 if (!PyBuffer_IsContiguous(&data, 'C')) {
1075 return_value = deserialize_impl(self, &data, name);
1078 /* Cleanup for data */
1079 if (data.obj) {
1080 PyBuffer_Release(&data);