Lines Matching refs:ulen
192 zend_ulong ulen; in odbc_stmt_execute() local
198 &ulen)) { in odbc_stmt_execute()
204 SQLPutData(S->stmt, S->convbuf, ulen); in odbc_stmt_execute()
467 zend_ulong ulen; in odbc_stmt_param_hook() local
471 &ulen)) { in odbc_stmt_param_hook()
478 P->len = ulen; in odbc_stmt_param_hook()
492 zend_ulong ulen; in odbc_stmt_param_hook() local
505 switch (pdo_odbc_ucs22utf8(stmt, P->is_unicode, P->outbuf, P->len, &ulen)) { in odbc_stmt_param_hook()
514 srclen = ulen; in odbc_stmt_param_hook()
655 zend_ulong ulen; in odbc_stmt_get_col() local
768 switch (pdo_odbc_ucs22utf8(stmt, C->is_unicode, *ptr, *len, &ulen)) { in odbc_stmt_get_col()
779 *ptr = emalloc(ulen + 1); in odbc_stmt_get_col()
780 *len = ulen; in odbc_stmt_get_col()
781 memcpy(*ptr, S->convbuf, ulen+1); in odbc_stmt_get_col()