Lines Matching refs:used_out
387 size_t in_len, used_in, used_out;
394 n = lws_strexp_expand(&exp, exp_inp1, 28, &used_in, &used_out);
406 n = lws_strexp_expand(&exp, exp_inp1, 28, &used_in, &used_out);
407 if (n != LSTRX_DONE || used_in != 28 || used_out != 39) {
408 lwsl_err("%s: lws_strexp test 2 failed: %d, used_out: %d\n",
409 __func__, n, (int)used_out);
418 n = lws_strexp_expand(&exp, p, in_len, &used_in, &used_out);
419 if (n != LSTRX_FILLED_OUT || used_in != 16 || used_out != 16) {
430 n = lws_strexp_expand(&exp, p, in_len, &used_in, &used_out);
431 if (n != LSTRX_FILLED_OUT || used_in != 5 || used_out != 16) {
432 lwsl_err("b: n %d, used_in %d, used_out %d\n", n,
433 (int)used_in, (int)used_out);
443 n = lws_strexp_expand(&exp, p, in_len, &used_in, &used_out);
444 if (n != LSTRX_DONE || used_in != 7 || used_out != 7) {
445 lwsl_err("c: n %d, used_in %d, used_out %d\n", n, (int)used_in, (int)used_out);