Lines Matching defs:name

19  * notice appear in supporting documentation, and that the name of the
184 name = type_ + '_converter'
186 type(name, (CConverter,), {'type': type_, 'format_unit': format_unit})
348 .name = "_winapi.Overlapped",
500 name: LPCWSTR
508 DWORD max_size_low, LPCWSTR name)
516 name);
520 PyObject *temp = PyUnicode_FromWideChar(name, -1);
593 - A junction point has two components: a print name and a substitute
594 name. They both describe the link target, but the substitute name is
595 the physical target and the print name is shown in directory listings.
596 - The print name must be a native name, prefixed with "\??\".
607 - the size of the print name in bytes
608 - the size of the substitute name in bytes
628 /* Store the full native path of link target at the substitute name
636 /* Copy everything but the native prefix to the print name offset. */
672 name: LPCTSTR
684 _winapi_CreateNamedPipe_impl(PyObject *module, LPCTSTR name, DWORD open_mode,
694 name, open_mode, pipe_mode) < 0) {
699 handle = CreateNamedPipe(name, open_mode, pipe_mode,
750 getulong(PyObject* obj, const char* name)
755 value = PyObject_GetAttrString(obj, name);
766 gethandle(PyObject* obj, const char* name)
771 value = PyObject_GetAttrString(obj, name);
836 PyErr_SetString(PyExc_ValueError, "illegal environment variable name");
888 gethandlelist(PyObject *mapping, const char *name, Py_ssize_t *size)
895 value = PyMapping_GetItemString(mapping, name);
954 getattributelist(PyObject *obj, const char *name, AttributeList *attribute_list)
964 value = PyObject_GetAttrString(obj, name);
977 PyErr_Format(PyExc_TypeError, "%s must be a mapping or None", name);
1434 name: LPCWSTR
1440 BOOL inherit_handle, LPCWSTR name)
1446 handle = OpenFileMappingW(desired_access, inherit_handle, name);
1450 PyObject *temp = PyUnicode_FromWideChar(name, -1);
1768 name: LPCTSTR
1774 _winapi_WaitNamedPipe_impl(PyObject *module, LPCTSTR name, DWORD timeout)
1780 success = WaitNamedPipe(name, timeout);