Home | History | Annotate | Download | only in hosts

Lines Matching refs:stack

87         """ Get the server stack frame status.
92 stack_frames = inspect.stack()
93 stack = ''
96 stack = '%s|%s' % (function_name, stack)
98 return stack[:-1] # Delete the last '|' character
103 command to be executed and the server stack state.
107 # The last 3 frames on the stack are boring. Print 6-3=3 stack frames.
108 stack = self._get_server_stack_state(lowest_frames=3, highest_frames=6)
112 ' logger -tag "autotest" "server[stack::%s] -> ssh_run(%s)";'
114 '%s' % (stack, utils.sh_escape(command), command))
308 stack = self._get_server_stack_state(lowest_frames=1,
310 logging.debug("Running (ssh) '%s' from '%s'", command, stack)