/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
D | strsafe.h | 50 #define SUCCEEDED(hr) ((HRESULT)(hr) >= 0) argument 54 #define FAILED(hr) ((HRESULT)(hr) < 0) argument 214 HRESULT hr; in StringCbCopyExA() local 217 hr = StringCopyExWorkerA(pszDest,cbDest,cbDest,pszSrc,ppszDestEnd,&cchRemaining,dwFlags); in StringCbCopyExA() 218 if(SUCCEEDED(hr) || hr == STRSAFE_E_INSUFFICIENT_BUFFER) { in StringCbCopyExA() 222 return hr; in StringCbCopyExA() 226 HRESULT hr; in StringCbCopyExW() local 231 hr = StringCopyExWorkerW(pszDest,cchDest,cbDest,pszSrc,ppszDestEnd,&cchRemaining,dwFlags); in StringCbCopyExW() 232 if(SUCCEEDED(hr) || (hr==STRSAFE_E_INSUFFICIENT_BUFFER)) { in StringCbCopyExW() 236 return hr; in StringCbCopyExW() [all …]
|
D | comip.h | 62 HRESULT hr = _QueryInterface(p); in _com_ptr_t() local 63 if(FAILED(hr) && (hr!=E_NOINTERFACE)) { _com_issue_error(hr); } in _com_ptr_t() 66 HRESULT hr = _QueryInterface(p); in _com_ptr_t() local 67 if(FAILED(hr) && (hr!=E_NOINTERFACE)) { _com_issue_error(hr); } in _com_ptr_t() 93 HRESULT hr = QueryStdInterfaces(varSrc); in _com_ptr_t() local 94 if(FAILED(hr) && (hr!=E_NOINTERFACE)) { _com_issue_error(hr); } in _com_ptr_t() 97 HRESULT hr = CreateInstance(clsid,pOuter,dwClsContext); in m_pInterface() local 98 if(FAILED(hr) && (hr!=E_NOINTERFACE)) { _com_issue_error(hr); } in m_pInterface() 101 HRESULT hr = CreateInstance(str,pOuter,dwClsContext); in m_pInterface() local 102 if(FAILED(hr) && (hr!=E_NOINTERFACE)) { _com_issue_error(hr); } in m_pInterface() [all …]
|
D | celib.h | 30 #define _LeaveError(hr,pszMessage) _LeaveErrorStr2((hr),(pszMessage),NULL,S_OK) argument 31 #define _LeaveError2(hr,pszMessage,hr2) _LeaveErrorStr2((hr),(pszMessage),NULL,(hr2)) argument 32 #define _LeaveErrorStr(hr,pszMessage,pwszData) _LeaveErrorStr2((hr),(pszMessage),(pwszData),S_OK) argument 33 #define _LeaveErrorStr2(hr,pszMessage,pwszData,hr2) { ceERRORPRINTLINESTR((pszMessage),(pwszData),(… argument 34 #define _LeaveIfError(hr,pszMessage) _LeaveIfErrorStr2((hr),(pszMessage),NULL,S_OK) argument 35 #define _LeaveIfError2(hr,pszMessage,hr2) _LeaveIfErrorStr2((hr),(pszMessage),NULL,(hr2)) argument 36 #define _LeaveIfErrorStr(hr,pszMessage,pwszData) _LeaveIfErrorStr2((hr),(pszMessage),(pwszData),S_O… argument 37 #define _LeaveIfErrorStr2(hr,pszMessage,pwszData,hr2) { if (S_OK!=(hr)) { ceERRORPRINTLINESTR((pszM… argument 38 #define _PrintErrorStr(hr,pszMessage,pwsz) ceERRORPRINTLINESTR((pszMessage),(pwsz),(hr)) argument 39 #define _PrintErrorStr2(hr,pszMessage,pwsz,hr2) _PrintErrorStr((hr),(pszMessage),(pwsz)) argument [all …]
|
D | mspcoll.h | 25 HRESULT hr; in Initialize() local 34 hr = (*iter)->QueryInterface(IID_IDispatch,(void**)&pDisp); in Initialize() 35 if(hr!=S_OK) return hr; in Initialize() 51 HRESULT hr = S_OK; in STDMETHOD() local 56 hr = E_INVALIDARG; in STDMETHOD() 59 return hr; in STDMETHOD() 62 HRESULT hr = S_OK; in STDMETHOD() local 68 hr = E_INVALIDARG; in STDMETHOD() 70 if(hr!=S_OK) return hr; in STDMETHOD() 74 hr = VariantCopy(retval,&m_Var[Index-1]); in STDMETHOD() [all …]
|
D | wmiatlprov.h | 77 HRESULT hr = m_pErrorObject->SpawnInstance(0,ppErrorObject); in ConstructErrorObject() local 78 if(FAILED(hr)) return hr; in ConstructErrorObject() 83 hr = (*ppErrorObject)->Put(lpwstrStatusCode,0,&var,0); in ConstructErrorObject() 84 if(FAILED(hr)) return hr; in ConstructErrorObject() 88 hr = (*ppErrorObject)->Put(lpwstrDescription,0,&var,0); in ConstructErrorObject() 89 if(FAILED(hr)) return hr; in ConstructErrorObject() 93 hr = (*ppErrorObject)->Put(lpwstrOperation,0,&var,0); in ConstructErrorObject() 94 if(FAILED(hr)) return hr; in ConstructErrorObject() 98 hr = (*ppErrorObject)->Put(lpwstrParameterInfo,0,&var,0); in ConstructErrorObject() 99 if(FAILED(hr)) return hr; in ConstructErrorObject() [all …]
|
/aosp_15_r20/external/cronet/base/win/ |
H A D | vector_unittest.cc | 158 HRESULT hr = vec->GetAt(0, &value); in TEST() local 159 EXPECT_EQ(E_BOUNDS, hr); in TEST() 165 HRESULT hr = vec->GetAt(0, &value); in TEST() local 166 EXPECT_TRUE(SUCCEEDED(hr)); in TEST() 169 hr = vec->GetAt(1, &value); in TEST() 170 EXPECT_EQ(E_BOUNDS, hr); in TEST() 176 HRESULT hr = vec->GetAt(0, &value); in TEST() local 177 EXPECT_TRUE(SUCCEEDED(hr)); in TEST() 180 hr = vec->GetAt(1, &value); in TEST() 181 EXPECT_TRUE(SUCCEEDED(hr)); in TEST() [all …]
|
H A D | map_unittest.cc | 237 HRESULT hr = map->Lookup(1, &value); in TEST() local 238 EXPECT_EQ(E_BOUNDS, hr); in TEST() 239 hr = map->Lookup(2, &value); in TEST() 240 EXPECT_EQ(E_BOUNDS, hr); in TEST() 246 HRESULT hr = map->Lookup(1, &value); in TEST() local 247 EXPECT_EQ(S_OK, hr); in TEST() 249 hr = map->Lookup(2, &value); in TEST() 250 EXPECT_EQ(E_BOUNDS, hr); in TEST() 256 HRESULT hr = map->Lookup(1, &value); in TEST() local 257 EXPECT_EQ(S_OK, hr); in TEST() [all …]
|
/aosp_15_r20/external/python/cpython3/Tools/msi/bundle/bootstrap/ |
D | PythonBootstrapperApplication.cpp | 272 HRESULT hr = S_OK; in OnCommand() local 285 hr = BalGetNumericVariable(L"InstallAllUsers", &installAllUsers); in OnCommand() 286 ExitOnFailure(hr, L"Failed to get install scope"); in OnCommand() 288 hr = _engine->SetVariableNumeric(L"CompileAll", installAllUsers); in OnCommand() 289 ExitOnFailure(hr, L"Failed to update CompileAll"); in OnCommand() 291 hr = EnsureTargetDir(); in OnCommand() 292 ExitOnFailure(hr, L"Failed to set TargetDir"); in OnCommand() 323 hr = EnsureTargetDir(); in OnCommand() 324 ExitOnFailure(hr, L"Failed to set TargetDir"); in OnCommand() 326 hr = BalGetStringVariable(L"TargetDir", &targetDir); in OnCommand() [all …]
|
/aosp_15_r20/external/liblc3/conformance/ |
H A D | lc3plus_hr_precision.html | 1 <!DOCTYPE html><head><meta charset="UTF-8"><title>liblc3-hr-precision.cfg Report</title> 3 <body><h2>Precision requirements for liblc3-hr-precision.cfg passed</h2> 6 …hr-precision/thd+n_encode_10.0ms_48kHz_300.0kbps.png">124.01 (110.0)</a></td><td class="pass"><a h…
|
/aosp_15_r20/external/webrtc/modules/desktop_capture/win/ |
H A D | wgc_capture_session.cc | 129 HRESULT hr = in StartCapture() local 131 if (FAILED(hr)) { in StartCapture() 133 return hr; in StartCapture() 137 hr = d3d11_device_->QueryInterface(IID_PPV_ARGS(&dxgi_device)); in StartCapture() 138 if (FAILED(hr)) { in StartCapture() 140 return hr; in StartCapture() 148 hr = CreateDirect3DDeviceFromDXGIDevice(dxgi_device.Get(), &direct3d_device_); in StartCapture() 149 if (FAILED(hr)) { in StartCapture() 151 return hr; in StartCapture() 155 hr = GetActivationFactory< in StartCapture() [all …]
|
/aosp_15_r20/external/webrtc/modules/audio_device/win/ |
H A D | audio_device_core_win.cc | 186 HRESULT hr(S_OK); in CoreAudioIsSupported() local 264 hr = CoCreateInstance( in CoreAudioIsSupported() 271 if (FAILED(hr)) { in CoreAudioIsSupported() 273 " Failed to create the required COM object (hr=" in CoreAudioIsSupported() 274 << hr << ")"; in CoreAudioIsSupported() 276 " CoCreateInstance(MMDeviceEnumerator) failed (hr=" in CoreAudioIsSupported() 277 << hr << ")"; in CoreAudioIsSupported() 285 DWORD messageLength = ::FormatMessageW(dwFlags, 0, hr, dwLangID, errorText, in CoreAudioIsSupported() 303 " CoCreateInstance(MMDeviceEnumerator) succeeded (hr=" in CoreAudioIsSupported() 304 << hr << ")"; in CoreAudioIsSupported() [all …]
|
/aosp_15_r20/external/python/cpython3/PC/ |
D | pyshellext.cpp | 28 HRESULT hr = S_OK; in FilenameListCchLengthA() local 34 hr = StringCchLengthA(pszSource, cchMax - length, &oneLength); in FilenameListCchLengthA() 35 if (FAILED(hr)) { in FilenameListCchLengthA() 36 return hr; in FilenameListCchLengthA() 45 return hr; in FilenameListCchLengthA() 49 HRESULT hr = S_OK; in FilenameListCchLengthW() local 55 hr = StringCchLengthW(pszSource, cchMax - length, &oneLength); in FilenameListCchLengthW() 56 if (FAILED(hr)) { in FilenameListCchLengthW() 57 return hr; in FilenameListCchLengthW() 66 return hr; in FilenameListCchLengthW() [all …]
|
/aosp_15_r20/external/webrtc/modules/video_capture/windows/ |
H A D | video_capture_ds.cc | 77 HRESULT hr = CoCreateInstance(CLSID_FilterGraph, NULL, CLSCTX_INPROC_SERVER, in Init() local 79 if (FAILED(hr)) { in Init() 84 hr = _graphBuilder->QueryInterface(IID_IMediaControl, (void**)&_mediaControl); in Init() 85 if (FAILED(hr)) { in Init() 89 hr = _graphBuilder->AddFilter(_captureFilter, CAPTURE_FILTER_NAME); in Init() 90 if (FAILED(hr)) { in Init() 104 hr = _graphBuilder->AddFilter(sink_filter_.get(), SINK_FILTER_NAME); in Init() 105 if (FAILED(hr)) { in Init() 121 hr = _mediaControl->Pause(); in Init() 122 if (FAILED(hr)) { in Init() [all …]
|
H A D | device_info_ds.cc | 61 HRESULT hr = CoInitializeEx( in DeviceInfoDS() local 64 if (FAILED(hr)) { in DeviceInfoDS() 68 if (hr == RPC_E_CHANGED_MODE) { in DeviceInfoDS() 71 // Details: hr = 0x80010106 <=> "Cannot change thread mode after it is in DeviceInfoDS() 77 << rtc::ToHex(hr); in DeviceInfoDS() 91 HRESULT hr = CoCreateInstance(CLSID_SystemDeviceEnum, NULL, CLSCTX_INPROC, in Init() local 93 if (hr != NOERROR) { in Init() 95 << rtc::ToHex(hr); in Init() 130 HRESULT hr = _dsDevEnum->CreateClassEnumerator(CLSID_VideoInputDeviceCategory, in GetDeviceInfo() local 132 if (hr != NOERROR) { in GetDeviceInfo() [all …]
|
/aosp_15_r20/external/cronet/crypto/ |
H A D | user_verifying_key_win.cc | 57 std::string FormatError(std::string message, HRESULT hr) { in FormatError() argument 59 {message, " (hr = ", logging::SystemErrorCodeToString(hr), ")"}); in FormatError() 80 HRESULT hr = sign_result->get_Status(&status); in OnSigningSuccess() local 81 if (FAILED(hr) || status != KeyCredentialStatus_Success) { in OnSigningSuccess() 83 "Failed to obtain Status from IKeyCredentialOperationResult", hr); in OnSigningSuccess() 89 hr = sign_result->get_Result(&signature_buffer); in OnSigningSuccess() 90 if (FAILED(hr)) { in OnSigningSuccess() 92 "Failed to obtain Result from IKeyCredentialOperationResult", hr); in OnSigningSuccess() 99 hr = base::win::GetPointerToBufferData(signature_buffer.Get(), in OnSigningSuccess() 101 if (FAILED(hr)) { in OnSigningSuccess() [all …]
|
/aosp_15_r20/external/wpa_supplicant_8/src/drivers/ |
H A D | ndis_events.c | 48 HRESULT hr; in call_IWbemServices_ExecQuery() local 53 hr = IWbemServices_ExecQuery(pSvc, bsQueryLanguage, bsQuery, lFlags, in call_IWbemServices_ExecQuery() 59 return hr; in call_IWbemServices_ExecQuery() 68 HRESULT hr; in call_IWbemServices_ExecNotificationQueryAsync() local 73 hr = IWbemServices_ExecNotificationQueryAsync(pSvc, bsQueryLanguage, in call_IWbemServices_ExecNotificationQueryAsync() 80 return hr; in call_IWbemServices_ExecNotificationQueryAsync() 90 HRESULT hr; in call_IWbemLocator_ConnectServer() local 98 hr = IWbemLocator_ConnectServer(pLoc, bsNetworkResource, bsUser, in call_IWbemLocator_ConnectServer() 108 return hr; in call_IWbemLocator_ConnectServer() 244 HRESULT hr; in ndis_events_media_specific() local [all …]
|
/aosp_15_r20/external/angle/src/libANGLE/renderer/d3d/d3d11/converged/ |
H A D | CompositorNativeWindow11.cpp | 41 HRESULT hr = visual->get_Size(&size); in getClientRect() local 42 if (FAILED(hr)) in getClientRect() 48 hr = visual->get_Offset(&offset); in getClientRect() 49 if (FAILED(hr)) in getClientRect() 81 HRESULT hr{E_FAIL}; in createSwapChain() local 84 hr = mHostVisual.As(&hostVisual); in createSwapChain() 85 if (FAILED(hr)) in createSwapChain() 87 return hr; in createSwapChain() 91 hr = hostVisual->get_Compositor(&compositor); in createSwapChain() 92 if (FAILED(hr)) in createSwapChain() [all …]
|
/aosp_15_r20/prebuilts/vndk/v33/x86/arch-x86/shared/vndk-core/ |
D | libstagefright_omx.so | __cxa_finalize _ZN7android8OMXStoreC2Ev _ZTVN7android8OMXStoreE pthread_mutex_init _ZTVN7android4ListINS_8OMXStore6PluginEEE _Znaj _ZN7android16SortedVectorImplC2Ejj _ZTVN7android12SortedVectorINS_16key_value_pair_tINS_7String8EPNS_13OMXPluginBaseEEEEE _ZTVN7android12SortedVectorINS_16key_value_pair_tIP17OMX_COMPONENTTYPEPNS_13OMXPluginBaseEEEEE getpid __open_2 read __android_log_print __strlcpy_chk close _ZN7android8OMXStore9addPluginEPKc __stack_chk_fail vsnprintf _ZN7android8OMXStore15addVendorPluginEv ... |
/aosp_15_r20/external/crosvm/win_audio/src/win_audio_impl/ |
H A D | mod.rs | 114 let mut hr = S_SKIPPED_COINIT; in co_init_once_per_thread() localVariable 128 hr = CoInitializeEx(null_mut(), COINIT_APARTMENTTHREADED); in co_init_once_per_thread() 133 hr in co_init_once_per_thread() 148 let hr = WinAudio::co_init_once_per_thread(); in new_playback_stream() localVariable 149 let _ = check_hresult!(hr, WinAudioError::from(hr), "Co Initialized failed"); in new_playback_stream() 225 WinAudioError::GetCurrentPaddingError(hr) in handle_playback_logging_on_error() 226 | WinAudioError::GetBufferError(hr) => { in handle_playback_logging_on_error() 227 if *hr == AUDCLNT_E_DEVICE_INVALIDATED { in handle_playback_logging_on_error() 236 hr in handle_playback_logging_on_error() 314 let hr = unsafe { in create_imm_device_notification() localVariable [all …]
|
/aosp_15_r20/external/libxml2/doc/devhelp/ |
H A D | libxml2-schemasInternals.html | 151 <hr> 159 <hr> 167 <hr> 175 <hr> 183 <hr> 191 <hr> 199 <hr> 207 <hr> 215 <hr> 223 <hr> [all …]
|
/aosp_15_r20/external/webp/imageio/ |
H A D | wicdec.c | 43 if (SUCCEEDED(hr)) { \ 44 hr = (fn); \ 45 if (FAILED(hr)) fprintf(stderr, #fn " failed %08lx\n", hr); \ 89 HRESULT hr = S_OK; in OpenInputStream() local 103 hr = E_FAIL; in OpenInputStream() 106 hr = E_OUTOFMEMORY; in OpenInputStream() 110 hr = E_FAIL; in OpenInputStream() 116 if (FAILED(hr)) { in OpenInputStream() 118 (const LPTSTR)filename, hr); in OpenInputStream() 120 return hr; in OpenInputStream() [all …]
|
/aosp_15_r20/prebuilts/vndk/v33/arm/arch-arm-armv7-a-neon/shared/vndk-core/ |
D | libpcre2.so | __cxa_finalize _pcre2_auto_possessify_8 __stack_chk_fail __stack_chk_guard _pcre2_OP_lengths_8 _pcre2_utf8_table4 _pcre2_ucd_stage1_8 _pcre2_ucd_stage2_8 _pcre2_ucd_records_8 _pcre2_ucd_caseless_sets_8 _pcre2_xclass_8 _pcre2_ucp_gentype_8 _pcre2_ucd_script_sets_8 pcre2_code_copy_8 pcre2_code_copy_with_tables_8 pcre2_code_free_8 _pcre2_jit_free_8 _pcre2_check_escape_8 pcre2_compile_8 ... |
/aosp_15_r20/prebuilts/vndk/v34/arm/arch-arm-armv7-a-neon/shared/vndk-core/ |
D | libpcre2.so | __cxa_finalize _pcre2_auto_possessify_8 __stack_chk_fail __stack_chk_guard _pcre2_OP_lengths_8 _pcre2_utf8_table4 _pcre2_ucd_stage1_8 _pcre2_ucd_stage2_8 _pcre2_ucd_records_8 _pcre2_ucd_caseless_sets_8 _pcre2_xclass_8 _pcre2_ucp_gentype_8 _pcre2_ucd_script_sets_8 pcre2_code_copy_8 pcre2_code_copy_with_tables_8 pcre2_code_free_8 _pcre2_check_escape_8 pcre2_compile_8 _pcre2_strlen_8 ... |
/aosp_15_r20/prebuilts/vndk/v34/arm64/arch-arm-armv8-a/shared/vndk-core/ |
D | libpcre2.so | __cxa_finalize _pcre2_auto_possessify_8 __stack_chk_fail __stack_chk_guard _pcre2_OP_lengths_8 _pcre2_utf8_table4 _pcre2_ucd_stage1_8 _pcre2_ucd_stage2_8 _pcre2_ucd_records_8 _pcre2_ucd_caseless_sets_8 _pcre2_xclass_8 _pcre2_ucp_gentype_8 _pcre2_ucd_script_sets_8 pcre2_code_copy_8 pcre2_code_copy_with_tables_8 pcre2_code_free_8 _pcre2_check_escape_8 pcre2_compile_8 _pcre2_strlen_8 ... |
/aosp_15_r20/prebuilts/vndk/v33/arm64/arch-arm-armv8-a/shared/vndk-core/ |
D | libpcre2.so | __cxa_finalize _pcre2_auto_possessify_8 __stack_chk_fail __stack_chk_guard _pcre2_OP_lengths_8 _pcre2_utf8_table4 _pcre2_ucd_stage1_8 _pcre2_ucd_stage2_8 _pcre2_ucd_records_8 _pcre2_ucd_caseless_sets_8 _pcre2_xclass_8 _pcre2_ucp_gentype_8 _pcre2_ucd_script_sets_8 pcre2_code_copy_8 pcre2_code_copy_with_tables_8 pcre2_code_free_8 _pcre2_jit_free_8 _pcre2_check_escape_8 pcre2_compile_8 ... |