/external/grpc-grpc/src/python/grpcio_tests/tests/unit/ |
_server_test.py | 30 with self.assertRaises(AttributeError) as exception_context: 38 str(exception_context.exception)) 42 with self.assertRaises(AttributeError) as exception_context: 48 str(exception_context.exception))
|
_invalid_metadata_test.py | 68 with self.assertRaises(ValueError) as exception_context: 70 self.assertIn(expected_error_details, str(exception_context.exception)) 76 with self.assertRaises(ValueError) as exception_context: 78 self.assertIn(expected_error_details, str(exception_context.exception)) 84 with self.assertRaises(ValueError) as exception_context: 91 with self.assertRaises(ValueError) as exception_context: 93 self.assertIn(expected_error_details, str(exception_context.exception)) 100 with self.assertRaises(ValueError) as exception_context: 102 self.assertIn(expected_error_details, str(exception_context.exception)) 110 with self.assertRaises(ValueError) as exception_context [all...] |
_metadata_code_details_test.py | 318 with self.assertRaises(grpc.RpcError) as exception_context: 328 exception_context.exception.initial_metadata())) 332 exception_context.exception.trailing_metadata())) 333 self.assertIs(expected_code, exception_context.exception.code()) 335 exception_context.exception.details()) 374 with self.assertRaises(grpc.RpcError) as exception_context: 386 exception_context.exception.initial_metadata())) 390 exception_context.exception.trailing_metadata())) 391 self.assertIs(expected_code, exception_context.exception.code()) 393 exception_context.exception.details() [all...] |
_rpc_test.py | 199 with self.assertRaises(grpc.RpcError) as exception_context: 203 exception_context.exception.code()) 509 with self.assertRaises(grpc.RpcError) as exception_context: 512 exception_context.exception.code()) 567 with self.assertRaises(grpc.RpcError) as exception_context: 574 self.assertIsInstance(exception_context.exception, grpc.Call) 575 self.assertIsNotNone(exception_context.exception.initial_metadata()) 577 exception_context.exception.code()) 578 self.assertIsNotNone(exception_context.exception.details()) 579 self.assertIsNotNone(exception_context.exception.trailing_metadata() [all...] |
_resource_exhausted_test.py | 159 with self.assertRaises(grpc.RpcError) as exception_context: 163 exception_context.exception.code()) 184 with self.assertRaises(grpc.RpcError) as exception_context: 188 exception_context.exception.code()) 210 with self.assertRaises(grpc.RpcError) as exception_context: 214 exception_context.exception.code()) 237 with self.assertRaises(grpc.RpcError) as exception_context: 241 exception_context.exception.code())
|
_invocation_defects_test.py | 264 with self.assertRaises(grpc.RpcError) as exception_context: 270 exception_context.exception.code())
|
_server_ssl_cert_config_test.py | 168 with self.assertRaises(grpc.RpcError) as exception_context: 170 self.assertEqual(exception_context.exception.code(),
|
/external/grpc-grpc/src/python/grpcio_tests/tests/protoc_plugin/ |
_python_plugin_test.py | 245 with self.assertRaises(grpc.RpcError) as exception_context: 247 self.assertIs(exception_context.exception.code(), 278 with self.assertRaises(grpc.RpcError) as exception_context: 280 self.assertIs(exception_context.exception.code(), 321 with self.assertRaises(grpc.RpcError) as exception_context: 323 self.assertIs(exception_context.exception.code(), 333 with self.assertRaises(grpc.RpcError) as exception_context: 344 with self.assertRaises(grpc.RpcError) as exception_context: 346 self.assertIs(exception_context.exception.code(), 376 with self.assertRaises(grpc.RpcError) as exception_context [all...] |
/external/libpng/contrib/visupng/ |
cexcept.h | 53 struct exception_context; 56 been invoked. A struct exception_context must be known to both 67 struct exception_context *the_exception_context; 72 the address of a mutable (non-constant) struct exception_context 79 static struct exception_context 82 { struct exception_context *the_exception_context = bar; ... } 84 int blah(struct exception_context *the_exception_context, ...); 86 extern struct exception_context the_exception_context[1]; 93 struct exception_context ec_array[numthreads]; 102 void init_exception_context(struct exception_context *ec) [all...] |
PngFile.c | 23 extern struct exception_context the_exception_context[1]; 24 struct exception_context the_exception_context[1];
|
/external/google-breakpad/src/client/windows/handler/ |
exception_handler.cc | 569 CONTEXT exception_context = {}; local 570 EXCEPTION_POINTERS exception_ptrs = { &exception_record, &exception_context }; 572 ::RtlCaptureContext(&exception_context); 649 CONTEXT exception_context = {}; local 650 EXCEPTION_POINTERS exception_ptrs = { &exception_record, &exception_context }; 652 ::RtlCaptureContext(&exception_context); 741 CONTEXT exception_context = {}; local 742 EXCEPTION_POINTERS exception_ptrs = { &exception_record, &exception_context }; 744 ::RtlCaptureContext(&exception_context); [all...] |
/external/v8/tools/ |
grokdump.py | 623 self.exception_context = None 657 self.exception_context = self.ContextDescriptor().Read( 659 DebugPrint(self.exception_context) [all...] |
/external/libpng/contrib/libtests/ |
pngvalid.c | 176 #define anon_context(ps) struct exception_context *the_exception_context = \ 177 &(ps)->exception_context 747 struct exception_context 748 exception_context; member in struct:png_store 849 init_exception_context(&ps->exception_context); 1085 struct exception_context *the_exception_context = &ps->exception_context; 1103 struct exception_context *the_exception_context = &ps->exception_context; [all...] |