Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dstatement.c212 PyObject* current_param; in pysqlite_statement_bind_parameters() local
240 current_param = PyTuple_GET_ITEM(parameters, i); in pysqlite_statement_bind_parameters()
241 Py_XINCREF(current_param); in pysqlite_statement_bind_parameters()
243 current_param = PyList_GET_ITEM(parameters, i); in pysqlite_statement_bind_parameters()
244 Py_XINCREF(current_param); in pysqlite_statement_bind_parameters()
246 current_param = PySequence_GetItem(parameters, i); in pysqlite_statement_bind_parameters()
248 if (!current_param) { in pysqlite_statement_bind_parameters()
252 if (!_need_adapt(current_param)) { in pysqlite_statement_bind_parameters()
253 adapted = current_param; in pysqlite_statement_bind_parameters()
255 …adapted = pysqlite_microprotocols_adapt(current_param, (PyObject*)&pysqlite_PrepareProtocolType, N… in pysqlite_statement_bind_parameters()
[all …]