Home
last modified time | relevance | path

Searched refs:pysqlite_RowType (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Modules/_sqlite/
Drow.c202 if (PyType_IsSubtype(Py_TYPE(_other), &pysqlite_RowType)) { in pysqlite_row_richcompare()
236 PyTypeObject pysqlite_RowType = { variable
280 pysqlite_RowType.tp_new = pysqlite_row_new; in pysqlite_row_setup_types()
281 pysqlite_RowType.tp_as_mapping = &pysqlite_row_as_mapping; in pysqlite_row_setup_types()
282 pysqlite_RowType.tp_as_sequence = &pysqlite_row_as_sequence; in pysqlite_row_setup_types()
283 return PyType_Ready(&pysqlite_RowType); in pysqlite_row_setup_types()
Drow.h35 extern PyTypeObject pysqlite_RowType;
Dmodule.c332 Py_INCREF(&pysqlite_RowType); in init_sqlite3()
333 PyModule_AddObject(module, "Row", (PyObject*) &pysqlite_RowType); in init_sqlite3()
/external/python/cpython3/Modules/_sqlite/
Drow.c219 if (PyObject_TypeCheck(_other, pysqlite_RowType)) { in pysqlite_row_richcompare()
262 PyTypeObject *pysqlite_RowType = NULL; variable
267 pysqlite_RowType = (PyTypeObject *)PyType_FromModuleAndSpec(module, &row_spec, NULL); in pysqlite_row_setup_types()
268 if (pysqlite_RowType == NULL) { in pysqlite_row_setup_types()
Drow.h36 extern PyTypeObject *pysqlite_RowType;
Dmodule.c396 ADD_TYPE(module, *pysqlite_RowType); in PyInit__sqlite3()
/external/python/cpython3/Modules/_sqlite/clinic/
Drow.c.h16 if ((type == pysqlite_RowType) && in pysqlite_row_new()
/external/python/cpython3/Tools/c-analyzer/cpython/
Dignored.tsv55 Modules/_sqlite/row.h - pysqlite_RowType -
2379 Modules/_sqlite/row.c - pysqlite_RowType -