Lines Matching refs:thestr
758 char * thestr; in php_openssl_asn1_time_to_time_t() local
790 thestr = strbuf + timestr_len - 3; in php_openssl_asn1_time_to_time_t()
792 thetime.tm_sec = atoi(thestr); in php_openssl_asn1_time_to_time_t()
793 *thestr = '\0'; in php_openssl_asn1_time_to_time_t()
794 thestr -= 2; in php_openssl_asn1_time_to_time_t()
795 thetime.tm_min = atoi(thestr); in php_openssl_asn1_time_to_time_t()
796 *thestr = '\0'; in php_openssl_asn1_time_to_time_t()
797 thestr -= 2; in php_openssl_asn1_time_to_time_t()
798 thetime.tm_hour = atoi(thestr); in php_openssl_asn1_time_to_time_t()
799 *thestr = '\0'; in php_openssl_asn1_time_to_time_t()
800 thestr -= 2; in php_openssl_asn1_time_to_time_t()
801 thetime.tm_mday = atoi(thestr); in php_openssl_asn1_time_to_time_t()
802 *thestr = '\0'; in php_openssl_asn1_time_to_time_t()
803 thestr -= 2; in php_openssl_asn1_time_to_time_t()
804 thetime.tm_mon = atoi(thestr)-1; in php_openssl_asn1_time_to_time_t()
806 *thestr = '\0'; in php_openssl_asn1_time_to_time_t()
808 thestr -= 2; in php_openssl_asn1_time_to_time_t()
809 thetime.tm_year = atoi(thestr); in php_openssl_asn1_time_to_time_t()
815 thestr -= 4; in php_openssl_asn1_time_to_time_t()
816 thetime.tm_year = atoi(thestr) - 1900; in php_openssl_asn1_time_to_time_t()