Searched refs:execName (Results 1 – 3 of 3) sorted by relevance
/third_party/flutter/flutter/packages/flutter_tools/lib/src/base/ |
D | os.dart | 42 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/mesa3d/src/util/ |
D | xmlconfig.c | 596 const char *driverName, *execName; member 702 if (exec && strcmp(exec, data->execName)) { in parseAppAttr() 708 if (regexec(&re, data->execName, 0, NULL, 0) == REG_NOMATCH) in parseAppAttr() 1206 userData.execName = execname ? execname : util_get_process_name(); in driParseConfigFiles()
|
/third_party/flutter/flutter/packages/flutter_tools/test/src/ |
D | context.dart | 244 File which(String execName) => null; 247 List<File> whichAll(String execName) => <File>[];
|