Searched refs:VG_STREQN (Results 1 – 5 of 5) sorted by relevance
/external/valgrind/memcheck/tests/ |
D | unit_libcbase.c | 53 CHECK( ! VG_STREQN(0, NULL, NULL) ); in test_VG_STREQN() 54 CHECK( ! VG_STREQN(5, NULL, NULL) ); in test_VG_STREQN() 55 CHECK( ! VG_STREQN(0, NULL, "ab") ); in test_VG_STREQN() 56 CHECK( ! VG_STREQN(5, NULL, "ab") ); in test_VG_STREQN() 57 CHECK( ! VG_STREQN(0, "ab", NULL) ); in test_VG_STREQN() 58 CHECK( ! VG_STREQN(1, "", "a") ); in test_VG_STREQN() 59 CHECK( ! VG_STREQN(1, "a", "") ); in test_VG_STREQN() 60 CHECK( ! VG_STREQN(4, "abc", "abcd")); in test_VG_STREQN() 61 CHECK( ! VG_STREQN(4, "abcd", "abc") ); in test_VG_STREQN() 62 CHECK( ! VG_STREQN(1, "Abcd", "abcd")); in test_VG_STREQN() [all …]
|
/external/valgrind/include/ |
D | pub_tool_options.h | 53 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \ 66 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \ 77 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \ 101 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \ 117 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \ 151 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \ 178 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \
|
D | pub_tool_libcbase.h | 79 #define VG_STREQN(n,s1,s2) ( (s1 != NULL && s2 != NULL \ macro
|
/external/valgrind/coregrind/ |
D | m_main.c | 514 if (VG_STREQN(2, arg, "--") && in main_process_cmd_line_options() 515 VG_STREQN(toolname_len, arg+2, toolname) && in main_process_cmd_line_options() 516 VG_STREQN(1, arg+2+toolname_len, ":")) in main_process_cmd_line_options() 546 if VG_STREQN( 7, arg, "--tool=") {} in main_process_cmd_line_options() 547 else if VG_STREQN(20, arg, "--command-line-only=") {} in main_process_cmd_line_options() 550 else if VG_STREQN(17, arg, "--max-stackframe=") {} in main_process_cmd_line_options() 551 else if VG_STREQN(17, arg, "--main-stacksize=") {} in main_process_cmd_line_options() 552 else if VG_STREQN(14, arg, "--max-threads=") {} in main_process_cmd_line_options() 553 else if VG_STREQN(12, arg, "--sim-hints=") {} in main_process_cmd_line_options() 554 else if VG_STREQN(15, arg, "--profile-heap=") {} in main_process_cmd_line_options() [all …]
|
/external/valgrind/callgrind/ |
D | clo.c | 471 else if VG_STREQN(12, arg, "--ct-verbose") { in CLG_() 486 else if VG_STREQN(10, arg, "--fn-group") { in CLG_() 495 else if VG_STREQN(18, arg, "--separate-callers") { in CLG_() 504 else if VG_STREQN(15, arg, "--separate-recs") { in CLG_()
|