Lines Matching defs:handle
241 " Integer file descriptor handle.");
8168 "get_handle_inheritable($module, handle, /)\n"
8177 os_get_handle_inheritable_impl(PyObject *module, intptr_t handle);
8183 intptr_t handle;
8186 if (!PyArg_Parse(arg, "" _Py_PARSE_INTPTR ":get_handle_inheritable", &handle)) {
8189 _return_value = os_get_handle_inheritable_impl(module, handle);
8204 "set_handle_inheritable($module, handle, inheritable, /)\n"
8207 "Set the inheritable flag of the specified handle.");
8213 os_set_handle_inheritable_impl(PyObject *module, intptr_t handle,
8220 intptr_t handle;
8224 &handle, &inheritable)) {
8227 return_value = os_set_handle_inheritable_impl(module, handle, inheritable);