HomeSort by relevance Sort by last modified time
    Searched full:toolfile (Results 1 - 3 of 3) sorted by null

  /external/valgrind/coregrind/
launcher-linux.c 322 char *toolfile; local
472 toolfile = malloc(strlen(valgrind_lib) + strlen(toolname) + strlen(platform) + 3);
473 if (toolfile == NULL)
474 barf("malloc of toolfile failed.");
475 sprintf(toolfile, "%s/%s-%s", valgrind_lib, toolname, platform);
477 VG_(debugLog)(1, "launcher", "launching %s\n", toolfile);
479 execve(toolfile, argv, new_env);
launcher-darwin.c 214 char *toolfile; local
414 asprintf(&toolfile, "%s/%s-%s-darwin", valgrind_lib, toolname, arch);
415 if (access(toolfile, R_OK|X_OK) != 0) {
416 barf("tool '%s' not installed (%s) (%s)", toolname, toolfile, strerror(errno));
419 VG_(debugLog)(1, "launcher", "launching %s\n", toolfile);
421 execve(toolfile, new_argv, new_env);
  /external/valgrind/coregrind/m_gdbserver/
server.c 353 : "<toolfile> <address> e.g.",
    [all...]

Completed in 2622 milliseconds