HomeSort by relevance Sort by last modified time
    Searched refs:exc_type (Results 1 - 25 of 50) sorted by null

1 2

  /external/lldb/source/Plugins/Process/Utility/
StopInfoMachException.h 30 uint32_t exc_type,
34 StopInfo (thread, exc_type),
60 uint32_t exc_type,
StopInfoMachException.cpp 269 uint32_t exc_type,
278 if (exc_type != 0)
285 switch (exc_type)
479 return StopInfoSP(new StopInfoMachException (thread, exc_type, exc_data_count, exc_code, exc_sub_code));
  /external/lldb/tools/debugserver/source/MacOSX/
MachException.h 53 exception_type_t exc_type; member in struct:MachException::Data
58 exc_type(0),
67 exc_type = 0;
74 exc_type != 0;
79 if (exc_type == EXC_SOFTWARE && exc_data.size() == 2 && exc_data[0] == EXC_SOFT_SIGNAL)
85 return (exc_type == EXC_BREAKPOINT) || ((exc_type == EXC_SOFTWARE) && exc_data[0] == 1);
131 static const char *Name(exception_type_t exc_type);
MachException.cpp 86 exception_type_t exc_type,
98 DNBLogThreaded ("::%s ( exc_port = 0x%4.4x, exc_type = %d ( %s ), exc_data = 0x%llx, exc_data_count = %d)",
101 exc_type, MachException::Name(exc_type),
115 exception_type_t exc_type,
127 DNBLogThreaded("::%s ( exc_port = 0x%4.4x, thd_port = 0x%4.4x, tsk_port = 0x%4.4x, exc_type = %d ( %s ), exc_data[%d] = { 0x%llx, 0x%llx })",
132 exc_type, MachException::Name(exc_type),
150 exception_type_t exc_type,
156 DNBLogThreaded ("::%s ( exc_port = 0x%4.4x, thd_port = 0x%4.4x, tsk_port = 0x%4.4x, exc_type = %d ( %s ), exc_data[%d] = { 0x%llx, 0x%llx })"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
py_compile.py 24 raise PyCompileError(exc_type,exc_value,file[,msg])
28 exc_type: exception type to be used in error message
45 def __init__(self, exc_type, exc_value, file, msg=''):
46 exc_type_name = exc_type.__name__
47 if exc_type is SyntaxError:
48 tbtext = ''.join(traceback.format_exception_only(exc_type, exc_value))
SimpleXMLRPCServer.py 270 exc_type, exc_value, exc_tb = sys.exc_info()
272 xmlrpclib.Fault(1, "%s:%s" % (exc_type, exc_value)),
371 exc_type, exc_value, exc_tb = sys.exc_info()
374 'faultString' : "%s:%s" % (exc_type, exc_value)}
635 exc_type, exc_value = sys.exc_info()[:2]
637 xmlrpclib.Fault(1, "%s:%s" % (exc_type, exc_value)),
pdb.py 197 exc_type, exc_value, exc_traceback = exc_info
198 frame.f_locals['__exception__'] = exc_type, exc_value
199 if type(exc_type) == type(''):
200 exc_type_name = exc_type
201 else: exc_type_name = exc_type.__name__
    [all...]
subprocess.py 714 exc_type, exc_value, exc_trace = sys.exc_info()
731 raise exc_type, exc_value, exc_trace
    [all...]
threading.py 826 exc_type, exc_value, exc_tb = self.__exc_info()
840 print>>self.__stderr, ("%s: %s" % (exc_type, exc_value))
844 del exc_type, exc_value, exc_tb
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
py_compile.py 24 raise PyCompileError(exc_type,exc_value,file[,msg])
28 exc_type: exception type to be used in error message
45 def __init__(self, exc_type, exc_value, file, msg=''):
46 exc_type_name = exc_type.__name__
47 if exc_type is SyntaxError:
48 tbtext = ''.join(traceback.format_exception_only(exc_type, exc_value))
SimpleXMLRPCServer.py 270 exc_type, exc_value, exc_tb = sys.exc_info()
272 xmlrpclib.Fault(1, "%s:%s" % (exc_type, exc_value)),
371 exc_type, exc_value, exc_tb = sys.exc_info()
374 'faultString' : "%s:%s" % (exc_type, exc_value)}
635 exc_type, exc_value = sys.exc_info()[:2]
637 xmlrpclib.Fault(1, "%s:%s" % (exc_type, exc_value)),
pdb.py 197 exc_type, exc_value, exc_traceback = exc_info
198 frame.f_locals['__exception__'] = exc_type, exc_value
199 if type(exc_type) == type(''):
200 exc_type_name = exc_type
201 else: exc_type_name = exc_type.__name__
    [all...]
subprocess.py 714 exc_type, exc_value, exc_trace = sys.exc_info()
731 raise exc_type, exc_value, exc_trace
    [all...]
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
ThreadKDP.cpp 183 const uint32_t exc_type = exc_reply_packet.GetU32 (&offset); local
197 exc_type,
  /external/libxml2/doc/
queries.py 48 print sys.exc_type, sys.exc_value
107 print sys.exc_type, sys.exc_value
index.py 226 print sys.exc_type, sys.exc_value
267 print sys.exc_type, sys.exc_value
316 print sys.exc_type, sys.exc_value
356 print sys.exc_type, sys.exc_value
439 print sys.exc_type, sys.exc_value
616 print sys.exc_type, sys.exc_value
665 print sys.exc_type, sys.exc_value
1018 print sys.exc_type, sys.exc_value
1184 print sys.exc_type, sys.exc_value
1210 print sys.exc_type, sys.exc_valu
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pystate.h 79 PyObject *exc_type; member in struct:_ts
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
WindowList.py 49 sys.exc_type, ":", sys.exc_value
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pystate.h 79 PyObject *exc_type; member in struct:_ts
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
WindowList.py 49 sys.exc_type, ":", sys.exc_value
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_with.py 217 exc_type=None):
220 if exc_type is None:
222 exc_type = type(self.TEST_EXCEPTION)
223 self.assertEqual(mock_manager.exit_args[0], exc_type)
225 self.assertIsInstance(mock_manager.exit_args[1], exc_type)
test_fractions.py 121 def assertRaisesMessage(self, exc_type, message,
123 """Asserts that callable(*args, **kwargs) raises exc_type(message)."""
126 except exc_type, e:
129 self.fail("%s not raised" % exc_type.__name__)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_with.py 217 exc_type=None):
220 if exc_type is None:
222 exc_type = type(self.TEST_EXCEPTION)
223 self.assertEqual(mock_manager.exit_args[0], exc_type)
225 self.assertIsInstance(mock_manager.exit_args[1], exc_type)
test_fractions.py 121 def assertRaisesMessage(self, exc_type, message,
123 """Asserts that callable(*args, **kwargs) raises exc_type(message)."""
126 except exc_type, e:
129 self.fail("%s not raised" % exc_type.__name__)
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/evalexception/
middleware.py 380 self.exc_type, self.exc_value, self.tb = exc_info
399 'exception_type': str(self.exc_type),

Completed in 1370 milliseconds

1 2