Home
last modified time | relevance | path

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

/external/autotest/cli/
Datest.py85 action_obj = action_class()
87 action_obj.parse()
90 results = action_obj.execute()
95 action_obj.generic_error("Unexpected exception: %s" % err)
98 action_obj.output(results)
102 return action_obj.show_all_failures()
/external/python/cpython2/Python/
D_warnings.c806 PyObject *action_obj = NULL; in create_filter() local
815 action_obj = ignore_str; in create_filter()
823 action_obj = error_str; in create_filter()
831 action_obj = default_str; in create_filter()
841 result = PyTuple_Pack(5, action_obj, Py_None, category, Py_None, lineno); in create_filter()