Lines Matching defs:value
455 Return the value of field as an integer where possible.
477 Return the value of field as a string where possible.
525 value: Py_UNICODE
528 Set field to a string value.
532 _msi_Record_SetString_impl(msiobj *self, int field, const Py_UNICODE *value)
537 if ((status = MsiRecordSetStringW(self->h, field, value)) != ERROR_SUCCESS)
546 value: Py_UNICODE
549 Set field to the contents of the file named value.
553 _msi_Record_SetStream_impl(msiobj *self, int field, const Py_UNICODE *value)
558 if ((status = MsiRecordSetStreamW(self->h, field, value)) != ERROR_SUCCESS)
567 value: int
570 Set field to an integer value.
574 _msi_Record_SetInteger_impl(msiobj *self, int field, int value)
579 if ((status = MsiRecordSetInteger(self->h, field, value)) != ERROR_SUCCESS)
745 value as data: object
746 the new value of the property (integer or string)
761 const WCHAR *value = _PyUnicode_AsUnicode(data);
763 WCHAR *value = PyUnicode_AsWideCharString(data, NULL);
765 if (value == NULL) {
769 0, NULL, value);
771 PyMem_Free(value);
774 long value = PyLong_AsLong(data);
775 if (value == -1 && PyErr_Occurred()) {
779 value, NULL, NULL);
1203 /* We need to validate that persist is a valid MSIDBOPEN_* value. Otherwise,
1204 MsiOpenDatabase may treat the value as a pointer, leading to unexpected