Searched refs:squelch (Results 1 - 2 of 2) sorted by relevance

/fuchsia/zircon/system/utest/trace/
H A Dfixture.cpp283 auto squelch = new FixtureSquelch; local
284 if (regcomp(&squelch->regex, regex_str, REG_EXTENDED | REG_NEWLINE) != 0) {
287 *out_squelch = squelch;
291 void fixture_destroy_squelch(FixtureSquelch* squelch) { argument
292 regfree(&squelch->regex);
293 delete squelch;
296 fbl::String fixture_squelch(FixtureSquelch* squelch, const char* str) { argument
302 size_t match_count = squelch->regex.re_nsub + 1;
304 if (regexec(&squelch->regex, cur, match_count, match, 0) != 0) {
329 FixtureSquelch* squelch; local
[all...]
H A Dfixture.h40 // The term "squelch" derives from radio circuitry used to remove noise.
56 void fixture_destroy_squelch(FixtureSquelch* squelch);
57 fbl::String fixture_squelch(FixtureSquelch* squelch, const char* str);

Completed in 22 milliseconds