Lines Matching refs:thestr
962 char * thestr; in php_openssl_asn1_time_to_time_t() local
994 thestr = strbuf + timestr_len - 3; in php_openssl_asn1_time_to_time_t()
999 thetime.tm_sec = atoi(thestr); in php_openssl_asn1_time_to_time_t()
1000 *thestr = '\0'; in php_openssl_asn1_time_to_time_t()
1001 thestr -= 2; in php_openssl_asn1_time_to_time_t()
1003 thetime.tm_min = atoi(thestr); in php_openssl_asn1_time_to_time_t()
1004 *thestr = '\0'; in php_openssl_asn1_time_to_time_t()
1005 thestr -= 2; in php_openssl_asn1_time_to_time_t()
1006 thetime.tm_hour = atoi(thestr); in php_openssl_asn1_time_to_time_t()
1007 *thestr = '\0'; in php_openssl_asn1_time_to_time_t()
1008 thestr -= 2; in php_openssl_asn1_time_to_time_t()
1009 thetime.tm_mday = atoi(thestr); in php_openssl_asn1_time_to_time_t()
1010 *thestr = '\0'; in php_openssl_asn1_time_to_time_t()
1011 thestr -= 2; in php_openssl_asn1_time_to_time_t()
1012 thetime.tm_mon = atoi(thestr)-1; in php_openssl_asn1_time_to_time_t()
1014 *thestr = '\0'; in php_openssl_asn1_time_to_time_t()
1016 thestr -= 2; in php_openssl_asn1_time_to_time_t()
1017 thetime.tm_year = atoi(thestr); in php_openssl_asn1_time_to_time_t()
1023 thestr -= 4; in php_openssl_asn1_time_to_time_t()
1024 thetime.tm_year = atoi(thestr) - 1900; in php_openssl_asn1_time_to_time_t()