Lines Matching refs:pret
921 PRExplodedTime pret;
936 PR_ExplodeTime(aLastModifiedTime * PR_USEC_PER_MSEC, PR_LocalTimeParameters, &pret);
938 if (pret.tm_year >= 1980)
939 pathInfo.fdateLastWrite.year = pret.tm_year-1980;
941 pathInfo.fdateLastWrite.year = pret.tm_year;
942 pathInfo.fdateLastWrite.month = pret.tm_month + 1; // Convert start offset -- Win32: Jan=1; NSPR: Jan=0
943 // ???? OS2TODO st.wDayOfWeek = pret.tm_wday;
944 pathInfo.fdateLastWrite.day = pret.tm_mday;
945 pathInfo.ftimeLastWrite.hours = pret.tm_hour;
946 pathInfo.ftimeLastWrite.minutes = pret.tm_min;
947 pathInfo.ftimeLastWrite.twosecs = pret.tm_sec / 2; // adjust for twosecs?
948 // ??? OS2TODO st.wMilliseconds = pret.tm_usec/1000;