Home
last modified time | relevance | path

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

/haiku/src/tests/system/libroot/posix/
H A Dlocale_test.cpp1766 test_localtime(const char* tz, time_t nowSecs, const tm& expected) in test_localtime() argument
1772 tm* result = localtime_r(&nowSecs, &now); in test_localtime()
1775 printf("\tPROBLEM: localtime(\"%ld\") = NULL\n", nowSecs); in test_localtime()
1841 test_gmtime(const char* tz, time_t nowSecs, const tm& expected) in test_gmtime() argument
1847 tm* result = gmtime_r(&nowSecs, &now); in test_gmtime()
1850 printf("\tPROBLEM: localtime(\"%ld\") = NULL\n", nowSecs); in test_gmtime()
H A Dwcs_test.cpp2615 time_t nowSecs = 1279391169; // pure magic in test_wcsftime() local
2616 tm* now = localtime(&nowSecs); in test_wcsftime()