Lines Matching defs:size
363 DWORD size = Py_ARRAY_LENGTH(buf);
399 if (MsiFormatRecord(0, err, res, &size) == ERROR_MORE_DATA) {
400 res = malloc(size+1);
405 MsiFormatRecord(0, err, res, &size);
406 res[size]='\0';
487 DWORD size = Py_ARRAY_LENGTH(buf);
490 status = MsiRecordGetStringW(self->h, field, res, &size);
492 res = (WCHAR*) malloc((size + 1)*sizeof(WCHAR));
495 status = MsiRecordGetStringW(self->h, field, res, &size);
499 string = PyUnicode_FromWideChar(res, size);