Lines Matching refs:dateTime
119 DateTime dateTime ; in getNotValidBefore() local
129 dateTime.HundredthSeconds = static_cast< sal_Int16 >( explTime.tm_usec / 1000 ); in getNotValidBefore()
130 dateTime.Seconds = static_cast< sal_Int16 >( explTime.tm_sec ); in getNotValidBefore()
131 dateTime.Minutes = static_cast< sal_Int16 >( explTime.tm_min ); in getNotValidBefore()
132 dateTime.Hours = static_cast< sal_Int16 >( explTime.tm_hour ); in getNotValidBefore()
133 dateTime.Day = static_cast< sal_Int16 >( explTime.tm_mday ); in getNotValidBefore()
134 dateTime.Month = static_cast< sal_Int16 >( explTime.tm_month+1 ); in getNotValidBefore()
135 dateTime.Year = static_cast< sal_Int16 >( explTime.tm_year ); in getNotValidBefore()
137 return dateTime ; in getNotValidBefore()
148 DateTime dateTime ; in getNotValidAfter() local
158 dateTime.HundredthSeconds = static_cast< sal_Int16 >( explTime.tm_usec / 1000 ); in getNotValidAfter()
159 dateTime.Seconds = static_cast< sal_Int16 >( explTime.tm_sec ); in getNotValidAfter()
160 dateTime.Minutes = static_cast< sal_Int16 >( explTime.tm_min ); in getNotValidAfter()
161 dateTime.Hours = static_cast< sal_Int16 >( explTime.tm_hour ); in getNotValidAfter()
162 dateTime.Day = static_cast< sal_Int16 >( explTime.tm_mday ); in getNotValidAfter()
163 dateTime.Month = static_cast< sal_Int16 >( explTime.tm_month+1 ); in getNotValidAfter()
164 dateTime.Year = static_cast< sal_Int16 >( explTime.tm_year ); in getNotValidAfter()
166 return dateTime ; in getNotValidAfter()