Lines Matching defs:value

1364 "value is first masked out.");
2244 " If the value is `true` the POSIX_SPAWN_RESETIDS will be activated.\n"
2246 " If the value is `true` the POSIX_SPAWN_SETSID or POSIX_SPAWN_SETSID_NP will be activated.\n"
2371 " If the value is `True` the POSIX_SPAWN_RESETIDS will be activated.\n"
2373 " If the value is `True` the POSIX_SPAWN_SETSID or POSIX_SPAWN_SETSID_NP will be activated.\n"
2896 "Return value is an instance of sched_param.");
5647 "set a limit (sysconf() value SC_IOV_MAX) on the number of buffers that can be used.\n"
6360 "putenv($module, name, value, /)\n"
6369 os_putenv_impl(PyObject *module, PyObject *name, PyObject *value);
6376 PyObject *value;
6396 value = args[1];
6397 return_value = os_putenv_impl(module, name, value);
6408 "putenv($module, name, value, /)\n"
6417 os_putenv_impl(PyObject *module, PyObject *name, PyObject *value);
6424 PyObject *value = NULL;
6432 if (!PyUnicode_FSConverter(args[1], &value)) {
6435 return_value = os_putenv_impl(module, name, value);
6440 /* Cleanup for value */
6441 Py_XDECREF(value);
6812 "Return the signal that terminated the process that provided the status value.");
6856 "Return the signal that stopped the process that provided the status value.");
7533 "Return the value of extended attribute attribute on path.\n"
7593 "setxattr($module, /, path, attribute, value, flags=0, *,\n"
7597 "Set extended attribute attribute on path to value.\n"
7609 Py_buffer *value, int flags, int follow_symlinks);
7615 static const char * const _keywords[] = {"path", "attribute", "value", "flags", "follow_symlinks", NULL};
7621 Py_buffer value = {NULL, NULL};
7635 if (PyObject_GetBuffer(args[2], &value, PyBUF_SIMPLE) != 0) {
7638 if (!PyBuffer_IsContiguous(&value, 'C')) {
7639 _PyArg_BadArgument("setxattr", "argument 'value'", "contiguous buffer", args[2]);
7663 return_value = os_setxattr_impl(module, &path, &attribute, &value, flags, follow_symlinks);
7670 /* Cleanup for value */
7671 if (value.obj) {
7672 PyBuffer_Release(&value);
7949 "Read eventfd value");
7984 "eventfd_write($module, /, fd, value)\n"
7987 "Write eventfd value.");
7993 os_eventfd_write_impl(PyObject *module, int fd, unsigned long long value);
7999 static const char * const _keywords[] = {"fd", "value", NULL};
8003 unsigned long long value;
8012 if (!_PyLong_UnsignedLongLong_Converter(args[1], &value)) {
8015 return_value = os_eventfd_write_impl(module, fd, value);
8671 "Returns an opaque value that may be passed to os.remove_dll_directory\n"
8715 "The parameter is an opaque value that was returned from\n"