Home | History | Annotate | Download | only in mail

Lines Matching refs:msgCount

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));