Home | History | Annotate | Download | only in mail

Lines Matching refs:tep

680 	const struct transfer_encoding_s *tep = NULL;
685 for (tep = transfer_encoding_tbl; tep->name; tep++)
686 if (strcasecmp(tep->name, ename) == 0)
688 return tep->enc;
694 const struct transfer_encoding_s *tep = NULL;
699 for (tep = transfer_encoding_tbl; tep->name; tep++)
700 if (strcasecmp(tep->name, ename) == 0)
702 return tep->dec;
733 const struct transfer_encoding_s *tep;
735 tep = *cookie;
736 if (tep == NULL)
737 tep = transfer_encoding_tbl;
739 *cookie = tep->name ? &tep[1] : NULL;
741 return tep->name;