Searched refs:progress_handler (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Modules/_sqlite/clinic/ |
D | connection.c.h | 256 PyObject *progress_handler, 266 PyObject *progress_handler; in pysqlite_connection_set_progress_handler() local 273 progress_handler = args[0]; in pysqlite_connection_set_progress_handler() 278 return_value = pysqlite_connection_set_progress_handler_impl(self, progress_handler, n); in pysqlite_connection_set_progress_handler()
|
/third_party/python/Modules/_sqlite/ |
D | connection.c | 1131 PyObject *progress_handler, in pysqlite_connection_set_progress_handler_impl() argument 1139 if (progress_handler == Py_None) { in pysqlite_connection_set_progress_handler_impl() 1144 sqlite3_progress_handler(self->db, n, _progress_handler, progress_handler); in pysqlite_connection_set_progress_handler_impl() 1145 Py_INCREF(progress_handler); in pysqlite_connection_set_progress_handler_impl() 1146 Py_XSETREF(self->function_pinboard_progress_handler, progress_handler); in pysqlite_connection_set_progress_handler_impl()
|
/third_party/sqlite/include/ |
D | sqlite3ext.h | 118 void (*progress_handler)(sqlite3*,int,int(*)(void*),void*); member 459 #define sqlite3_progress_handler sqlite3_api->progress_handler
|
/third_party/boost/libs/beast/doc/qbk/08_design/ |
D | 2_http_comparison.qbk | 343 std::shared_ptr<progress_handler> m_progress_handler; 405 void set_progress_handler(const progress_handler &handler);
|
/third_party/sqlite/src/ |
D | shell.c | 13088 static int progress_handler(void *pClientData) { in progress_handler() function 20341 sqlite3_progress_handler(p->db, nn, progress_handler, p); in do_meta_command()
|
D | sqlite3.c | 127889 void (*progress_handler)(sqlite3*,int,int(*)(void*),void*); 128226 #define sqlite3_progress_handler sqlite3_api->progress_handler
|
/third_party/chromium/patch/ |
D | 0003-3.2-Beta3-1115.patch | 189416 @@ -822,6 +831,14 @@ static int progress_handler(void *pClientData) { 189431 @@ -830,64 +847,158 @@ static int progress_handler(void *pClientData) {
|