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

  /external/valgrind/include/
pub_tool_options.h 56 if VG_STREQ(val, "yes") (qq_var) = True; \
57 else if VG_STREQ(val, "no") (qq_var) = False; \
167 (VG_STREQ((qq_arg), (qq_option)) && \
182 if (VG_STREQ(val, (qq_strings)[qq_ix])) \
pub_tool_libcbase.h 77 #define VG_STREQ(s1,s2) ( (s1 != NULL && s2 != NULL \
  /external/valgrind/memcheck/tests/
unit_libcbase.c 36 CHECK( ! VG_STREQ(NULL, NULL) ); // Nb: strcmp() considers these equal
37 CHECK( ! VG_STREQ(NULL, "ab") ); // Nb: strcmp() seg faults on this
38 CHECK( ! VG_STREQ("ab", NULL) ); // Nb: strcmp() seg faults on this
39 CHECK( ! VG_STREQ("", "a") );
40 CHECK( ! VG_STREQ("a", "") );
41 CHECK( ! VG_STREQ("abc", "abcd"));
42 CHECK( ! VG_STREQ("abcd", "abc") );
43 CHECK( ! VG_STREQ("Abcd", "abcd"));
44 CHECK( ! VG_STREQ("abcd", "Abcd"));
46 CHECK( VG_STREQ("", "") );
    [all...]
  /external/valgrind/memcheck/
mc_errors.c     [all...]
  /external/valgrind/coregrind/
m_commandline.c 225 f2_clo = ( VG_STREQ(home, cwd)
m_errormgr.c     [all...]
m_main.c 548 else if VG_STREQ( arg, "--") {}
549 else if VG_STREQ( arg, "-d") {}
581 else if (VG_STREQ(arg, "-v") ||
582 VG_STREQ(arg, "--verbose"))
585 else if (VG_STREQ(arg, "-q") ||
586 VG_STREQ(arg, "--quiet"))
    [all...]
m_options.c 174 if (VG_STREQ(format, "")) {
m_libcassert.c 460 if (VG_STREQ(expr, "0")) {
  /external/valgrind/coregrind/m_ume/
main.c 165 if (n == 2 && VG_STREQ("#!", buf))
  /external/valgrind/exp-sgcheck/
pc_common.c 725 if (VG_STREQ(name, "SorG")) skind = XS_SorG;
726 else if (VG_STREQ(name, "Heap")) skind = XS_Heap;
727 else if (VG_STREQ(name, "Arith")) skind = XS_Arith;
728 else if (VG_STREQ(name, "SysParam")) skind = XS_SysParam;