unquotedlen       261 ext/pdo/php_pdo_driver.h typedef int (*pdo_dbh_quote_func)(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC);
unquotedlen       144 ext/pdo_dblib/dblib_driver.c static int dblib_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC)
unquotedlen       150 ext/pdo_dblib/dblib_driver.c 	*quoted = q = safe_emalloc(2, unquotedlen, 3);
unquotedlen       153 ext/pdo_dblib/dblib_driver.c 	while (unquotedlen--) {
unquotedlen       275 ext/pdo_firebird/firebird_driver.c static int firebird_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, /* {{{ */
unquotedlen       282 ext/pdo_firebird/firebird_driver.c 	if (!unquotedlen) {
unquotedlen       293 ext/pdo_firebird/firebird_driver.c 	*quotedlen = unquotedlen + qcount + 2;
unquotedlen       302 ext/pdo_mysql/mysql_driver.c static int mysql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype  TSRMLS_DC)
unquotedlen       307 ext/pdo_mysql/mysql_driver.c 	PDO_DBG_INF_FMT("unquoted=%.*s", unquotedlen, unquoted);
unquotedlen       308 ext/pdo_mysql/mysql_driver.c 	*quoted = safe_emalloc(2, unquotedlen, 3);
unquotedlen       309 ext/pdo_mysql/mysql_driver.c 	*quotedlen = mysql_real_escape_string(H->server, *quoted + 1, unquoted, unquotedlen);
unquotedlen       371 ext/pdo_oci/oci_driver.c static int oci_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype  TSRMLS_DC) /* {{{ */
unquotedlen       377 ext/pdo_oci/oci_driver.c 	if (!unquotedlen) {
unquotedlen       388 ext/pdo_oci/oci_driver.c 	*quotedlen = unquotedlen + qcount + 2;
unquotedlen       264 ext/pdo_odbc/odbc_driver.c static int odbc_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type param_type  TSRMLS_DC)
unquotedlen       328 ext/pdo_pgsql/pgsql_driver.c static int pgsql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC)
unquotedlen       337 ext/pdo_pgsql/pgsql_driver.c 			escaped = PQescapeByteaConn(H->server, (unsigned char *)unquoted, (size_t)unquotedlen, &tmp_len);
unquotedlen       347 ext/pdo_pgsql/pgsql_driver.c 			*quoted = safe_emalloc(2, unquotedlen, 3);
unquotedlen       349 ext/pdo_pgsql/pgsql_driver.c 			*quotedlen = PQescapeStringConn(H->server, *quoted + 1, unquoted, (size_t)unquotedlen, NULL);
unquotedlen       233 ext/pdo_sqlite/sqlite_driver.c static int sqlite_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype  TSRMLS_DC)
unquotedlen       235 ext/pdo_sqlite/sqlite_driver.c 	*quoted = safe_emalloc(2, unquotedlen, 3);
unquotedlen       236 ext/pdo_sqlite/sqlite_driver.c 	sqlite3_snprintf(2*unquotedlen + 3, *quoted, "'%q'", unquoted);