Home
last modified time | relevance | path

Searched refs:toolfile (Results 1 – 2 of 2) sorted by relevance

/external/valgrind/coregrind/
Dlauncher-darwin.c214 char *toolfile; in main() local
414 asprintf(&toolfile, "%s/%s-%s-darwin", valgrind_lib, toolname, arch); in main()
415 if (access(toolfile, R_OK|X_OK) != 0) { in main()
416 barf("tool '%s' not installed (%s) (%s)", toolname, toolfile, strerror(errno)); in main()
419 VG_(debugLog)(1, "launcher", "launching %s\n", toolfile); in main()
421 execve(toolfile, new_argv, new_env); in main()
Dlauncher-linux.c316 char *toolfile; in main() local
465 toolfile = malloc(strlen(valgrind_lib) + strlen(toolname) + strlen(platform) + 3); in main()
466 if (toolfile == NULL) in main()
468 sprintf(toolfile, "%s/%s-%s", valgrind_lib, toolname, platform); in main()
470 VG_(debugLog)(1, "launcher", "launching %s\n", toolfile); in main()
472 execve(toolfile, argv, new_env); in main()