Searched refs:lpMsgBuf (Results 1 – 8 of 8) sorted by relevance
/third_party/boost/boost/iostreams/detail/ |
D | system_failure.hpp | 44 LPVOID lpMsgBuf; in system_failure() local 51 (LPSTR) &lpMsgBuf, in system_failure() 55 result.reserve(std::strlen(msg) + 2 + std::strlen((LPSTR)lpMsgBuf)); in system_failure() 58 result.append((LPSTR) lpMsgBuf); in system_failure() 59 ::LocalFree(lpMsgBuf); in system_failure()
|
/third_party/boost/boost/system/detail/ |
D | system_category_win32.hpp | 113 wchar_t * lpMsgBuf = 0; in system_category_message_win32() local 120 (LPWSTR_) &lpMsgBuf, in system_category_message_win32() 127 …r = boost::winapi::WideCharToMultiByte( code_page, 0, lpMsgBuf, -1, buffer, static_cast<int>( len … in system_category_message_win32() 128 boost::winapi::LocalFree( lpMsgBuf ); in system_category_message_win32() 171 wchar_t * lpMsgBuf = 0; in system_category_message_win32() local 178 (LPWSTR_) &lpMsgBuf, in system_category_message_win32() 188 local_free lf_ = { lpMsgBuf }; in system_category_message_win32() 193 int r = boost::winapi::WideCharToMultiByte( code_page, 0, lpMsgBuf, -1, 0, 0, NULL, NULL ); in system_category_message_win32() 202 r = boost::winapi::WideCharToMultiByte( code_page, 0, lpMsgBuf, -1, &buffer[0], r, NULL, NULL ); in system_category_message_win32()
|
/third_party/boost/libs/system/test/ |
D | system_category_test.cpp | 37 void * lpMsgBuf = 0; in sys_strerror() local 46 (LPSTR) &lpMsgBuf, in sys_strerror() 61 local_free lf_ = { lpMsgBuf }; in sys_strerror() 71 std::string str( static_cast<char const*>( lpMsgBuf ) ); in sys_strerror()
|
/third_party/boost/boost/interprocess/ |
D | errors.hpp | 69 void *lpMsgBuf; in fill_system_message() local 77 reinterpret_cast<char *>(&lpMsgBuf), in fill_system_message() 82 str += static_cast<const char*>(lpMsgBuf); in fill_system_message() 83 winapi::local_free( lpMsgBuf ); // free the buffer in fill_system_message()
|
/third_party/python/Modules/_ctypes/ |
D | callproc.c | 259 WCHAR *lpMsgBuf; in FormatError() local 267 (LPWSTR) &lpMsgBuf, in FormatError() 271 while (iswspace(lpMsgBuf[n-1])) in FormatError() 273 lpMsgBuf[n] = L'\0'; /* rstrip() */ in FormatError() 275 return lpMsgBuf; in FormatError() 1323 wchar_t *lpMsgBuf; in format_error() local 1329 lpMsgBuf = FormatError(code); in format_error() 1330 if (lpMsgBuf) { in format_error() 1331 result = PyUnicode_FromWideChar(lpMsgBuf, wcslen(lpMsgBuf)); in format_error() 1332 LocalFree(lpMsgBuf); in format_error()
|
/third_party/python/Modules/ |
D | overlapped.c | 565 WCHAR *lpMsgBuf; in _overlapped_FormatMessage_impl() local 574 (LPWSTR) &lpMsgBuf, in _overlapped_FormatMessage_impl() 578 while (iswspace(lpMsgBuf[n-1])) in _overlapped_FormatMessage_impl() 580 lpMsgBuf[n] = L'\0'; in _overlapped_FormatMessage_impl() 581 res = Py_BuildValue("u", lpMsgBuf); in _overlapped_FormatMessage_impl() 585 LocalFree(lpMsgBuf); in _overlapped_FormatMessage_impl()
|
/third_party/libsnd/src/ |
D | file_io.c | 836 { LPVOID lpMsgBuf ; in psf_log_syserr() local 847 (LPTSTR) &lpMsgBuf, in psf_log_syserr() 852 snprintf (psf->syserr, sizeof (psf->syserr), "System error : %s", (char*) lpMsgBuf) ; in psf_log_syserr() 853 LocalFree (lpMsgBuf) ; in psf_log_syserr()
|
/third_party/chromium/patch/ |
D | 0001-cve.patch | 137792 - &lpMsgBuf, 0, NULL); 137793 + (LPSTR)&lpMsgBuf, 0, NULL);
|