Lines Matching refs:len

824 	size_t len;
828 len = vsnprintf(*cur, *n, format, args);
831 *cur += len;
832 *n -= len;
833 *cur_col += len;
844 size_t len;
847 len = snprintf(*cur, *n, MSG_ORIG(MSG_STR_HLPOPTARG2),
850 len = snprintf(*cur, *n, MSG_ORIG(MSG_STR_HLPOPTARG),
853 *cur += len;
854 *n -= len;
855 *cur_col += len;
895 int len;
974 len = snprintf(cur, n, MSG_ORIG(MSG_FMT_WRAPUSAGE),
976 cur += len;
977 n -= len;
978 cur_col = len - 1; /* Don't count the newline */
1075 size_t len, n, elipses_len;
1115 len = snprintf(cur, n, MSG_ORIG(MSG_FMT_SYSCMD),
1118 len = snprintf(cur, n, MSG_ORIG(MSG_FMT_MODCMD),
1120 cur += len;
1121 n -= len;
1122 cur_col += len;
1378 size_t len;
1380 len = strlen(path);
1381 if (len == 0)
1383 tail = path + len;
2398 * len - # of characters in user_cmd_str to examine. If
2399 * (len < 0), then the complete string is processed
2401 * processing stops after len characters, and any
2415 tokenize_user_cmd(const char *user_cmd_str, size_t len, int inc_null_final)
2432 * Make a copy we can modify. If (len == 0), take the entire
2436 if ((len > 0) && (len < tokst.tokst_cmd_len))
2437 tokst.tokst_cmd_len = len;
2492 size_t len;
2534 len = tokst->tokst_buf[n].tok_len + 1;
2536 (void) strncpy(s, tokst->tokst_buf[n].tok_str, len);
2537 s += len;
2637 size_t len = 0;
2641 len = 0;
2647 len += strlen(isa_i_str);
2650 len += strlen(isa_I_str);
2653 len +=
2658 len += strlen(origin_root);
2662 len++;
2671 len++;
2675 return (len);
2696 size_t len;
2726 if ((cp_str != NULL) && ((len = strlen(cp_str)) > 0)) {
2727 bcopy(cp_str, buf, len);
2728 buf += len;
2762 size_t len;
2786 len = (sizeof (char *) == 8) ? 3 : 2;
2788 while ((src > origin_root) && (len > 0)) {
2790 len--;
2811 len = modpath_strlen(path, origin_root);
2813 expath = elfedit_malloc(MSG_INTL(MSG_ALLOC_EXPATH), len + 1);
2845 for (len = 0; len < state.modpath.n; len++) {
2847 state.modpath.seg[len] = MSG_ORIG(MSG_STR_DOT);
2850 state.modpath.seg[len] = src;