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

  /src/usr.bin/mail/
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...]
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
edit.c 157 int msgCount;
165 msgCount = get_msgCount();
166 for (i = 0; i < msgCount && msgvec[i]; i++) {
thread.c 469 thread_init(struct thread_s *tp, struct message *mp, int msgCount)
473 if (tp->t_msgtbl == NULL || msgCount > tp->t_msgCount) {
476 tp->t_msgtbl = ecalloc((size_t)msgCount, sizeof(tp->t_msgtbl[0]));
479 tp->t_msgCount = msgCount;
480 for (i = 0; i < msgCount; i++)
489 thread_fix_new_links(struct message *message, int omsgCount, int msgCount)
500 message_array.t_msgCount = msgCount;
528 for (i = omsgCount; i < msgCount; i++) {
544 thread_init(&current_thread, message, msgCount);
553 msgCount * sizeof(*current_thread.t_msgtbl))
    [all...]
extern.h 361 # define thread_fix_new_links(message,omsgCount,msgCount)

Completed in 14 milliseconds