Lines Matching refs:BPFModule
41 void BPFModule::initialize_rw_engine() { in initialize_rw_engine()
46 void BPFModule::cleanup_rw_engine() { in cleanup_rw_engine()
247 string BPFModule::make_reader(Module *mod, Type *type) { in make_reader()
319 string BPFModule::make_writer(Module *mod, Type *type) { in make_writer()
380 unique_ptr<ExecutionEngine> BPFModule::finalize_rw(unique_ptr<Module> m) { in finalize_rw()
397 int BPFModule::annotate() { in annotate()
429 table.key_sscanf = std::bind(&BPFModule::sscanf, this, in annotate()
431 table.leaf_sscanf = std::bind(&BPFModule::sscanf, this, in annotate()
433 table.key_snprintf = std::bind(&BPFModule::snprintf, this, in annotate()
436 std::bind(&BPFModule::snprintf, this, make_writer(&*m, leaf_type), in annotate()
448 StatusTuple BPFModule::sscanf(string fn_name, const char *str, void *val) { in annotate()
461 StatusTuple BPFModule::snprintf(string fn_name, char *str, size_t sz, in annotate()