Searched refs:stack_info (Results 1 – 6 of 6) sorted by relevance
/external/tensorflow/tensorflow/python/platform/ |
D | tf_logging.py | 64 def _logger_find_caller(stack_info=False, stacklevel=1): # pylint: disable=g-wrong-blank-lines argument 67 if stack_info: 75 def _logger_find_caller(stack_info=False): # pylint: disable=g-wrong-blank-lines argument 78 if stack_info:
|
/external/python/cpython3/Lib/logging/ |
D | __init__.py | 319 self.stack_info = sinfo 633 def formatStack(self, stack_info): argument 644 return stack_info 672 if record.stack_info: 675 s = s + self.formatStack(record.stack_info) 1502 def findCaller(self, stack_info=False, stacklevel=1): argument 1526 if stack_info: 1553 def _log(self, level, msg, args, exc_info=None, extra=None, stack_info=False, argument 1565 fn, lno, func, sinfo = self.findCaller(stack_info, stacklevel) 1858 def _log(self, level, msg, args, exc_info=None, extra=None, stack_info=False): argument [all …]
|
/external/ImageMagick/coders/ |
D | gif.c | 308 static inline int PopLZWStack(LZWStack *stack_info) in PopLZWStack() argument 310 if (stack_info->index <= stack_info->codes) in PopLZWStack() 312 stack_info->index--; in PopLZWStack() 313 return((int) *stack_info->index); in PopLZWStack() 316 static inline void PushLZWStack(LZWStack *stack_info,const size_t value) in PushLZWStack() argument 318 if (stack_info->index >= stack_info->top) in PushLZWStack() 320 *stack_info->index=value; in PushLZWStack() 321 stack_info->index++; in PushLZWStack()
|
/external/python/cpython3/Doc/library/ |
D | logging.rst | 165 *exc_info*, *stack_info*, *stacklevel* and *extra*. 172 The second optional keyword argument is *stack_info*, which defaults to 181 You can specify *stack_info* independently of *exc_info*, e.g. to just show 237 The *stack_info* parameter was added. 315 .. method:: Logger.findCaller(stack_info=False, stacklevel=1) 319 information is returned as ``None`` unless *stack_info* is ``True``. 621 .. method:: formatStack(stack_info) 845 | stack_info | You shouldn't need to | Stack frame information (where available) | 966 The second optional keyword argument is *stack_info*, which defaults to 975 You can specify *stack_info* independently of *exc_info*, e.g. to just show [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_logging.py | 4018 logging.exception('failed', stack_info=True) 4026 self.assertTrue(r.stack_info.startswith('Stack (most recent ' 4028 self.assertTrue(r.stack_info.endswith('logging.exception(\'failed\', ' 4843 self.logger.findCaller(stack_info=True)
|
/external/python/cpython3/Misc/ |
D | HISTORY | 11556 - Issue #1553375: logging: Added stack_info kwarg to display stack information.
|