Home
last modified time | relevance | path

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

/php-src/ext/pdo_odbc/
H A Dodbc_driver.c549 size_t estimated_length = php_odbc_connstr_estimate_quote_length(dbh->username); in pdo_odbc_handle_factory() local
550 uid = emalloc(estimated_length); in pdo_odbc_handle_factory()
551 php_odbc_connstr_quote(uid, dbh->username, estimated_length); in pdo_odbc_handle_factory()
566 size_t estimated_length = php_odbc_connstr_estimate_quote_length(dbh->password); in pdo_odbc_handle_factory() local
567 pwd = emalloc(estimated_length); in pdo_odbc_handle_factory()
568 php_odbc_connstr_quote(pwd, dbh->password, estimated_length); in pdo_odbc_handle_factory()
/php-src/ext/odbc/
H A Dphp_odbc.c2201 size_t estimated_length = php_odbc_connstr_estimate_quote_length(uid); in odbc_sqlconnect()
2202 uid_quoted = emalloc(estimated_length); in odbc_sqlconnect()
2203 php_odbc_connstr_quote(uid_quoted, uid, estimated_length); in odbc_sqlconnect()
2216 size_t estimated_length = php_odbc_connstr_estimate_quote_length(pwd); in odbc_sqlconnect()
2217 pwd_quoted = emalloc(estimated_length); in odbc_sqlconnect()
2218 php_odbc_connstr_quote(pwd_quoted, pwd, estimated_length); in odbc_sqlconnect()

Completed in 13 milliseconds