Home
last modified time | relevance | path

Searched refs:method_id (Results 1 – 5 of 5) sorted by relevance

/tools/dexter/slicer/
Ddex_ir_builder.cc30 EncodedMethod* Builder::FindMethod(const MethodId& method_id) const { in FindMethod()
32 auto ir_descriptor = FindAsciiString(method_id.class_descriptor); in FindMethod()
33 auto ir_method_name = FindAsciiString(method_id.method_name); in FindMethod()
39 auto ir_prototype = FindPrototype(method_id.signature); in FindMethod()
Dinstrumentation.cc751 bool MethodInstrumenter::InstrumentMethod(const ir::MethodId& method_id) { in InstrumentMethod() argument
754 auto ir_method = builder.FindMethod(method_id); in InstrumentMethod()
/tools/dexter/slicer/export/slicer/
Ddex_ir_builder.h71 EncodedMethod* FindMethod(const MethodId& method_id) const;
Dinstrumentation.h229 bool InstrumentMethod(const ir::MethodId& method_id);
/tools/dexter/dexter/
Dexperimental.cc450 ir::MethodId method_id(class_descriptor->c_str(), decl->name->c_str(), signature.c_str()); in StressFindMethod() local
451 SLICER_CHECK(builder.FindMethod(method_id) == ir_method.get()); in StressFindMethod()