Searched refs:pTm (Results 1 – 3 of 3) sorted by relevance
/external/pdfium/fxjs/ |
D | JS_Define.cpp | 174 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/ |
D | sqlite3.c | 20071 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/ |
D | sqlite3.c | 20071 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 …]
|