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

1 2

  /external/tensorflow/tensorflow/python/framework/
registry.py 67 stack = traceback.extract_stack()
  /external/scapy/scapy/
error.py 27 stk = traceback.extract_stack()
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Logger/
Log.py 29 from traceback import extract_stack
130 CallerStack = extract_stack()[-2]
169 ToolName = os.path.basename(extract_stack()[-2][0])
  /external/tensorflow/tensorflow/python/debug/lib/
source_remote_test.py 89 send_stack = traceback.extract_stack()
128 send_traceback = traceback.extract_stack()
160 send_traceback = traceback.extract_stack()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
traceback.py 7 __all__ = ['extract_stack', 'extract_tb', 'format_exception',
18 extract_stack() as a formatted stack trace to the given file."""
31 extract_stack(), return a list of strings ready for printing.
270 print_list(extract_stack(f, limit), file)
273 """Shorthand for 'format_list(extract_stack(f, limit))'."""
279 return format_list(extract_stack(f, limit))
281 def extract_stack(f=None, limit = None): function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
traceback.py 7 __all__ = ['extract_stack', 'extract_tb', 'format_exception',
18 extract_stack() as a formatted stack trace to the given file."""
31 extract_stack(), return a list of strings ready for printing.
75 """A shorthand for 'format_list(extract_stack(f, limit))."""
269 print_list(extract_stack(f, limit), file)
272 """Shorthand for 'format_list(extract_stack(f, limit))'."""
278 return format_list(extract_stack(f, limit))
280 def extract_stack(f=None, limit = None): function
  /external/python/cpython2/Lib/
traceback.py 7 __all__ = ['extract_stack', 'extract_tb', 'format_exception',
18 extract_stack() as a formatted stack trace to the given file."""
31 extract_stack(), return a list of strings ready for printing.
270 print_list(extract_stack(f, limit), file)
273 """Shorthand for 'format_list(extract_stack(f, limit))'."""
279 return format_list(extract_stack(f, limit))
281 def extract_stack(f=None, limit = None): function
  /prebuilts/gdb/darwin-x86/lib/python2.7/
traceback.py 7 __all__ = ['extract_stack', 'extract_tb', 'format_exception',
18 extract_stack() as a formatted stack trace to the given file."""
31 extract_stack(), return a list of strings ready for printing.
75 """A shorthand for 'format_list(extract_stack(f, limit))."""
269 print_list(extract_stack(f, limit), file)
272 """Shorthand for 'format_list(extract_stack(f, limit))'."""
278 return format_list(extract_stack(f, limit))
280 def extract_stack(f=None, limit = None): function
  /prebuilts/gdb/linux-x86/lib/python2.7/
traceback.py 7 __all__ = ['extract_stack', 'extract_tb', 'format_exception',
18 extract_stack() as a formatted stack trace to the given file."""
31 extract_stack(), return a list of strings ready for printing.
75 """A shorthand for 'format_list(extract_stack(f, limit))."""
269 print_list(extract_stack(f, limit), file)
272 """Shorthand for 'format_list(extract_stack(f, limit))'."""
278 return format_list(extract_stack(f, limit))
280 def extract_stack(f=None, limit = None): function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
traceback.py 7 __all__ = ['extract_stack', 'extract_tb', 'format_exception',
18 extract_stack() as a formatted stack trace to the given file."""
31 extract_stack(), return a list of strings ready for printing.
75 """A shorthand for 'format_list(extract_stack(f, limit))."""
269 print_list(extract_stack(f, limit), file)
272 """Shorthand for 'format_list(extract_stack(f, limit))'."""
278 return format_list(extract_stack(f, limit))
280 def extract_stack(f=None, limit = None): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
traceback.py 7 __all__ = ['extract_stack', 'extract_tb', 'format_exception',
18 extract_stack() as a formatted stack trace to the given file."""
31 extract_stack(), return a list of strings ready for printing.
75 """A shorthand for 'format_list(extract_stack(f, limit))."""
269 print_list(extract_stack(f, limit), file)
272 """Shorthand for 'format_list(extract_stack(f, limit))'."""
278 return format_list(extract_stack(f, limit))
280 def extract_stack(f=None, limit = None): function
  /external/tensorflow/tensorflow/python/util/
tf_decorator.py 86 frame = _traceback.extract_stack(limit=2)[0]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
EdkLogger.py 85 CallerStack = traceback.extract_stack()[-2]
123 ToolName = os.path.basename(traceback.extract_stack()[-2][0])
  /external/tensorflow/tensorflow/python/debug/wrappers/
grpc_wrapper.py 60 debug_server_urls, run_key, traceback.extract_stack(), graph,
  /external/python/cpython3/Lib/
traceback.py 8 __all__ = ['extract_stack', 'extract_tb', 'format_exception',
21 extract_stack() as a formatted stack trace to the given file."""
31 extract_stack(), return a list of strings ready for printing.
186 print_list(extract_stack(f, limit=limit), file=file)
190 """Shorthand for 'format_list(extract_stack(f, limit))'."""
193 return format_list(extract_stack(f, limit=limit))
196 def extract_stack(f=None, limit=None): function
  /external/chromium-trace/catapult/devil/devil/utils/
reraiser_thread.py 33 for filename, lineno, name, line in traceback.extract_stack(stack):
  /external/libmojo/third_party/catapult/devil/devil/utils/
reraiser_thread.py 33 for filename, lineno, name, line in traceback.extract_stack(stack):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_zipimport.py 25 from traceback import extract_tb, extract_stack, print_tb
371 f,lno,n,line = extract_stack(tb.tb_frame, 1)[0]
  /external/python/cpython2/Lib/test/
test_zipimport.py 25 from traceback import extract_tb, extract_stack, print_tb
371 f,lno,n,line = extract_stack(tb.tb_frame, 1)[0]
test_traceback.py 245 return traceback.extract_stack()
251 (file, lineno+1, 'extract', 'return traceback.extract_stack()'),
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_zipimport.py 25 from traceback import extract_tb, extract_stack, print_tb
371 f,lno,n,line = extract_stack(tb.tb_frame, 1)[0]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_zipimport.py 25 from traceback import extract_tb, extract_stack, print_tb
371 f,lno,n,line = extract_stack(tb.tb_frame, 1)[0]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_zipimport.py 25 from traceback import extract_tb, extract_stack, print_tb
371 f,lno,n,line = extract_stack(tb.tb_frame, 1)[0]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_zipimport.py 25 from traceback import extract_tb, extract_stack, print_tb
371 f,lno,n,line = extract_stack(tb.tb_frame, 1)[0]
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
test_support.py 158 stack = traceback.extract_stack()

Completed in 1730 milliseconds

1 2