Lines Matching refs:len

816 			int len, bytes;
819 len = strlen(name) + 4 + 2;
823 if ((len < NETROOM()) && (bytes < sizeof (temp))) {
824 ring_supply_data(&netoring, temp, len);
825 printsub('>', &temp[2], len-2);
841 int len, bytes;
848 len = strlen((char *)temp+4) + 4; /* temp[3] is 0 ... */
850 if ((len < NETROOM()) && (bytes < sizeof (temp))) {
851 ring_supply_data(&netoring, temp, len);
852 printsub('>', temp+2, len - 2);
944 int len, bytes;
958 len = strlen((char *)temp+4) + 4; /* temp[3] is 0 ... */
960 if ((len < NETROOM()) && (bytes < sizeof (temp))) {
961 ring_supply_data(&netoring, temp, len);
962 printsub('>', temp+2, len - 2);
1058 lm_will(cmd, len)
1060 int len;
1062 if (len < 1) {
1085 lm_wont(cmd, len)
1087 int len;
1089 if (len < 1) {
1104 lm_do(cmd, len)
1106 int len;
1108 if (len < 1) {
1131 lm_dont(cmd, len)
1133 int len;
1135 if (len < 1) {
1154 lm_mode(cmd, len, init)
1156 int len, init;
1158 if (len != 1)
1338 slc(cp, len)
1340 int len;
1345 slc_start_reply(len);
1347 for (; len >= 3; len -= 3, cp += 3) {
1428 slc_start_reply(size_t len)
1434 slc_reply = realloc(slc_reply, (len * 2) + SLC_WRAPPER_SIZE);
1460 register int len;
1464 len = slc_replyp - slc_reply;
1465 if (len <= SLC_WRAPPER_SIZE)
1467 if (NETROOM() > len) {
1515 env_opt(buf, len)
1517 register int len;
1525 if (len == 1) {
1527 } else for (i = 1; i < len; i++) {
1720 register int len;
1722 len = opt_replyp - opt_reply + 2;
1723 if (emptyok || len > OPT_WRAPPER_SIZE) {
1726 if (NETROOM() > len) {
1727 ring_supply_data(&netoring, opt_reply, len);
1728 printsub('>', &opt_reply[2], len - 2);