Home | History | Annotate | Download | only in coregrind

Lines Matching defs:tmp_str

414    const HChar* tmp_str;         // Used in a couple of places.
544 else if VG_STR_CLO (arg, "--vgdb-stop-at", tmp_str) {
545 if (!VG_(parse_enum_set)("startup,exit,valgrindabexit", tmp_str,
568 else if VG_STR_CLO(arg, "--fair-sched", tmp_str) {
569 if (VG_(strcmp)(tmp_str, "yes") == 0)
571 else if (VG_(strcmp)(tmp_str, "try") == 0)
573 else if (VG_(strcmp)(tmp_str, "no") == 0)
690 else if VG_STR_CLO(arg, "--suppressions", tmp_str) {
696 VG_(clo_suppressions)[VG_(clo_n_suppressions)] = tmp_str;
700 else if VG_STR_CLO (arg, "--fullpath-after", tmp_str) {
706 VG_(clo_fullpath_after)[VG_(clo_n_fullpath_after)] = tmp_str;
713 else if VG_STR_CLO(arg, "--require-text-symbol", tmp_str) {
727 ok = tmp_str && VG_(strlen)(tmp_str) > 0;
729 patt[0] = patt[3] = tmp_str[0];
733 ok = VG_(string_match)(patt, tmp_str);
739 VG_(clo_req_tsyms)[VG_(clo_n_req_tsyms)] = tmp_str;
744 else if VG_STR_CLO(arg, "--trace-flags", tmp_str) {
746 if (8 != VG_(strlen)(tmp_str)) {
751 if ('0' == tmp_str[j]) { /* do nothing */ }
752 else if ('1' == tmp_str[j]) VG_(clo_trace_flags) |= (1 << (7-j));
765 else if VG_STR_CLO(arg, "--profile-flags", tmp_str) {
767 if (8 != VG_(strlen)(tmp_str)) {
772 if ('0' == tmp_str[j]) { /* do nothing */ }
773 else if ('1' == tmp_str[j]) VG_(clo_profyle_flags) |= (1 << (7-j));
1552 const HChar* tmp_str;
1561 if VG_STR_CLO(argv[i], "--aspace-minaddr", tmp_str) {
1567 Bool ok = VG_(parse_Addr) (&tmp_str, &VG_(clo_aspacem_minAddr));