/aosp_15_r20/external/ltp/testcases/network/iptables/ |
H A D | iptables_lib.sh | 41 toolname=ip${TST_IPV6}tables 42 cmds="$toolname" 45 toolname=nft 46 cmds="$toolname ip${TST_IPV6}tables-translate" 84 tst_res TCONF "$toolname not applicable for test $1" 147 tst_res TINFO "Use $toolname to DROP packets from particular IP" 152 tst_res TFAIL "$toolname command failed to append new rule" 163 "$toolname did not block packets from loopback" 170 tst_res TFAIL "$toolname did not block $proto from $loc_addr" 181 tst_res TFAIL "$toolname blocking loopback. This is expected" \ [all …]
|
/aosp_15_r20/external/llvm/utils/KillTheDoctor/ |
H A D | KillTheDoctor.cpp | 76 StringRef ToolName; variable 303 ToolName = argv[0]; in main() 312 errs() << ToolName << ": Timeout value too large, must be less than: " in main() 323 errs() << ToolName << ": Failed to find program: '" << CommandLine in main() 329 errs() << ToolName << ": Found Program: " << ProgramToRun << '\n'; in main() 337 errs() << ToolName << ": Program Image Path: " << ProgramToRun << '\n' in main() 338 << ToolName << ": Command Line: " << CommandLine << '\n'; in main() 362 errs() << ToolName << ": Failed to run program: '" << ProgramToRun << "': " in main() 378 errs() << ToolName << ": Debugging...\n"; in main() 393 errs() << ToolName << ": Failed to get process times: " in main() [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/core/profiler/convert/ |
H A D | xplane_to_profile_response.cc | 73 std::string ToolName(absl::string_view tool) { in ToolName() function 99 ToolName(kTraceViewer), TraceEventsToJson(trace))); in ConvertXSpaceToProfileResponse() 112 AddToolData(ToolName(kOverviewPage), overview_page_db, response); in ConvertXSpaceToProfileResponse() 114 AddToolData(ToolName(kInputPipeline), overview_page_db.input_analysis(), in ConvertXSpaceToProfileResponse() 118 AddToolData(ToolName(kInputPipeline), in ConvertXSpaceToProfileResponse() 123 AddToolData(ToolName(kTensorflowStats), tf_stats_db, response); in ConvertXSpaceToProfileResponse() 126 AddToolData(ToolName(kKernelStats), op_stats.kernel_stats_db(), response); in ConvertXSpaceToProfileResponse() 133 ToolName(kMemoryProfile), json_output)); in ConvertXSpaceToProfileResponse() 140 AddToolData(ToolName(kOpProfile), op_profile, response); in ConvertXSpaceToProfileResponse()
|
/aosp_15_r20/system/tools/aidl/analyzer/ |
D | analyzerMain.cpp | 382 void printGeneralHelp(std::string& toolName) { in printGeneralHelp() argument 383 std::cout << "USAGE: " << toolName << " <command> [<args>]\n\n"; in printGeneralHelp() 396 std::cout << "\n See '" << toolName << " help <command>' for detailed help.\n"; in printGeneralHelp() 400 std::string toolName = argv[0]; in helpCommandEntryPoint() local 403 printGeneralHelp(toolName); in helpCommandEntryPoint() 411 printGeneralHelp(toolName); in helpCommandEntryPoint() 422 printGeneralHelp(toolName); in helpCommandEntryPoint() 427 std::cout << "USAGE: " << toolName << " " << commandName << " " in helpCommandEntryPoint() 437 std::string toolName = argv[0]; in main() local 447 printGeneralHelp(toolName); in main() [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/internal/tool/ |
D | tool.go | 65 toolName := args[0] 67 for _, c := range toolName { 71 fmt.Fprintf(os.Stderr, "go: bad tool name %q\n", toolName) 77 toolPath, err := base.ToolPath(toolName) 79 if toolName == "dist" && len(args) > 1 && args[1] == "list" { 96 _ = base.Tool(toolName) 99 counter.Inc("go/subcommand:tool-" + toolName) 138 fmt.Fprintf(os.Stderr, "go tool %s: %s\n", toolName, err)
|
/aosp_15_r20/external/emma/core/java12/com/vladium/emma/ |
H A D | Command.java | 269 protected static String usageMsgPrefix (final String toolName) in usageMsgPrefix() argument 271 return toolNameToCommandName (toolName).concat (" usage: "); in usageMsgPrefix() 274 protected static String usageResName (final String toolName) in usageResName() argument 276 return toolName.replace ('.', '/').concat ("_usage.res"); in usageResName() 279 protected static String toolNameToCommandName (final String toolName) in toolNameToCommandName() argument 281 final int lastDot = toolName.lastIndexOf ('.'); in toolNameToCommandName() 283 return lastDot > 0 ? toolName.substring (lastDot + 1) : toolName; in toolNameToCommandName()
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/internal/base/ |
D | tool.go | 19 func Tool(toolName string) string { 20 toolPath, err := ToolPath(toolName) 23 fmt.Fprintf(os.Stderr, "go: no such tool %q\n", toolName) 32 func ToolPath(toolName string) (string, error) { 33 toolPath := filepath.Join(build.ToolDir, toolName) + cfg.ToolExeSuffix()
|
/aosp_15_r20/external/llvm/tools/llvm-size/ |
H A D | llvm-size.cpp | 89 static std::string ToolName; variable 97 errs() << ToolName << ": error reading file: " << ec.message() << ".\n"; in error() 104 errs() << ToolName << ": " << Message << ".\n"; in error() 110 // "libx.a(foo.o)" after the ToolName before the error message. It sets 115 errs() << ToolName << ": " << FileName; in error() 136 …h architecture slice it // is from, for example: "foo.o (for architecture i386)" after the ToolName 142 errs() << ToolName << ": " << FileName; in error() 508 errs() << ToolName << ": file: " << file in checkMachOAndArchFlags() 646 errs() << ToolName << ": file: " << file in printFileSectionSizes() 815 errs() << ToolName << ": " << file << ": " in printFileSectionSizes() [all …]
|
/aosp_15_r20/system/extras/simpleperf/scripts/ |
H A D | simpleperf_utils.py | 195 def _get_binutils_path_in_ndk(cls, toolname: str, arch: Optional[str], platform: str 200 name = 'aarch64-linux-android-' + toolname 202 name = 'arm-linux-androideabi-' + toolname 204 name = 'x86_64-linux-android-' + toolname 206 name = 'i686-linux-android-' + toolname 213 def find_tool_path(cls, toolname: str, ndk_path: Optional[str] = None, 215 tool_info = cls.EXPECTED_TOOLS.get(toolname) 224 if toolname.startswith('llvm-') and platform == 'linux' and get_script_dir().endswith( 228 'llvm-binutils-stable' / toolname) 237 toolname, arch, platform) [all …]
|
/aosp_15_r20/external/python/cpython3/Tools/msi/ |
D | sdktools.psm1 | 2 param([string]$toolname) in Find-Tool() variable 5 $tool = (gci -r "$kitroot\Bin\*\x64\$toolname" | sort FullName -Desc | select -First 1) in Find-Tool() 7 throw "$toolname is not available" in Find-Tool() variable 9 Write-Host "Found $toolname at $($tool.FullName)" in Find-Tool() variable
|
/aosp_15_r20/tools/tradefederation/core/src/com/android/tradefed/util/ |
D | AaptParser.java | 193 CLog.e("%s dump badging stderr: %s", toolName(aaptVersion), stderr); in parse() 199 toolName(aaptVersion), apkFile.getAbsoluteFile(), result.getStdout()); in parse() 212 CLog.e("%s dump xmltree AndroidManifest.xml stderr: %s", toolName(aaptVersion), stderr); in parse() 219 toolName(aaptVersion), apkFile.getAbsoluteFile(), result.getStdout()); in parse() 276 private static String toolName(AaptVersion version) { in toolName() method in AaptParser
|
/aosp_15_r20/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/hearingaid/ |
H A D | HearingDevicesToolItemParser.java | 97 for (String toolName : toolNameArray) { in parseValidActivityInfo() 98 String[] nameParts = toolName.split(SPLIT_DELIMITER); in parseValidActivityInfo() 100 ComponentName componentName = ComponentName.unflattenFromString(toolName); in parseValidActivityInfo() 111 + toolName); in parseValidActivityInfo()
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SystemUI/SystemUI-core/android_common/kapt/gen/stubs/com/android/systemui/accessibility/hearingaid/ |
D | ToolItem.java | 6 … d2 = {"Lcom/android/systemui/accessibility/hearingaid/ToolItem;", "", "toolName", "", "toolIcon",… 9 private java.lang.String toolName; field in ToolItem 17 java.lang.String toolName, @org.jetbrains.annotations.NotNull() in ToolItem() 78 java.lang.String toolName, @org.jetbrains.annotations.NotNull() in copy()
|
/aosp_15_r20/external/clang/lib/Tooling/ |
H A D | Tooling.cpp | 113 getSyntaxOnlyToolArgs(const Twine &ToolName, in getSyntaxOnlyToolArgs() argument 117 Args.push_back(ToolName.str()); in getSyntaxOnlyToolArgs() 127 const Twine &ToolName, in runToolOnCodeWithArgs() argument 140 ToolInvocation Invocation(getSyntaxOnlyToolArgs(ToolName, Args, FileNameRef), in runToolOnCodeWithArgs() 501 const Twine &FileName, const Twine &ToolName, in buildASTFromCodeWithArgs() argument 515 ToolInvocation Invocation(getSyntaxOnlyToolArgs(ToolName, Args, FileNameRef), in buildASTFromCodeWithArgs()
|
/aosp_15_r20/external/python/cpython3/.azure-pipelines/windows-release/ |
D | find-sdk.yml | 3 # `toolname` can be overridden to use a different marker file. 6 toolname: signtool.exe 11 …$tool = (gci -r "$kitroot\Bin\*\${{ parameters.toolname }}" | sort FullName -Desc | select -First …
|
/aosp_15_r20/external/llvm/tools/llvm-ar/ |
H A D | llvm-ar.cpp | 50 static StringRef ToolName; variable 54 outs() << ToolName << ": " << Error << ".\n"; in fail() 166 errs() << ToolName << ": " << msg << "\n\n"; in show_help() 724 errs() << ToolName << ": creating " << ArchiveName << "\n"; in performOperation() 813 fail(ToolName + " takes just one archive as an argument"); in ranlib_main() 819 ToolName = argv[0]; in main() 829 StringRef Stem = sys::path::stem(ToolName); in main()
|
/aosp_15_r20/external/llvm/tools/bugpoint/ |
H A D | ExecutionDriver.cpp | 280 errs() << ToolName << ": Error making unique filename: " << EC.message() in compileProgram() 285 errs() << ToolName << ": Error emitting bitcode to file '" << BitcodeFile in compileProgram() 318 errs() << ToolName << ": Error making unique filename: " in executeProgram() 325 errs() << ToolName << ": Error emitting bitcode to file '" in executeProgram() 343 errs() << ToolName << ": Error making unique filename: " in executeProgram()
|
H A D | BugDriver.cpp | 70 BugDriver::BugDriver(const char *toolname, bool find_bugs, in BugDriver() argument 73 : Context(ctxt), ToolName(toolname), ReferenceOutputFile(OutputFile), in BugDriver()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/clang/Tooling/ |
D | Tooling.h | 180 /// \param ToolName The name of the binary running the tool. Standard library 189 const Twine &ToolName = "clang-tool", 199 const Twine &ToolName = "clang-tool", 221 /// \param ToolName The name of the binary running the tool. Standard library 231 StringRef FileName = "input.cc", StringRef ToolName = "clang-tool",
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/clang/Tooling/ |
D | Tooling.h | 180 /// \param ToolName The name of the binary running the tool. Standard library 189 const Twine &ToolName = "clang-tool", 199 const Twine &ToolName = "clang-tool", 221 /// \param ToolName The name of the binary running the tool. Standard library 231 StringRef FileName = "input.cc", StringRef ToolName = "clang-tool",
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/clang/Tooling/ |
D | Tooling.h | 180 /// \param ToolName The name of the binary running the tool. Standard library 189 const Twine &ToolName = "clang-tool", 199 const Twine &ToolName = "clang-tool", 221 /// \param ToolName The name of the binary running the tool. Standard library 231 StringRef FileName = "input.cc", StringRef ToolName = "clang-tool",
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/clang/Tooling/ |
D | Tooling.h | 180 /// \param ToolName The name of the binary running the tool. Standard library 189 const Twine &ToolName = "clang-tool", 199 const Twine &ToolName = "clang-tool", 221 /// \param ToolName The name of the binary running the tool. Standard library 231 StringRef FileName = "input.cc", StringRef ToolName = "clang-tool",
|
/aosp_15_r20/external/clang/include/clang/Tooling/ |
H A D | Tooling.h | 166 /// \param ToolName The name of the binary running the tool. Standard library 175 const Twine &ToolName = "clang-tool", 198 /// \param ToolName The name of the binary running the tool. Standard library 206 const Twine &FileName = "input.cc", const Twine &ToolName = "clang-tool",
|
/aosp_15_r20/external/llvm/tools/llvm-mcmarkup/ |
H A D | llvm-mcmarkup.cpp | 31 static StringRef ToolName; variable 141 errs() << ToolName << ": " << EC.message() << '\n'; in parseMCMarkup() 217 ToolName = argv[0]; in main()
|
/aosp_15_r20/external/llvm/tools/llvm-nm/ |
H A D | llvm-nm.cpp | 177 std::string ToolName; variable 182 errs() << ToolName << ": " << Path << ": " << Message << ".\n"; in error() 194 // "libx.a(foo.o)" after the ToolName before the error message. It sets 199 errs() << ToolName << ": " << FileName; in error() 221 // is from, for example: "foo.o (for architecture i386)" after the ToolName 227 errs() << ToolName << ": " << FileName; in error() 1382 ToolName = argv[0]; in main()
|