Searched refs:estimated_length (Results 1 – 2 of 2) sorted by relevance
550 size_t estimated_length = php_odbc_connstr_estimate_quote_length(dbh->username); in pdo_odbc_handle_factory() local551 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() local568 pwd = emalloc(estimated_length); in pdo_odbc_handle_factory()569 php_odbc_connstr_quote(pwd, dbh->password, estimated_length); in pdo_odbc_handle_factory()
2214 size_t estimated_length = php_odbc_connstr_estimate_quote_length(uid); in odbc_sqlconnect()2215 uid_quoted = emalloc(estimated_length); in odbc_sqlconnect()2216 php_odbc_connstr_quote(uid_quoted, uid, estimated_length); in odbc_sqlconnect()2229 size_t estimated_length = php_odbc_connstr_estimate_quote_length(pwd); in odbc_sqlconnect()2230 pwd_quoted = emalloc(estimated_length); in odbc_sqlconnect()2231 php_odbc_connstr_quote(pwd_quoted, pwd, estimated_length); in odbc_sqlconnect()
Completed in 21 milliseconds