Lines Matching defs:args
46 msvcrt_locking(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
56 fd = _PyLong_AsInt(args[0]);
60 mode = _PyLong_AsInt(args[1]);
64 nbytes = PyLong_AsLong(args[2]);
92 msvcrt_setmode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
102 fd = _PyLong_AsInt(args[0]);
106 flags = _PyLong_AsInt(args[1]);
137 msvcrt_open_osfhandle(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
144 if (!_PyArg_ParseStack(args, nargs, ""_Py_PARSE_UINTPTR"i:open_osfhandle",
484 msvcrt_CrtSetReportFile(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
491 if (!_PyArg_ParseStack(args, nargs, "i"_Py_PARSE_UINTPTR":CrtSetReportFile",
524 msvcrt_CrtSetReportMode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
534 type = _PyLong_AsInt(args[0]);
538 mode = _PyLong_AsInt(args[1]);