Home
last modified time | relevance | path

Searched refs:LoadFilterBytecode (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/perfetto/src/protozero/filtering/
H A Dmessage_filter_unittest.cc93 ASSERT_TRUE(flt.LoadFilterBytecode(bytecode.data(), bytecode.size())); in TEST()
182 ASSERT_TRUE(flt.LoadFilterBytecode(bytecode.data(), bytecode.size())); in TEST()
249 ASSERT_TRUE(flt.LoadFilterBytecode(bytecode.data(), bytecode.size())); in TEST()
314 ASSERT_TRUE(flt.LoadFilterBytecode(bytecode.data(), bytecode.size())); in TEST()
345 ASSERT_TRUE(flt.LoadFilterBytecode(bytecode.data(), bytecode.size())); in TEST()
893 filt.LoadFilterBytecode(kFilterBytecode, sizeof(kFilterBytecode))); in TEST()
H A Dmessage_filter.h58 bool LoadFilterBytecode(const void* filter_data, size_t len);
93 bool LoadFilterBytecode(const void* filter_data, size_t len) { in LoadFilterBytecode() function
94 return config_.LoadFilterBytecode(filter_data, len); in LoadFilterBytecode()
H A Dmessage_filter_fuzzer.cc88 PERFETTO_CHECK(filter.LoadFilterBytecode(kValidFilter, sizeof(kValidFilter))); in FuzzMessageFilter()
H A Dmessage_filter_benchmark.cc37 filt.LoadFilterBytecode(filter.data(), filter.size()); in BM_ProtozeroMessageFilter()
H A Dmessage_filter.cc81 bool MessageFilter::Config::LoadFilterBytecode(const void* filter_data, in LoadFilterBytecode() function in protozero::MessageFilter::Config
/aosp_15_r20/external/perfetto/src/tools/proto_filter/
H A Dproto_filter.cc298 if (!msg_filter.LoadFilterBytecode(data, filter_data.size())) { in Main()
/aosp_15_r20/external/perfetto/src/tracing/service/
H A Dtracing_service_impl.cc913 if (!trace_filter->LoadFilterBytecode(bytecode.data(), bytecode.size())) { in EnableTracing()