/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
mdcommsg.h | 10 #define HRESULTTOWIN32(hres) ((HRESULT_FACILITY(hres)==FACILITY_WIN32) ? HRESULT_CODE(hres) : (hres))
|
propvarutil.h | 97 HRESULT hres; local 99 hres = SHStrDupW(psz, &ppropvar->pwszVal); 100 if(SUCCEEDED(hres)) 105 return hres;
|
shdeprecated.h | 312 virtual HRESULT WINAPI DisplayParseError(HRESULT hres,LPCWSTR pwszPath) = 0; 349 HRESULT (WINAPI *DisplayParseError)(IBrowserService *This,HRESULT hres,LPCWSTR pwszPath); 388 #define IBrowserService_DisplayParseError(This,hres,pwszPath) (This)->lpVtbl->DisplayParseError(This,hres,pwszPath) 429 HRESULT WINAPI IBrowserService_DisplayParseError_Proxy(IBrowserService *This,HRESULT hres,LPCWSTR pwszPath); [all...] |
mfapi.h | 530 HRESULT hres; 532 hres = pAttributes->GetUINT64(guidKey, &val); 533 if(SUCCEEDED(hres)) 535 return hres; [all...] |
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/ |
d3d11_objects.h | 580 HRESULT hres = this->device->get_immediate_context()->Map(this, 0, d3d_map, 0, &d3d_mapped); local 583 return hres;
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/ |
dxgi_native.cpp | 1504 HRESULT hres = factory->QueryInterface(riid, out_factory); local [all...] |
/external/webrtc/webrtc/modules/audio_device/win/ |
audio_device_core_win.cc | 43 #define EXIT_ON_ERROR(hres) do { if (FAILED(hres)) goto Exit; } while(0) 46 #define CONTINUE_ON_ERROR(hres) do { if (FAILED(hres)) goto Next; } while(0) [all...] |