Home
last modified time | relevance | path

Searched refs:pTm (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/fpdfsdk/src/javascript/
DJS_Value.cpp758 struct tm* pTm = localtime(&t); in JS_GetDateTime() local
760 int year = pTm->tm_year + 1900; in JS_GetDateTime()
763 return t1 + pTm->tm_yday * 86400000.0 + pTm->tm_hour * 3600000.0 + in JS_GetDateTime()
764 pTm->tm_min * 60000.0 + pTm->tm_sec * 1000.0; in JS_GetDateTime()
/external/sqlite/dist/
Dsqlite3.c16518 static int osLocaltime(time_t *t, struct tm *pTm){ in osLocaltime() argument
16530 if( pX ) *pTm = *pX; in osLocaltime()
16538 rc = localtime_r(t, pTm)==0; in osLocaltime()
16540 rc = localtime_s(pTm, t); in osLocaltime()
17168 struct tm *pTm; in currentTimeFunc() local
17179 pTm = gmtime_r(&t, &sNow); in currentTimeFunc()
17182 pTm = gmtime(&t); in currentTimeFunc()
17183 if( pTm ) memcpy(&sNow, pTm, sizeof(sNow)); in currentTimeFunc()
17186 if( pTm ){ in currentTimeFunc()
36409 SYSTEMTIME pTm;
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c16518 static int osLocaltime(time_t *t, struct tm *pTm){ in osLocaltime() argument
16530 if( pX ) *pTm = *pX; in osLocaltime()
16538 rc = localtime_r(t, pTm)==0; in osLocaltime()
16540 rc = localtime_s(pTm, t); in osLocaltime()
17168 struct tm *pTm; in currentTimeFunc() local
17179 pTm = gmtime_r(&t, &sNow); in currentTimeFunc()
17182 pTm = gmtime(&t); in currentTimeFunc()
17183 if( pTm ) memcpy(&sNow, pTm, sizeof(sNow)); in currentTimeFunc()
17186 if( pTm ){ in currentTimeFunc()
36391 SYSTEMTIME pTm;
[all …]