Lines Matching refs:explTime

118 		PRExplodedTime explTime ;  in getNotValidBefore()  local
127 PR_ExplodeTime( notBefore, PR_LocalTimeParameters, &explTime ) ; in getNotValidBefore()
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()
147 PRExplodedTime explTime ; in getNotValidAfter() local
156 PR_ExplodeTime( notAfter, PR_LocalTimeParameters, &explTime ) ; in getNotValidAfter()
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()