Home
last modified time | relevance | path

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

/third_party/python/Include/cpython/
Dpytime.h44 PyAPI_FUNC(PyObject *) _PyLong_FromTime_t(
/third_party/python/Python/
Dpytime.c91 _PyLong_FromTime_t(time_t t) in _PyLong_FromTime_t() function
/third_party/python/Modules/
D_testcapimodule.c3672 return _PyLong_FromTime_t(sec); in test_pytime_object_to_time_t()
3688 return Py_BuildValue("Nl", _PyLong_FromTime_t(sec), usec); in test_pytime_object_to_timeval()
3704 return Py_BuildValue("Nl", _PyLong_FromTime_t(sec), nsec); in test_pytime_object_to_timespec()
4693 return Py_BuildValue("Nl", _PyLong_FromTime_t(ts.tv_sec), ts.tv_nsec); in test_PyTime_AsTimespec()
Dtimemodule.c442 PyStructSequence_SET_ITEM(v, 10, _PyLong_FromTime_t(gmtoff));
Dposixmodule.c2353 PyObject *s = _PyLong_FromTime_t(sec); in fill_time()