Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/src/jsapi/
Dfxjs_v8.cpp949 struct tm* pTm = localtime(&t); in JS_GetDateTime() local
951 int year = pTm->tm_year+1900; in JS_GetDateTime()
954 …return t1 + pTm->tm_yday*86400000.0 + pTm->tm_hour*3600000.0+pTm->tm_min*60000.0+pTm->tm_sec*1000.… in JS_GetDateTime()
/external/sqlite/dist/
Dsqlite3.c15759 static int osLocaltime(time_t *t, struct tm *pTm){ in osLocaltime() argument
15771 if( pX ) *pTm = *pX; in osLocaltime()
15779 rc = localtime_r(t, pTm)==0; in osLocaltime()
15781 rc = localtime_s(pTm, t); in osLocaltime()
16409 struct tm *pTm; in currentTimeFunc() local
16420 pTm = gmtime_r(&t, &sNow); in currentTimeFunc()
16423 pTm = gmtime(&t); in currentTimeFunc()
16424 if( pTm ) memcpy(&sNow, pTm, sizeof(sNow)); in currentTimeFunc()
16427 if( pTm ){ in currentTimeFunc()
35229 SYSTEMTIME pTm;
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c15759 static int osLocaltime(time_t *t, struct tm *pTm){ in osLocaltime() argument
15771 if( pX ) *pTm = *pX; in osLocaltime()
15779 rc = localtime_r(t, pTm)==0; in osLocaltime()
15781 rc = localtime_s(pTm, t); in osLocaltime()
16409 struct tm *pTm; in currentTimeFunc() local
16420 pTm = gmtime_r(&t, &sNow); in currentTimeFunc()
16423 pTm = gmtime(&t); in currentTimeFunc()
16424 if( pTm ) memcpy(&sNow, pTm, sizeof(sNow)); in currentTimeFunc()
16427 if( pTm ){ in currentTimeFunc()
35211 SYSTEMTIME pTm;
[all …]