Lines Matching refs:new_len
824 size_t new_len; in php_pgsql_PQescapeInternal() local
831 new_len = PQescapeStringConn(conn, tmp, str, len, NULL); in php_pgsql_PQescapeInternal()
832 strncpy(rp, tmp, new_len); in php_pgsql_PQescapeInternal()
834 rp += new_len; in php_pgsql_PQescapeInternal()
5541 size_t new_len; local
5583 new_len = PQescapeStringConn(pg_link, escaped, tmp_name2, strlen(tmp_name2), NULL);
5584 if (new_len) {
5585 smart_str_appendl(&querystr, escaped, new_len);
5591 new_len = PQescapeStringConn(pg_link, escaped, tmp_name, strlen(tmp_name), NULL);
5592 if (new_len) {
5593 smart_str_appendl(&querystr, escaped, new_len);
6651 size_t new_len; local
6654 new_len = PQescapeStringConn(pg_link, tmp, Z_STRVAL_P(val), Z_STRLEN_P(val), NULL);
6656 smart_str_appendl(&querystr, tmp, new_len);
6821 size_t new_len; local
6823 new_len = PQescapeStringConn(pg_link, tmp, Z_STRVAL_P(val), Z_STRLEN_P(val), NULL);
6825 smart_str_appendl(querystr, tmp, new_len);