/external/valgrind/main/coregrind/ |
pub_core_initimg.h | 72 HChar* toolname; member in struct:_IICreateImageInfo 96 HChar* toolname; member in struct:_IICreateImageInfo
|
launcher-linux.c | 242 const char *toolname = NULL; local 269 toolname = argv[i] + 7; 277 if (toolname) { 278 VG_(debugLog)(1, "launcher", "tool '%s' requested\n", toolname); 282 toolname = "memcheck"; 364 toolfile = malloc(strlen(valgrind_lib) + strlen(toolname) + strlen(platform) + 3); 367 sprintf(toolfile, "%s/%s-%s", valgrind_lib, toolname, platform); 374 toolname, platform, strerror(errno));
|
launcher-darwin.c | 203 const char *toolname = NULL; local 239 toolname = argv[i] + 7; 249 if (toolname) { 250 VG_(debugLog)(1, "launcher", "tool '%s' requested\n", toolname); 254 toolname = "memcheck"; 410 asprintf(&toolfile, "%s/%s-%s-darwin", valgrind_lib, toolname, arch); 412 barf("tool '%s' not installed (%s) (%s)", toolname, toolfile, strerror(errno)); 420 toolname, arch, strerror(errno));
|
m_main.c | 324 - get the toolname (--tool=) 403 const HChar* toolname ) 410 Int toolname_len = VG_(strlen)(toolname); 448 // Does it have the form "--toolname:foo"? We have to do it at the start 453 VG_STREQN(toolname_len, arg+2, toolname) && 456 // Prefix matches, convert "--toolname:foo" to "--foo". 1539 HChar* toolname = "memcheck"; \/\/ default to Memcheck local [all...] |
/external/chromium_org/tools/clang/scripts/ |
run_tool.py | 93 def _ExecuteTool(toolname, build_directory, filename): 100 toolname: Path to the tool to execute. 114 command = subprocess.Popen((toolname, '-p', build_directory, filename), 128 def __init__(self, toolname, build_directory, filenames): 132 toolname: Path to the tool to execute. 136 self.__toolname = toolname
|
/external/llvm/tools/bugpoint/ |
BugDriver.cpp | 69 BugDriver::BugDriver(const char *toolname, bool find_bugs, 72 : Context(ctxt), ToolName(toolname), ReferenceOutputFile(OutputFile), 132 errs() << ToolName << ": error linking in '" << Filenames[i] << "': "
|
BugDriver.h | 48 const char *ToolName; // argv[0] of bugpoint 65 BugDriver(const char *toolname, bool find_bugs, 70 const char *getToolName() const { return ToolName; }
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
_osx_support.py | 74 def _find_build_tool(toolname): 76 return (_find_executable(toolname) 77 or _read_output("/usr/bin/xcrun -find %s" % (toolname,))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
_osx_support.py | 74 def _find_build_tool(toolname): 76 return (_find_executable(toolname) 77 or _read_output("/usr/bin/xcrun -find %s" % (toolname,))
|
/external/valgrind/main/coregrind/m_initimg/ |
initimg-darwin.c | 117 static HChar** setup_client_env ( HChar** origenv, const HChar* toolname) 142 Int preload_tool_path_len = vglib_len + VG_(strlen)(toolname) 153 "%s/vgpreload_%s-%s.so", VG_(libdir), toolname, VG_PLATFORM); 536 // p: get_helprequest_and_toolname [for toolname] 539 env = setup_client_env(iicii.envp, iicii.toolname);
|
initimg-linux.c | 127 static HChar** setup_client_env ( HChar** origenv, const HChar* toolname) 149 Int preload_tool_path_len = vglib_len + VG_(strlen)(toolname) 155 vg_assert(toolname); 163 "%s/vgpreload_%s-%s.so", VG_(libdir), toolname, VG_PLATFORM); 894 // p: get_helprequest_and_toolname [for toolname] 897 env = setup_client_env(iicii.envp, iicii.toolname); [all...] |