Home
last modified time | relevance | path

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

/external/pdfium/fxjs/
DJS_Define.cpp174 struct tm* pTm = localtime(&t); in JS_GetDateTime() local
176 int year = pTm->tm_year + 1900; in JS_GetDateTime()
179 return t1 + pTm->tm_yday * 86400000.0 + pTm->tm_hour * 3600000.0 + in JS_GetDateTime()
180 pTm->tm_min * 60000.0 + pTm->tm_sec * 1000.0; in JS_GetDateTime()
/external/sqlite/dist/orig/
Dsqlite3.c20071 static int osLocaltime(time_t *t, struct tm *pTm){ in osLocaltime() argument
20083 if( pX ) *pTm = *pX; in osLocaltime()
20091 rc = localtime_r(t, pTm)==0; in osLocaltime()
20093 rc = localtime_s(pTm, t); in osLocaltime()
20759 struct tm *pTm; in currentTimeFunc() local
20770 pTm = gmtime_r(&t, &sNow); in currentTimeFunc()
20773 pTm = gmtime(&t); in currentTimeFunc()
20774 if( pTm ) memcpy(&sNow, pTm, sizeof(sNow)); in currentTimeFunc()
20777 if( pTm ){ in currentTimeFunc()
40868 SYSTEMTIME pTm;
[all …]
/external/sqlite/dist/
Dsqlite3.c20071 static int osLocaltime(time_t *t, struct tm *pTm){ in osLocaltime() argument
20083 if( pX ) *pTm = *pX; in osLocaltime()
20091 rc = localtime_r(t, pTm)==0; in osLocaltime()
20093 rc = localtime_s(pTm, t); in osLocaltime()
20759 struct tm *pTm; in currentTimeFunc() local
20770 pTm = gmtime_r(&t, &sNow); in currentTimeFunc()
20773 pTm = gmtime(&t); in currentTimeFunc()
20774 if( pTm ) memcpy(&sNow, pTm, sizeof(sNow)); in currentTimeFunc()
20777 if( pTm ){ in currentTimeFunc()
40884 SYSTEMTIME pTm;
[all …]