Home
last modified time | relevance | path

Searched refs:allow_8bit_chars (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dstatement.h49 …ement_bind_parameter(pysqlite_Statement* self, int pos, PyObject* parameter, int allow_8bit_chars);
50 …te_statement_bind_parameters(pysqlite_Statement* self, PyObject* parameters, int allow_8bit_chars);
Dstatement.c101 …tement_bind_parameter(pysqlite_Statement* self, int pos, PyObject* parameter, int allow_8bit_chars) in pysqlite_statement_bind_parameter() argument
144 if (paramtype == TYPE_STRING && !allow_8bit_chars) { in pysqlite_statement_bind_parameter()
210 …ite_statement_bind_parameters(pysqlite_Statement* self, PyObject* parameters, int allow_8bit_chars) in pysqlite_statement_bind_parameters() argument
264 rc = pysqlite_statement_bind_parameter(self, i + 1, adapted, allow_8bit_chars); in pysqlite_statement_bind_parameters()
309 rc = pysqlite_statement_bind_parameter(self, i, adapted, allow_8bit_chars); in pysqlite_statement_bind_parameters()
Dcursor.c466 int allow_8bit_chars; in _pysqlite_query_execute() local
475 allow_8bit_chars = ((self->connection->text_factory != (PyObject*)&PyUnicode_Type) && in _pysqlite_query_execute()
642 pysqlite_statement_bind_parameters(self->statement, parameters, allow_8bit_chars); in _pysqlite_query_execute()