Home
last modified time | relevance | path

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

/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/
Dtimendk.cpp571 struct tm *ptm = nullptr; in Localtime() local
574 ptm = localtime(&ttv); in Localtime()
577 if (ptm == nullptr) { in Localtime()
587 struct tm *ptm = (struct tm *)malloc(sizeof(struct tm)); in LocaltimeR() local
590 ptm = localtime_r(&ttv, ptm); in LocaltimeR()
593 if (ptm == nullptr) { in LocaltimeR()
603 struct tm *ptm = (struct tm *)malloc(sizeof(struct tm)); in MkTime() local
606 ttv = mktime(ptm); in MkTime()