Home
last modified time | relevance | path

Searched refs:action_obj (Results 1 – 2 of 2) sorted by relevance

/external/autotest/cli/
Datest.py84 action_obj = action_class()
86 action_obj.parse()
89 results = action_obj.execute()
94 action_obj.generic_error("Unexpected exception: %s" % err)
97 action_obj.output(results)
101 return action_obj.show_all_failures()
/external/python/cpython2/Python/
D_warnings.c799 PyObject *action_obj = NULL; in create_filter() local
808 action_obj = ignore_str; in create_filter()
816 action_obj = error_str; in create_filter()
824 action_obj = default_str; in create_filter()
834 result = PyTuple_Pack(5, action_obj, Py_None, category, Py_None, lineno); in create_filter()