Lines Matching refs:thestr
709 char * thestr; in asn1_time_to_time_t() local
738 thestr = strbuf + ASN1_STRING_length(timestr) - 3; in asn1_time_to_time_t()
740 thetime.tm_sec = atoi(thestr); in asn1_time_to_time_t()
741 *thestr = '\0'; in asn1_time_to_time_t()
742 thestr -= 2; in asn1_time_to_time_t()
743 thetime.tm_min = atoi(thestr); in asn1_time_to_time_t()
744 *thestr = '\0'; in asn1_time_to_time_t()
745 thestr -= 2; in asn1_time_to_time_t()
746 thetime.tm_hour = atoi(thestr); in asn1_time_to_time_t()
747 *thestr = '\0'; in asn1_time_to_time_t()
748 thestr -= 2; in asn1_time_to_time_t()
749 thetime.tm_mday = atoi(thestr); in asn1_time_to_time_t()
750 *thestr = '\0'; in asn1_time_to_time_t()
751 thestr -= 2; in asn1_time_to_time_t()
752 thetime.tm_mon = atoi(thestr)-1; in asn1_time_to_time_t()
754 *thestr = '\0'; in asn1_time_to_time_t()
756 thestr -= 2; in asn1_time_to_time_t()
757 thetime.tm_year = atoi(thestr); in asn1_time_to_time_t()
763 thestr -= 4; in asn1_time_to_time_t()
764 thetime.tm_year = atoi(thestr) - 1900; in asn1_time_to_time_t()