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

  /external/valgrind/main/coregrind/
launcher-aix5-bootblock.h 82 /* 692 */ UChar toolfile[N_BOOTBLOCK_TOOLFILE]; member in struct:__anon12295
launcher-linux.c 237 char *toolfile; local
352 toolfile = malloc(strlen(valgrind_lib) + strlen(toolname) + strlen(platform) + 3);
353 if (toolfile == NULL)
354 barf("malloc of toolfile failed.");
355 sprintf(toolfile, "%s/%s-%s", valgrind_lib, toolname, platform);
357 VG_(debugLog)(1, "launcher", "launching %s\n", toolfile);
359 execve(toolfile, argv, new_env);
launcher-darwin.c 210 char *toolfile; local
410 asprintf(&toolfile, "%s/%s-%s-darwin", valgrind_lib, toolname, arch);
411 if (access(toolfile, R_OK|X_OK) != 0) {
412 barf("tool '%s' not installed (%s) (%s)", toolname, toolfile, strerror(errno));
415 VG_(debugLog)(1, "launcher", "launching %s\n", toolfile);
417 execve(toolfile, new_argv, new_env);
launcher-aix5.c 688 ( Child* child, char* toolfile )
810 /* --- TOOLFILE --- */
812 if (1 + strlen(toolfile) > N_BOOTBLOCK_TOOLFILE)
815 for (i = 0; toolfile[i]; i++)
816 block.toolfile[i] = toolfile[i];
894 /* Set up for 'sys_kload(toolfile, 0, 0)'
931 gen_addi_rd_rs_N(3,31,offsetof(AIX5Bootblock,toolfile)));
1007 gen_addi_rd_rs_N(6,31,offsetof(AIX5Bootblock,toolfile)));
1500 char* toolfile = malloc(strlen(valgrind_lib) local
    [all...]

Completed in 720 milliseconds