Home
last modified time | relevance | path

Searched refs:action (Results 1 – 13 of 13) sorted by relevance

/scripts/
Dasn1_compiler.c291 struct action { struct
292 struct action *next; argument
297 static struct action *action_list; argument
304 struct action *action; member
685 struct action *action; member
857 struct action *action, **ppaction; in parse_type() local
1088 action = malloc(sizeof(struct action)); in parse_type()
1089 if (!action) { in parse_type()
1093 action->index = 0; in parse_type()
1094 action->name = cursor->content; in parse_type()
[all …]
Dbloat-o-meter17 group.add_argument('-c', help='categorize output based on symbol type', action='store_true')
18 group.add_argument('-d', help='Show delta of Data Section', action='store_true')
19 group.add_argument('-t', help='Show delta of text Section', action='store_true')
Dcheckkconfigsymbols.py53 parser.add_argument('-c', '--commit', dest='commit', action='store',
58 parser.add_argument('-d', '--diff', dest='diff', action='store',
63 parser.add_argument('-f', '--find', dest='find', action='store_true',
68 parser.add_argument('-i', '--ignore', dest='ignore', action='store',
73 parser.add_argument('-s', '--sim', dest='sim', action='store', default="",
76 parser.add_argument('--force', dest='force', action='store_true',
80 parser.add_argument('--no-color', dest='color', action='store_false',
Dmake_fit.py72 parser.add_argument('-D', '--decompose-dtbs', action='store_true',
74 parser.add_argument('-E', '--external', action='store_true',
84 parser.add_argument('-v', '--verbose', action='store_true',
Dgenerate_rust_analyzer.py158 parser.add_argument('--verbose', '-v', action='store_true')
159 parser.add_argument('--cfgs', action='append', default=[])
Dmacro_checker.py14 parser.add_argument("-v", "--verbose", action="store_true",
Dspdxcheck.py326 ap.add_argument('-d', '--dirs', action='store_true',
332 ap.add_argument('-f', '--files', action='store_true',
336 ap.add_argument('-v', '--verbose', action='store_true', help='Verbose statistics output')
Dchecktransupdate.py212 action=BooleanOptionalAction,
Dbpf_doc.py871 argParser.add_argument('--header', action='store_true',
/scripts/gdb/linux/
Dinterrupts.py77 action = desc['action']
78 if action is not None:
79 text += " %s" % (action['name'].string())
81 action = action['next']
82 if action is not None:
84 if action['name']:
85 text += ", %s" % (action['name'].string())
/scripts/dtc/
Ddt-extract-compatibles120 …ap.add_argument('-H', '--with-filename', help="Print filename with compatibles", action="store_tru…
121 …'--driver-match', help="Only print compatibles that should match to a driver", action="store_true")
/scripts/kconfig/
Dqconf.cc364 void ConfigList::setOptionMode(QAction *action) in setOptionMode() argument
366 if (action == showNormalAction) in setOptionMode()
368 else if (action == showAllAction) in setOptionMode()
891 QAction *action; in contextMenuEvent() local
894 action = new QAction("Show Name", this); in contextMenuEvent()
895 action->setCheckable(true); in contextMenuEvent()
896 connect(action, &QAction::toggled, in contextMenuEvent()
899 action, &QAction::setChecked); in contextMenuEvent()
900 action->setChecked(showName); in contextMenuEvent()
901 headerPopup->addAction(action); in contextMenuEvent()
[all …]
Dqconf.h73 void setOptionMode(QAction *action);