Lines Matching refs:MSGSIZE
17 #define MSGSIZE 1024 macro
90 wchar_t message[MSGSIZE]; in error()
91 wchar_t win_message[MSGSIZE]; in error()
95 len = _vsnwprintf_s(message, MSGSIZE, _TRUNCATE, format, va); in error()
99 winerror(GetLastError(), win_message, MSGSIZE); in error()
101 _snwprintf_s(&message[len], MSGSIZE - len, _TRUNCATE, L": %ls", in error()
254 wchar_t message[MSGSIZE]; in _locate_pythons_for_key()
276 winerror(status, message, MSGSIZE); in _locate_pythons_for_key()
297 winerror(status, message, MSGSIZE); in _locate_pythons_for_key()
316 winerror(status, message, MSGSIZE); in _locate_pythons_for_key()
341 winerror(GetLastError(), message, MSGSIZE); in _locate_pythons_for_key()
582 static wchar_t configured_value[MSGSIZE]; in get_configured_value()
588 _snwprintf_s(configured_value, MSGSIZE, _TRUNCATE, L"py_%ls", key); in get_configured_value()
593 configured_value, MSGSIZE, in get_configured_value()
603 configured_value, MSGSIZE, in get_configured_value()
881 wchar_t value[MSGSIZE];
938 len = SearchPathW(NULL, name, NULL, MSGSIZE, path_command.value, NULL); in find_on_path()
949 len = SearchPathW(NULL, name, extension, MSGSIZE, path_command.value, NULL); in find_on_path()
987 wcsncpy_s(cp->value, MSGSIZE, cmdline, _TRUNCATE); in update_command()
1006 wchar_t keynames[MSGSIZE]; in read_config_file()
1007 wchar_t value[MSGSIZE]; in read_config_file()
1013 read = GetPrivateProfileStringW(L"commands", NULL, NULL, keynames, MSGSIZE, in read_config_file()
1015 if (read == MSGSIZE - 1) { in read_config_file()
1020 read = GetPrivateProfileStringW(L"commands", key, NULL, value, MSGSIZE, in read_config_file()
1022 if (read == MSGSIZE - 1) { in read_config_file()
1725 wchar_t message[MSGSIZE]; in process()
1780 winerror(GetLastError(), message, MSGSIZE); in process()