Home
last modified time | relevance | path

Searched refs:WGPUErrorType (Results 1 – 22 of 22) sorted by relevance

/third_party/skia/third_party/externals/dawn/src/dawn_wire/client/
DDevice.h41 void InjectError(WGPUErrorType type, const char* message);
54 void HandleError(WGPUErrorType errorType, const char* message);
58 WGPUErrorType type,
DDevice.cpp28 mErrorCallback = [](WGPUErrorType, char const*, void*) { in Device() argument
70 void Device::HandleError(WGPUErrorType errorType, const char* message) { in HandleError()
161 WGPUErrorType type, in OnPopErrorScopeCallback()
183 void Device::InjectError(WGPUErrorType type, const char* message) { in InjectError()
DClientDoers.cpp24 WGPUErrorType errorType, in DoDeviceUncapturedErrorCallback()
68 WGPUErrorType errorType, in DoDevicePopErrorScopeCallback()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/wire/
DWireErrorCallbackTests.cpp27 MOCK_METHOD(void, Call, (WGPUErrorType type, const char* message, void* userdata));
31 void ToMockDeviceErrorCallback(WGPUErrorType type, const char* message, void* userdata) { in ToMockDeviceErrorCallback()
37 MOCK_METHOD(void, Call, (WGPUErrorType type, const char* message, void* userdata));
41 void ToMockDevicePopErrorScopeCallback(WGPUErrorType type, in ToMockDevicePopErrorScopeCallback()
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DMaxLimitTests.cpp193 WGPUErrorType oomResult; in TEST_P()
194 device.PopErrorScope([](WGPUErrorType type, const char*, in TEST_P()
195 void* userdata) { *static_cast<WGPUErrorType*>(userdata) = type; }, in TEST_P()
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
DGPUDevice.cpp86 [](WGPUErrorType type, char const* message, void* userdata) { in GPUDevice()
461 [](WGPUErrorType type, char const* message, void* userdata) { in popErrorScope()
465 case WGPUErrorType::WGPUErrorType_NoError: in popErrorScope()
468 case WGPUErrorType::WGPUErrorType_OutOfMemory: in popErrorScope()
471 case WGPUErrorType::WGPUErrorType_Unknown: in popErrorScope()
472 case WGPUErrorType::WGPUErrorType_DeviceLost: in popErrorScope()
473 case WGPUErrorType::WGPUErrorType_Validation: in popErrorScope()
/third_party/skia/third_party/externals/imgui/examples/example_emscripten_wgpu/
Dmain.cpp33 static void print_wgpu_error(WGPUErrorType error_type, const char* message, void*);
233 static void print_wgpu_error(WGPUErrorType error_type, const char* message, void*) in print_wgpu_error()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
DErrorScopeValidationTests.cpp24 MOCK_METHOD(void, Call, (WGPUErrorType type, const char* message, void* userdata));
28 static void ToMockDevicePopErrorScopeCallback(WGPUErrorType type, in ToMockDevicePopErrorScopeCallback()
DValidationTest.h148 static void OnDeviceError(WGPUErrorType type, const char* message, void* userdata);
DValidationTest.cpp213 void ValidationTest::OnDeviceError(WGPUErrorType type, const char* message, void* userdata) { in OnDeviceError()
/third_party/skia/third_party/externals/dawn/src/dawn_wire/server/
DServerDevice.cpp53 void Server::OnUncapturedError(ObjectHandle device, WGPUErrorType type, const char* message) { in OnUncapturedError()
104 void Server::OnDevicePopErrorScope(WGPUErrorType type, in OnDevicePopErrorScope()
DServer.h198 void OnUncapturedError(ObjectHandle device, WGPUErrorType type, const char* message);
201 void OnDevicePopErrorScope(WGPUErrorType type,
DServer.cpp131 [](WGPUErrorType type, const char* message, void* userdata) { in InjectDevice()
/third_party/skia/third_party/externals/dawn/src/tests/
DDawnNativeTest.h50 static void OnDeviceError(WGPUErrorType type, const char* message, void* userdata);
DDawnNativeTest.cpp80 void DawnNativeTest::OnDeviceError(WGPUErrorType type, const char* message, void* userdata) { in OnDeviceError()
DDawnTest.h507 static void OnDeviceError(WGPUErrorType type, const char* message, void* userdata);
DDawnTest.cpp1032 void DawnTestBase::OnDeviceError(WGPUErrorType type, const char* message, void* userdata) { in OnDeviceError()
/third_party/skia/tools/sk_app/
DDawnWindowContext.cpp19 static void PrintDeviceError(WGPUErrorType, const char* message, void*) { in PrintDeviceError() argument
/third_party/skia/tools/gpu/dawn/
DDawnTestContext.cpp80 static void PrintDeviceError(WGPUErrorType, const char* message, void*) { in PrintDeviceError() argument
/third_party/skia/third_party/externals/dawn/examples/
DSampleUtils.cpp35 void PrintDeviceError(WGPUErrorType errorType, const char* message, void*) { in PrintDeviceError()
DManualSwapChainTest.cpp290 [](WGPUErrorType errorType, const char* message, void*) { in main()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DDevice.cpp206 mUncapturedErrorCallback = [](WGPUErrorType, char const*, void*) { in Initialize() argument
467 mUncapturedErrorCallback(static_cast<WGPUErrorType>(ToWGPUErrorType(type)), message, in HandleError()
533 callback(static_cast<WGPUErrorType>(scope.GetErrorType()), scope.GetErrorMessage(), in APIPopErrorScope()