Lines Matching refs:ulen
190 zend_ulong ulen; in odbc_stmt_execute() local
196 &ulen)) { in odbc_stmt_execute()
202 SQLPutData(S->stmt, S->convbuf, ulen); in odbc_stmt_execute()
465 zend_ulong ulen; in odbc_stmt_param_hook() local
469 &ulen)) { in odbc_stmt_param_hook()
476 P->len = ulen; in odbc_stmt_param_hook()
490 zend_ulong ulen; in odbc_stmt_param_hook() local
503 switch (pdo_odbc_ucs22utf8(stmt, P->is_unicode, P->outbuf, P->len, &ulen)) { in odbc_stmt_param_hook()
512 srclen = ulen; in odbc_stmt_param_hook()
653 zend_ulong ulen; in odbc_stmt_get_col() local
766 switch (pdo_odbc_ucs22utf8(stmt, C->is_unicode, *ptr, *len, &ulen)) { in odbc_stmt_get_col()
777 *ptr = emalloc(ulen + 1); in odbc_stmt_get_col()
778 *len = ulen; in odbc_stmt_get_col()
779 memcpy(*ptr, S->convbuf, ulen+1); in odbc_stmt_get_col()