HomeSort by relevance Sort by last modified time
    Searched defs:hres (Results 1 - 6 of 6) sorted by null

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
sphelper.h 30 HRESULT hres; local
32 hres = ::CoCreateInstance(CLSID_SpObjectTokenCategory, NULL, CLSCTX_ALL, __uuidof(ISpObjectTokenCategory),
34 if(FAILED(hres))
35 return hres;
37 hres = obj_token_cat->SetId(category_id, fCreateIfNotExist);
38 if(FAILED(hres)) {
40 return hres;
49 HRESULT hres; local
51 hres = SpGetCategoryFromId(category_id, &category);
52 if(SUCCEEDED(hres)) {
67 HRESULT hres; local
    [all...]
propvarutil.h 97 HRESULT hres; local
99 hres = SHStrDupW(psz, &ppropvar->pwszVal);
100 if(SUCCEEDED(hres))
105 return hres;
  /external/mdnsresponder/mDNSWindows/
VPCDetect.cpp 37 HRESULT hres; local
65 hres = CoInitializeEx(0, COINIT_MULTITHREADED);
66 require_action( SUCCEEDED( hres ), exit, err = kUnknownErr );
71 hres = CoInitializeSecurity(NULL, -1, NULL, NULL, RPC_C_AUTHN_LEVEL_DEFAULT, RPC_C_IMP_LEVEL_IMPERSONATE, NULL, EOAC_NONE, NULL );
72 require_action( SUCCEEDED( hres ), exit, err = kUnknownErr );
77 hres = CoCreateInstance( CLSID_WbemLocator, 0, CLSCTX_INPROC_SERVER, IID_IWbemLocator, (LPVOID *) &pLoc );
78 require_action( SUCCEEDED( hres ), exit, err = kUnknownErr );
84 hres = pLoc->ConnectServer( _bstr_t(L"ROOT\\CIMV2"), NULL, NULL, 0, WBEM_FLAG_CONNECT_USE_MAX_WAIT, 0, 0, &pSvc );
85 require_action( SUCCEEDED( hres ), exit, err = kUnknownErr );
90 hres = CoSetProxyBlanket( pSvc, RPC_C_AUTHN_WINNT, RPC_C_AUTHZ_NONE, NULL, RPC_C_AUTHN_LEVEL_CALL, RPC_ (…)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/wrl/wrappers/
corewrappers.h 28 HRESULT hres = ::WindowsCreateStringReference(str, len, &header_, &hstr_); local
29 if (FAILED(hres))
30 ::Microsoft::WRL::Details::RaiseException(hres);
99 hres = ::Windows::Foundation::Initialize(flags);
103 if(SUCCEEDED(hres))
108 return hres;
111 HRESULT hres; member in class:Microsoft::WRL::Wrappers::RoInitializeWrapper
  /external/lzma/CPP/7zip/Compress/
Lzma2Decoder.cpp 109 HRESULT hres = S_OK; local
116 hres = inStream->Read(_inBuf, _inBufSize, &_inSize);
117 if (hres != S_OK)
193 if (hres != S_OK)
194 return hres;
  /external/adhd/cras/src/common/
edid_utils.c 234 int hres = base[DTD_HA_LO] + ((base[DTD_HABL_HI] & 0xf0)<<4); local
252 int refr = (pelclk * 10000)/((hres+hbl)*(vres+vbl));
253 int refm = (pelclk * 10000)%((hres+hbl)*(vres+vbl));
254 int refd = (refm*100)/((hres+hbl)*(vres+vbl));
258 hres, vres, (mdflg & 0x80) ? 'i' : 'p',
264 hres+hso, hres+hso+hsw, hres+hbl);
745 int hres, vres; local
752 hres = (hinfo * 8) + 248
    [all...]

Completed in 171 milliseconds