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

1 2 3

  /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...]
  /external/chromium_org/build/android/pylib/linker/
test_runner.py 33 exc_type, exc_value, exc_traceback = exc_info
34 trace_info = ''.join(traceback.format_exception(exc_type, exc_value,
41 log = "%s %s" % (exc_type, log_msg))
  /external/chromium_org/build/android/pylib/host_driven/
test_runner.py 29 exc_type, exc_value, exc_traceback = exc_info
30 trace_info = ''.join(traceback.format_exception(exc_type, exc_value,
40 log=str(exc_type) + ' ' + log_msg)
  /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...]
  /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...]
  /external/chromium_org/third_party/jinja2/
debug.py 83 def __init__(self, exc_type, exc_value, frames):
85 self.exc_type = exc_type
99 lines = traceback.format_exception(self.exc_type, self.exc_value,
119 return self.exc_type, self.exc_value, self.frames[0]
129 return self.exc_type, self.exc_value, tb
134 exc_type, exc_value, tb = exc_info
200 exc_type, exc_value, tb = exc_info
  /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/chromium_org/chrome/common/extensions/docs/server2/
subversion_file_system.py 119 exc_type = FileNotFoundError if IsDownloadError(e) else FileSystemError
120 raise exc_type('%s fetching %s for Get: %s' %
186 exc_type = FileNotFoundError if IsDownloadError(e) else FileSystemError
187 raise exc_type('%s fetching %s for Stat: %s' %
  /external/chromium_org/third_party/tlslite/tlslite/utils/
compat.py 94 newStr = "".join(traceback.format_exception(sys.exc_type, sys.exc_value, sys.exc_traceback))
  /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)
  /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)
  /external/chromium_org/tools/mac/
symbolicate_crash.py 445 exc_type = report.report_info['Exception Type'].split(' ')[0]
447 print '*CRASHED* ( ' + exc_type + ' / ' + exc_code + ' )'
  /external/chromium_org/tools/grit/grit/node/
base.py 53 def __exit__(self, exc_type, exc_value, traceback):
54 if exc_type is not None:

Completed in 888 milliseconds

1 2 3