Searched refs:stmt (Results 1 - 8 of 8) sorted by relevance
/httpd/support/ |
H A D | ctlogconfig | 50 stmt = 'SELECT * FROM loginfo WHERE id = ?' 51 cur.execute(stmt, [record_id]) 111 stmt = 'INSERT INTO loginfo (public_key) VALUES(?)' 112 cur.execute(stmt, [public_key]) 114 stmt = 'UPDATE loginfo SET public_key = ? WHERE id = ?' 115 cur.execute(stmt, [public_key, record_id]) 129 stmt = 'UPDATE loginfo SET url = ? WHERE id = ?' 132 stmt = 'INSERT INTO loginfo (log_id, url) VALUES(?, ?)' 135 stmt = 'INSERT INTO loginfo (url) VALUES(?)' 138 cur.execute(stmt, arg [all...] |
H A D | ctauditscts | 116 stmt = 'SELECT * FROM loginfo WHERE log_id = ?' 117 cur.execute(stmt, [log_id_hex])
|
/httpd/modules/core/ |
H A D | mod_macro.c | 45 #define debug(stmt) stmt 47 #define debug(stmt)
|
/httpd/modules/database/ |
H A D | mod_dbd.c | 444 apr_dbd_prepared_t *stmt; local 452 stmt = NULL; 454 label, &stmt)) { 458 apr_hash_set(rec->prepared, label, APR_HASH_KEY_STRING, stmt);
|
/httpd/server/mpm/prefork/ |
H A D | prefork.c | 290 #define SAFE_ACCEPT(stmt) (ap_listeners->next ? (stmt) : APR_SUCCESS) 292 #define SAFE_ACCEPT(stmt) (stmt)
|
/httpd/server/mpm/motorz/ |
H A D | motorz.c | 617 #define SAFE_ACCEPT(stmt) (ap_listeners->next ? (stmt) : APR_SUCCESS) 619 #define SAFE_ACCEPT(stmt) (stmt)
|
/httpd/server/mpm/worker/ |
H A D | worker.c | 237 #define SAFE_ACCEPT(stmt) (ap_listeners->next ? (stmt) : APR_SUCCESS) 239 #define SAFE_ACCEPT(stmt) (stmt)
|
/httpd/modules/mappers/ |
H A D | mod_rewrite.c | 1366 apr_dbd_prepared_t *stmt; local 1374 stmt = apr_hash_get(db->prepared, label, APR_HASH_KEY_STRING); 1377 stmt, 0, key, NULL);
|
Completed in 281 milliseconds