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.c550 size_t estimated_length = php_odbc_connstr_estimate_quote_length(dbh->username); in pdo_odbc_handle_factory() local
551 uid = emalloc(estimated_length); in pdo_odbc_handle_factory()
552 php_odbc_connstr_quote(uid, dbh->username, estimated_length); in pdo_odbc_handle_factory()
567 size_t estimated_length = php_odbc_connstr_estimate_quote_length(dbh->password); in pdo_odbc_handle_factory() local
568 pwd = emalloc(estimated_length); in pdo_odbc_handle_factory()
569 php_odbc_connstr_quote(pwd, dbh->password, estimated_length); in pdo_odbc_handle_factory()
/php-src/ext/odbc/
H A Dphp_odbc.c2213 size_t estimated_length = php_odbc_connstr_estimate_quote_length(uid); in odbc_sqlconnect()
2214 uid_quoted = emalloc(estimated_length); in odbc_sqlconnect()
2215 php_odbc_connstr_quote(uid_quoted, uid, estimated_length); in odbc_sqlconnect()
2228 size_t estimated_length = php_odbc_connstr_estimate_quote_length(pwd); in odbc_sqlconnect()
2229 pwd_quoted = emalloc(estimated_length); in odbc_sqlconnect()
2230 php_odbc_connstr_quote(pwd_quoted, pwd, estimated_length); in odbc_sqlconnect()

Completed in 11 milliseconds