Home
last modified time | relevance | path

Searched refs:execName (Results 1 – 3 of 3) sorted by relevance

/third_party/flutter/flutter/packages/flutter_tools/lib/src/base/
Dos.dart42 File which(String execName) {
43 final List<File> result = _which(execName);
49 /// Return a list of all paths to `execName` found on the system. Uses the
51 List<File> whichAll(String execName) => _which(execName, all: true);
81 List<File> _which(String execName, { bool all = false });
143 List<File> _which(String execName, { bool all = false }) {
147 command.add(execName);
219 List<File> _which(String execName, { bool all = false }) {
221 final ProcessResult result = processManager.runSync(<String>['where', execName]);
/third_party/flutter/flutter/packages/flutter_tools/test/src/
Dcontext.dart244 File which(String execName) => null;
247 List<File> whichAll(String execName) => <File>[];
/third_party/mesa3d/src/util/
Dxmlconfig.c596 const char *driverName, *execName; member
700 if (exec && strcmp(exec, data->execName)) { in parseAppAttr()
1174 userData.execName = execname ? execname : util_get_process_name(); in driParseConfigFiles()