Lines Matching refs:ulen
193 zend_ulong ulen; in odbc_stmt_execute() local
199 &ulen)) { in odbc_stmt_execute()
205 SQLPutData(S->stmt, S->convbuf, ulen); in odbc_stmt_execute()
461 zend_ulong ulen; in odbc_stmt_param_hook() local
465 &ulen)) { in odbc_stmt_param_hook()
472 P->len = ulen; in odbc_stmt_param_hook()
486 zend_ulong ulen; in odbc_stmt_param_hook() local
502 switch (pdo_odbc_ucs22utf8(stmt, P->is_unicode, P->outbuf, P->len, &ulen)) { in odbc_stmt_param_hook()
511 srclen = ulen; in odbc_stmt_param_hook()
652 zend_ulong ulen; in odbc_stmt_get_col() local
755 switch (pdo_odbc_ucs22utf8(stmt, C->is_unicode, *ptr, *len, &ulen)) { in odbc_stmt_get_col()
766 *ptr = emalloc(ulen + 1); in odbc_stmt_get_col()
767 *len = ulen; in odbc_stmt_get_col()
768 memcpy(*ptr, S->convbuf, ulen+1); in odbc_stmt_get_col()