Home
last modified time | relevance | path

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

/PHP-8.2/ext/pdo_odbc/
H A Dodbc_driver.c541 size_t estimated_length = php_odbc_connstr_estimate_quote_length(dbh->username); in pdo_odbc_handle_factory() local
542 uid = emalloc(estimated_length); in pdo_odbc_handle_factory()
543 php_odbc_connstr_quote(uid, dbh->username, estimated_length); in pdo_odbc_handle_factory()
548 size_t estimated_length = php_odbc_connstr_estimate_quote_length(dbh->password); in pdo_odbc_handle_factory() local
549 pwd = emalloc(estimated_length); in pdo_odbc_handle_factory()
550 php_odbc_connstr_quote(pwd, dbh->password, estimated_length); in pdo_odbc_handle_factory()
/PHP-8.2/ext/odbc/
H A Dphp_odbc.c2116 size_t estimated_length = php_odbc_connstr_estimate_quote_length(uid); in odbc_sqlconnect() local
2117 uid_quoted = emalloc(estimated_length); in odbc_sqlconnect()
2118 php_odbc_connstr_quote(uid_quoted, uid, estimated_length); in odbc_sqlconnect()
2123 size_t estimated_length = php_odbc_connstr_estimate_quote_length(pwd); in odbc_sqlconnect() local
2124 pwd_quoted = emalloc(estimated_length); in odbc_sqlconnect()
2125 php_odbc_connstr_quote(pwd_quoted, pwd, estimated_length); in odbc_sqlconnect()

Completed in 14 milliseconds