/external/valgrind/main/memcheck/tests/ |
D | unit_libcbase.c | 17 CHECK( ! VG_STREQ(NULL, NULL) ); // Nb: strcmp() considers these equal in test_VG_STREQ() 18 CHECK( ! VG_STREQ(NULL, "ab") ); // Nb: strcmp() seg faults on this in test_VG_STREQ() 19 CHECK( ! VG_STREQ("ab", NULL) ); // Nb: strcmp() seg faults on this in test_VG_STREQ() 20 CHECK( ! VG_STREQ("", "a") ); in test_VG_STREQ() 21 CHECK( ! VG_STREQ("a", "") ); in test_VG_STREQ() 22 CHECK( ! VG_STREQ("abc", "abcd")); in test_VG_STREQ() 23 CHECK( ! VG_STREQ("abcd", "abc") ); in test_VG_STREQ() 24 CHECK( ! VG_STREQ("Abcd", "abcd")); in test_VG_STREQ() 25 CHECK( ! VG_STREQ("abcd", "Abcd")); in test_VG_STREQ() 27 CHECK( VG_STREQ("", "") ); in test_VG_STREQ() [all …]
|
/external/valgrind/main/memcheck/ |
D | mc_errors.c | 878 if (VG_STREQ(e1s, e2s)) return True; in MC_() 883 return VG_STREQ(VG_(get_error_string)(e1), VG_(get_error_string)(e2)); in MC_() 892 if (!VG_STREQ(VG_(get_error_string)(e1), in MC_() 1196 if (VG_STREQ(name, "Param")) skind = ParamSupp; in MC_() 1197 else if (VG_STREQ(name, "User")) skind = UserSupp; in MC_() 1198 else if (VG_STREQ(name, "CoreMem")) skind = CoreMemSupp; in MC_() 1199 else if (VG_STREQ(name, "Addr1")) skind = Addr1Supp; in MC_() 1200 else if (VG_STREQ(name, "Addr2")) skind = Addr2Supp; in MC_() 1201 else if (VG_STREQ(name, "Addr4")) skind = Addr4Supp; in MC_() 1202 else if (VG_STREQ(name, "Addr8")) skind = Addr8Supp; in MC_() [all …]
|
/external/valgrind/main/include/ |
D | pub_tool_options.h | 56 if VG_STREQ(val, "yes") (qq_var) = True; \ 57 else if VG_STREQ(val, "no") (qq_var) = False; \ 139 (VG_STREQ((qq_arg), (qq_option)) && \
|
D | pub_tool_libcbase.h | 82 #define VG_STREQ(s1,s2) ( (s1 != NULL && s2 != NULL \ macro
|
/external/valgrind/main/coregrind/m_initimg/ |
D | initimg-pathscan.c | 121 && VG_STREQ(executable_name_out, "")) in match_executable() 146 return VG_STREQ(executable_name_out, "") ? NULL : executable_name_out; in ML_()
|
/external/valgrind/main/exp-sgcheck/ |
D | pc_common.c | 727 if (VG_STREQ(name, "SorG")) skind = XS_SorG; in pc_is_recognised_suppression() 728 else if (VG_STREQ(name, "Heap")) skind = XS_Heap; in pc_is_recognised_suppression() 729 else if (VG_STREQ(name, "Arith")) skind = XS_Arith; in pc_is_recognised_suppression() 730 else if (VG_STREQ(name, "SysParam")) skind = XS_SysParam; in pc_is_recognised_suppression()
|
/external/valgrind/main/coregrind/ |
D | m_errormgr.c | 1282 if (!VG_STREQ(buf, "{")) BOMB("expected '{' or end-of-file"); in load_one_suppressions_file() 1286 if (eof || VG_STREQ(buf, "}")) BOMB("unexpected '}'"); in load_one_suppressions_file() 1332 if (VG_STREQ(buf, "}")) in load_one_suppressions_file() 1363 if (VG_STREQ(buf, "}")) { in load_one_suppressions_file() 1382 if (!VG_STREQ(buf, "}")) { in load_one_suppressions_file() 1385 } while (!eof && !VG_STREQ(buf, "}")); in load_one_suppressions_file()
|
D | m_libcassert.c | 422 if (VG_STREQ(expr, "0")) { in VG_() 429 if (!VG_STREQ(buf, "")) in VG_()
|
D | m_commandline.c | 227 f2_clo = ( (cwd_ok && VG_STREQ(home, cwd)) in VG_()
|
D | m_main.c | 493 else if VG_STREQ( arg, "--") {} in main_process_cmd_line_options() 494 else if VG_STREQ( arg, "-d") {} in main_process_cmd_line_options() 519 else if (VG_STREQ(arg, "-v") || in main_process_cmd_line_options() 520 VG_STREQ(arg, "--verbose")) in main_process_cmd_line_options() 523 else if (VG_STREQ(arg, "-q") || in main_process_cmd_line_options() 524 VG_STREQ(arg, "--quiet")) in main_process_cmd_line_options() 1554 if VG_STREQ(argv[i], "--") break; in valgrind_main() 1555 if VG_STREQ(argv[i], "-d") loglevel++; in valgrind_main()
|
D | m_options.c | 150 if (VG_STREQ(format, "")) { in VG_()
|
/external/valgrind/main/coregrind/m_ume/ |
D | main.c | 165 if (n == 2 && VG_STREQ("#!", buf)) in is_hash_bang_file()
|
/external/valgrind/main/coregrind/m_syswrap/ |
D | syswrap-generic.c | 3733 (VG_STREQ(arg1s, name) || VG_STREQ(arg1s, "/proc/self/cmdline")) in PRE() 3758 (VG_STREQ(arg1s, name) || VG_STREQ(arg1s, "/proc/self/auxv")) in PRE() 3904 (VG_STREQ(arg1s, name) || VG_STREQ(arg1s, "/proc/self/exe")) in PRE()
|
/external/valgrind/main/helgrind/ |
D | hg_main.c | 4465 if (VG_STREQ(soname, VG_U_LD_LINUX_SO_3)) return True; in is_in_dynamic_linker_shared_object() 4466 if (VG_STREQ(soname, VG_U_LD_LINUX_SO_2)) return True; in is_in_dynamic_linker_shared_object() 4467 if (VG_STREQ(soname, VG_U_LD_LINUX_X86_64_SO_2)) return True; in is_in_dynamic_linker_shared_object() 4468 if (VG_STREQ(soname, VG_U_LD64_SO_1)) return True; in is_in_dynamic_linker_shared_object() 4469 if (VG_STREQ(soname, VG_U_LD_SO_1)) return True; in is_in_dynamic_linker_shared_object() 4471 if (VG_STREQ(soname, VG_U_DYLD)) return True; in is_in_dynamic_linker_shared_object()
|
/external/valgrind/main/coregrind/m_debuginfo/ |
D | debuginfo.c | 1579 if (VG_STREQ("main", name)) { in VG_() 1584 VG_STREQ("__libc_start_main", name) || // glibc glibness in VG_() 1585 VG_STREQ("generic_start_main", name) || // Yellow Dog doggedness in VG_() 1588 VG_STREQ("start_according_to_valgrind", name) || // Darwin, darling in VG_()
|
D | readmacho.c | 374 else if (!VG_(clo_show_below_main) && VG_STREQ(disym.pri_name, "start")) { in read_symtab()
|
/external/valgrind/main/massif/ |
D | ms_main.c | 369 if (VG_STREQ(fnname, *fn_ptr)) in is_member_fn()
|