Home
last modified time | relevance | path

Searched refs:SystemError (Results 1 – 25 of 75) sorted by relevance

123

/third_party/lzma/CPP/7zip/UI/Common/
DUpdate.h163 DWORD SystemError; // it's DWORD (WRes) only; member
167 …bool ThereIsError() const { return SystemError != 0 || !Message.IsEmpty() || !FileNames.IsEmpty();… in ThereIsError()
168 …HRESULT Get_HRESULT_Error() const { return SystemError == 0 ? E_FAIL : HRESULT_FROM_WIN32(SystemEr… in Get_HRESULT_Error()
173 CUpdateErrorInfo(): SystemError(0) {}; in CUpdateErrorInfo()
/third_party/node/test/parallel/
Dtest-errors-systemerror.js6 const { E, SystemError, codes } = require('internal/errors');
9 () => { new SystemError(); },
16 E('ERR_TEST', 'custom message', SystemError);
Dtest-errors-systemerror-frozen-intrinsics.js5 const { E, SystemError, codes } = require('internal/errors');
7 E('ERR_TEST', 'custom message', SystemError);
Dtest-errors-systemerror-stackTraceLimit-deleted.js5 const { E, SystemError, codes } = require('internal/errors');
9 E('ERR_TEST', 'custom message', SystemError);
Dtest-errors-systemerror-stackTraceLimit-has-only-a-getter.js5 const { E, SystemError, codes } = require('internal/errors');
9 E('ERR_TEST', 'custom message', SystemError);
Dtest-errors-systemerror-stackTraceLimit-deleted-and-Error-sealed.js5 const { E, SystemError, codes } = require('internal/errors');
10 E('ERR_TEST', 'custom message', SystemError);
Dtest-errors-systemerror-stackTraceLimit-not-writable.js5 const { E, SystemError, codes } = require('internal/errors');
12 E('ERR_TEST', 'custom message', SystemError);
Dtest-errors-systemerror-stackTraceLimit-custom-setter.js5 const { E, SystemError, codes } = require('internal/errors');
13 E('ERR_TEST', 'custom message', SystemError);
/third_party/node/lib/internal/
Derrors.js240 class SystemError extends Error { class
365 return class NodeError extends SystemError {
431 if (def === SystemError) {
937 SystemError, property
1053 'Cannot overwrite directory with non-directory', SystemError);
1054 E('ERR_FS_CP_EEXIST', 'Target already exists', SystemError);
1055 E('ERR_FS_CP_EINVAL', 'Invalid src or dest', SystemError);
1056 E('ERR_FS_CP_FIFO_PIPE', 'Cannot copy a FIFO pipe', SystemError);
1058 'Cannot overwrite non-directory with directory', SystemError);
1059 E('ERR_FS_CP_SOCKET', 'Cannot copy a socket file', SystemError);
[all …]
/third_party/vulkan-headers/include/vulkan/
Dvulkan.hpp6263 class SystemError class
6268 SystemError( std::error_code ec ) : Error(), std::system_error( ec ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
6269SystemError( std::error_code ec, std::string const & what ) : Error(), std::system_error( ec, what… in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
6270 SystemError( std::error_code ec, char const * what ) : Error(), std::system_error( ec, what ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
6271SystemError( int ev, std::error_category const & ecat ) : Error(), std::system_error( ev, ecat ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
6272SystemError( int ev, std::error_category const & ecat, std::string const & what ) : Error(), std::… in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
6273SystemError( int ev, std::error_category const & ecat, char const * what ) : Error(), std::system_… in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
6297 class OutOfHostMemoryError : public SystemError
6300 …OutOfHostMemoryError( std::string const & message ) : SystemError( make_error_code( Result::eError… in OutOfHostMemoryError()
6301 …OutOfHostMemoryError( char const * message ) : SystemError( make_error_code( Result::eErrorOutOfHo… in OutOfHostMemoryError()
[all …]
/third_party/python/Lib/test/
Dtest_getargs2.py880 self.assertRaises(SystemError, getargs_s_hash_int, "abc")
881 self.assertRaises(SystemError, getargs_s_hash_int, x=42)
1136 except SystemError as e:
1148 except SystemError as e:
1174 with self.assertRaisesRegex(SystemError,
1185 with self.assertRaisesRegex(SystemError,
1206 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords,
1208 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords,
1210 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords,
1212 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords,
[all …]
Dtest_code.py386 self.assertRaises(SystemError, SetExtra, 42, FREE_INDEX,
388 self.assertRaises(SystemError, GetExtra, 42, FREE_INDEX,
393 self.assertRaises(SystemError, SetExtra, f.__code__,
Dexception_hierarchy.txt47 +-- SystemError
Dtest_xxlimited.py73 with self.assertRaises(SystemError):
/third_party/node/deps/npm/node_modules/@npmcli/fs/lib/cp/
Derrors.js8 class SystemError { class
106 module.exports[code] = class NodeError extends SystemError {
/third_party/skia/third_party/externals/swiftshader/include/vulkan/
Dvulkan.hpp5984 class SystemError class
5989 SystemError( std::error_code ec ) : Error(), std::system_error( ec ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
5990SystemError( std::error_code ec, std::string const & what ) : Error(), std::system_error( ec, what… in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
5991 SystemError( std::error_code ec, char const * what ) : Error(), std::system_error( ec, what ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
5992SystemError( int ev, std::error_category const & ecat ) : Error(), std::system_error( ev, ecat ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
5993 SystemError( int ev, std::error_category const & ecat, std::string const & what ) in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
5996 SystemError( int ev, std::error_category const & ecat, char const * what ) in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
6022 class OutOfHostMemoryError : public SystemError
6026 : SystemError( make_error_code( Result::eErrorOutOfHostMemory ), message ) in OutOfHostMemoryError()
6029 : SystemError( make_error_code( Result::eErrorOutOfHostMemory ), message ) in OutOfHostMemoryError()
[all …]
/third_party/python/Lib/ctypes/test/
Dtest_memfunctions.py14 self.assertRaises((OverflowError, MemoryError, SystemError),
16 self.assertRaises((OverflowError, MemoryError, SystemError),
/third_party/python/Doc/c-api/
Dfunction.rst82 Raises :exc:`SystemError` and returns ``-1`` on failure.
96 Raises :exc:`SystemError` and returns ``-1`` on failure.
110 Raises :exc:`SystemError` and returns ``-1`` on failure.
/third_party/python/Lib/test/test_importlib/extension/
Dtest_loader.py174 with self.assertRaises(SystemError):
177 with self.assertRaises(SystemError):
259 with self.assertRaises(SystemError):
/third_party/python/Lib/sqlite3/test/
Dbackup.py137 raise SystemError('nearly out of space')
139 with self.assertRaises(SystemError) as err:
/third_party/python/Misc/NEWS.d/
D3.5.0a2.rst7 PyObject_Call() and PyCFunction_Call() now raise a SystemError if a function
8 returns a result and raises an exception. The SystemError is chained to the
176 much memory and raised SystemError or MemoryError. Original patch by Aleksi
/third_party/python/Lib/encodings/
D__init__.py40 class CodecRegistryError(LookupError, SystemError):
/third_party/protobuf/python/google/protobuf/internal/
Dencoder.py595 except SystemError:
605 except SystemError:
614 except SystemError:
/third_party/node/deps/v8/tools/v8windbg/test/
Ddebug-callbacks.cc68 HRESULT __stdcall MyCallback::SystemError(ULONG Error, ULONG Level) { in SystemError() function in v8::internal::v8windbg_test::MyCallback
Ddebug-callbacks.h72 HRESULT __stdcall SystemError(ULONG Error, ULONG Level) override;

123