HomeSort by: relevance | last modified time | path
    Searched defs:msgCount (Results 1 - 5 of 5) sorted by relevancy

  /src/usr.bin/mail/
edit.c 157 int msgCount;
165 msgCount = get_msgCount();
166 for (i = 0; i < msgCount && msgvec[i]; i++) {
cmd1.c 117 int msgCount;
118 msgCount = get_msgCount();
119 if (screen * size + 1 > msgCount)
120 mp = get_message(msgCount - size + 1);
321 int msgCount;
350 msgCount = get_msgCount();
353 for (ip = mvec; *ip && ip - mvec < msgCount; ip++) {
534 int msgCount;
551 msgCount = get_msgCount();
552 for (ip = msgvec; *ip && ip - msgvec < msgCount; ip++)
    [all...]
fio.c 59 static int msgCount; /* Count of messages read in */
64 if (mp + 1 < message || mp + 1 >= message + msgCount)
73 if (mp - 1 < message || mp - 1 >= message + msgCount)
82 if (msgnum < 1 || msgnum > msgCount)
91 if (mp < message || mp >= message + msgCount)
100 return msgCount;
193 # define nmsgCount msgCount
cmd2.c 208 int msgCount;
211 msgCount = get_msgCount();
212 msgvec = salloc((msgCount + 2) * sizeof(*msgvec));
237 for (ip = msgvec; *ip && ip - msgvec < msgCount; ip++) {
393 int msgCount;
398 msgCount = get_msgCount();
399 for (ip = msgvec; *ip && ip-msgvec < msgCount; ip++) {
646 int msgCount;
668 msgCount = get_msgCount();
669 msgvec = salloc((msgCount + 2) * sizeof(*msgvec))
    [all...]
list.c 755 * Interpret 'str' and check each message (1 thru 'msgCount') for a match.
768 match_string(int *markarray, char *str, int msgCount)
848 for (i = 1; i <= msgCount; i++) {
950 int msgCount; /* tmparray length and message count */
962 msgCount = get_msgCount();
963 tmparray = csalloc((size_t)msgCount, sizeof(*tmparray));
1092 if (match_string(tmparray, lexstring, msgCount) == -1)
1098 for (i = 1; i <= msgCount; i++)
1154 for (i = 0; i < msgCount; i++)
1159 for (i = 0; i < msgCount; i++
    [all...]

Completed in 12 milliseconds