Home
last modified time | relevance | path

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

123

/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);
/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):
Dtest_mmap.py101 except SystemError:
170 except SystemError: # resize is not universally supported
520 except SystemError:
717 except SystemError:
Dtest_capi.py225 with self.assertRaises(SystemError) as cm:
259 with self.assertRaises(SystemError) as cm:
581 self.assertRaises(SystemError, pynumber_tobase, 123, 0)
/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/vulkan-headers/include/vulkan/
Dvulkan.hpp5870 class SystemError class
5875 SystemError( std::error_code ec ) : Error(), std::system_error( ec ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
5876SystemError( std::error_code ec, std::string const & what ) : Error(), std::system_error( ec, what… in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
5877 SystemError( std::error_code ec, char const * what ) : Error(), std::system_error( ec, what ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
5878SystemError( int ev, std::error_category const & ecat ) : Error(), std::system_error( ev, ecat ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
5879 SystemError( int ev, std::error_category const & ecat, std::string const & what ) in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
5882 SystemError( int ev, std::error_category const & ecat, char const * what ) in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
5908 class OutOfHostMemoryError : public SystemError
5912 : SystemError( make_error_code( Result::eErrorOutOfHostMemory ), message ) in OutOfHostMemoryError()
5915 : 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.
Dset.rst138 :exc:`SystemError` if *set* is not an instance of :class:`set` or its
160 set is empty. Raise a :exc:`SystemError` if *set* is not an instance of
Dmodule.rst65 :exc:`SystemError` is raised and ``NULL`` is returned.
76 single: SystemError (built-in exception)
79 or if it is not a string, :exc:`SystemError` is raised and ``NULL`` is returned.
106 single: SystemError (built-in exception)
110 unicode string, raise :exc:`SystemError` and return ``NULL``; otherwise return
/third_party/boost/libs/iterator/doc/
Dsyscmd.py13 raise SystemError, 'command: %s returned %s' % (
/third_party/node/lib/internal/
Derrors.js195 class SystemError extends Error { class
300 return class NodeError extends SystemError {
347 if (def === SystemError) {
763 SystemError, property
878 E('ERR_FS_EISDIR', 'Path is a directory', SystemError);
1391 SystemError);
1412 E('ERR_SYSTEM_ERROR', 'A system error occurred', SystemError);
1448 E('ERR_TTY_INIT_FAILED', 'TTY initialization failed', SystemError);
/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/mindspore/mindspore/lite/java/java/fl_client/src/main/java/com/mindspore/flclient/
DCipherClient.java494 case (ResponseCode.SystemError): in judgeRequestExchangeKeys()
576 case (ResponseCode.SystemError): in judgeGetExchangeKeys()
672 case (ResponseCode.SystemError): in judgeRequestShareSecrets()
750 case (ResponseCode.SystemError): in judgeGetShareSecrets()
DUpdateModel.java113 case (ResponseCode.SystemError): in doResponse()
/third_party/mindspore/mindspore/schema/
Dfl_job.fbs31 SystemError=500
/third_party/mindspore/mindspore/lite/java/java/fl_client/src/main/java/com/mindspore/flclient/cipher/
DReconstructSecretReq.java150 case (ResponseCode.SystemError): in judgeSendReconstructSecrets()
DClientListReq.java161 case (ResponseCode.SystemError): in judgeGetClientList()

123