quotedlen         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);
quotedlen         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)
quotedlen         167 ext/pdo_dblib/dblib_driver.c 	*quotedlen = l+1;
quotedlen         276 ext/pdo_firebird/firebird_driver.c 	char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC)
quotedlen         283 ext/pdo_firebird/firebird_driver.c 		*quotedlen = 2;
quotedlen         284 ext/pdo_firebird/firebird_driver.c 		*quoted = emalloc(*quotedlen+1);
quotedlen         293 ext/pdo_firebird/firebird_driver.c 	*quotedlen = unquotedlen + qcount + 2;
quotedlen         294 ext/pdo_firebird/firebird_driver.c 	*quoted = c = emalloc(*quotedlen+1);		
quotedlen         306 ext/pdo_firebird/firebird_driver.c 	strncpy(c, l, *quotedlen-(c-*quoted)-1);
quotedlen         307 ext/pdo_firebird/firebird_driver.c 	(*quoted)[*quotedlen-1] = '\''; 
quotedlen         308 ext/pdo_firebird/firebird_driver.c 	(*quoted)[*quotedlen]   = '\0';
quotedlen         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)
quotedlen         309 ext/pdo_mysql/mysql_driver.c 	*quotedlen = mysql_real_escape_string(H->server, *quoted + 1, unquoted, unquotedlen);
quotedlen         310 ext/pdo_mysql/mysql_driver.c 	(*quoted)[0] =(*quoted)[++*quotedlen] = '\'';
quotedlen         311 ext/pdo_mysql/mysql_driver.c 	(*quoted)[++*quotedlen] = '\0';
quotedlen         312 ext/pdo_mysql/mysql_driver.c 	PDO_DBG_INF_FMT("quoted=%.*s", *quotedlen, *quoted);
quotedlen         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) /* {{{ */
quotedlen         378 ext/pdo_oci/oci_driver.c 		*quotedlen = 2;
quotedlen         379 ext/pdo_oci/oci_driver.c 		*quoted = emalloc(*quotedlen+1);
quotedlen         388 ext/pdo_oci/oci_driver.c 	*quotedlen = unquotedlen + qcount + 2;
quotedlen         389 ext/pdo_oci/oci_driver.c 	*quoted = c = emalloc(*quotedlen+1);
quotedlen         400 ext/pdo_oci/oci_driver.c 	strncpy(c, l, *quotedlen-(c-*quoted)-1);
quotedlen         401 ext/pdo_oci/oci_driver.c 	(*quoted)[*quotedlen-1] = '\''; 
quotedlen         402 ext/pdo_oci/oci_driver.c 	(*quoted)[*quotedlen]   = '\0';
quotedlen         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)
quotedlen         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)
quotedlen         338 ext/pdo_pgsql/pgsql_driver.c 			*quotedlen = (int)tmp_len + 1;
quotedlen         339 ext/pdo_pgsql/pgsql_driver.c 			*quoted = emalloc(*quotedlen + 1);
quotedlen         340 ext/pdo_pgsql/pgsql_driver.c 			memcpy((*quoted)+1, escaped, *quotedlen-2);
quotedlen         342 ext/pdo_pgsql/pgsql_driver.c 			(*quoted)[*quotedlen-1] = '\'';
quotedlen         343 ext/pdo_pgsql/pgsql_driver.c 			(*quoted)[*quotedlen] = '\0';
quotedlen         349 ext/pdo_pgsql/pgsql_driver.c 			*quotedlen = PQescapeStringConn(H->server, *quoted + 1, unquoted, (size_t)unquotedlen, NULL);
quotedlen         350 ext/pdo_pgsql/pgsql_driver.c 			(*quoted)[*quotedlen + 1] = '\'';
quotedlen         351 ext/pdo_pgsql/pgsql_driver.c 			(*quoted)[*quotedlen + 2] = '\0';
quotedlen         352 ext/pdo_pgsql/pgsql_driver.c 			*quotedlen += 2;
quotedlen         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)
quotedlen         237 ext/pdo_sqlite/sqlite_driver.c 	*quotedlen = strlen(*quoted);