Home
last modified time | relevance | path

Searched refs:class_descriptor (Results 1 – 8 of 8) sorted by relevance

/tools/dexter/slicer/export/slicer/
Ddex_ir_builder.h33 const char* class_descriptor; member
37 MethodId(const char* class_descriptor, const char* method_name, const char* signature = nullptr)
38 : class_descriptor(class_descriptor), method_name(method_name), signature(signature) { in class_descriptor() function
39 assert(class_descriptor != nullptr); in class_descriptor()
Dreader.h62 dex::u4 FindClassIndex(const char* class_descriptor) const;
Ddex_ir.h344 String* class_descriptor = nullptr; member
/tools/dexter/slicer/
Ddex_ir_builder.cc25 return ::strcmp(class_descriptor, method_decl->parent->descriptor->c_str()) == 0 in Match()
32 auto ir_descriptor = FindAsciiString(method_id.class_descriptor); in FindMethod()
46 method_key.class_descriptor = ir_descriptor; in FindMethod()
Ddex_ir.cc58 method_key.class_descriptor = method->decl->parent->descriptor; in GetKey()
65 return static_cast<uint32_t>(std::hash<void*>{}(method_key.class_descriptor) ^ in Hash()
71 return method_key.class_descriptor == method->decl->parent->descriptor && in Compare()
Dinstrumentation.cc150 builder.GetType(hook_method_id_.class_descriptor)); in Apply()
334 builder.GetType(hook_method_id_.class_descriptor)); in InjectArrayParamsHook()
389 builder.GetType(hook_method_id_.class_descriptor)); in Apply()
562 builder.GetType(detour_method_id_.class_descriptor)); in Apply()
Dreader.cc97 dex::u4 Reader::FindClassIndex(const char* class_descriptor) const { in FindClassIndex()
103 if (strcmp(class_descriptor, descriptor) == 0) { in FindClassIndex()
/tools/dexter/dexter/
Dexperimental.cc450 auto class_descriptor = decl->parent->descriptor; in StressFindMethod() local
451 ir::MethodId method_id(class_descriptor->c_str(), decl->name->c_str(), signature.c_str()); in StressFindMethod()