Searched refs:r_regex_match (Results 1 – 8 of 8) sorted by relevance
/dports/devel/radare2/radare2-5.1.1/test/unit/ |
H A D | test_regex.c | 29 res = r_regex_match ("(eax|ebx)", "e", "mov eax"); in test_or() 33 res = r_regex_match ("(eax|ebx)", "e", "mov ebx"); in test_or() 37 res = r_regex_match ("(eax|ebx)", "e", "mov ecx"); in test_or() 41 res = r_regex_match ("(eax|ecx)", "e", "mov ebx"); in test_or()
|
/dports/devel/radare2/radare2-5.1.1/libr/include/ |
H A D | r_regex.h | 62 R_API bool r_regex_match(const char *pattern, const char *flags, const char *text);
|
/dports/devel/radare2/radare2-5.1.1/binr/r2r/ |
H A D | run.c | 940 if (regexp_out && !r_regex_match (regexp_out, "e", out->out)) { in r2r_check_cmd_test() 944 if (regexp_err && !r_regex_match (regexp_err, "e", out->err)) { in r2r_check_cmd_test()
|
H A D | r2r.c | 691 if (!r_regex_match (regexp, "e", output)) { in r_test_cmp_cmd_output()
|
/dports/devel/radare2/radare2-5.1.1/libr/util/regex/ |
H A D | regcomp.c | 143 R_API bool r_regex_match(const char *pattern, const char *flags, const char *text) { in r_regex_match() function
|
/dports/devel/radare2/radare2-5.1.1/libr/core/ |
H A D | cbin.c | 3307 if (f->name && r_regex_match ("ivar","e", f->name)) { in classdump_objc() 3343 if (f->name && r_regex_match ("ivar", "e", f->name)) { in classdump_java()
|
H A D | cmd_search.c | 1164 grep_find = !r_regex_match (rx, "e", opst);
|
H A D | cmd_debug.c | 845 if (r_regex_match (instr, "e", buf_asm)) { in step_until_inst()
|