/system/core/libunwindstack/tests/ |
D | DexFilesTest.cpp | 160 std::string method_name = "nothing"; in TEST_F() local 164 dex_files_->GetMethodInformation(maps_.get(), info, 0, &method_name, &method_offset); in TEST_F() 165 EXPECT_EQ("nothing", method_name); in TEST_F() 170 std::string method_name = "nothing"; in TEST_F() local 178 dex_files_->GetMethodInformation(maps_.get(), info, 0x300100, &method_name, &method_offset); in TEST_F() 179 EXPECT_EQ("Main.<init>", method_name); in TEST_F() 186 std::string method_name = "nothing"; in TEST_F() local 194 dex_files_->GetMethodInformation(maps_.get(), info, 0x301102, &method_name, &method_offset); in TEST_F() 195 EXPECT_EQ("Main.<init>", method_name); in TEST_F() 200 std::string method_name = "nothing"; in TEST_F() local [all …]
|
/system/incremental_delivery/libdataloader/ |
D | JNIHelpers.h | 28 static inline jmethodID GetMethodIDOrDie(JNIEnv* env, jclass clazz, const char* method_name, in GetMethodIDOrDie() argument 30 jmethodID res = env->GetMethodID(clazz, method_name, method_signature); in GetMethodIDOrDie() 31 LOG_ALWAYS_FATAL_IF(res == NULL, "Unable to find method %s", method_name); in GetMethodIDOrDie() 35 static inline jmethodID GetStaticMethodIDOrDie(JNIEnv* env, jclass clazz, const char* method_name, in GetStaticMethodIDOrDie() argument 37 jmethodID res = env->GetStaticMethodID(clazz, method_name, method_signature); in GetStaticMethodIDOrDie() 38 LOG_ALWAYS_FATAL_IF(res == NULL, "Unable to find static method %s", method_name); in GetStaticMethodIDOrDie()
|
/system/tools/aidl/build/ |
D | aidl_to_jni.py | 51 class_name, method_name, args, return_type = aidl_signature 56 jni_signature += method_name
|
/system/tools/aidl/ |
D | ast_cpp.cpp | 290 const string& method_name, in MethodImpl() argument 294 method_name_(method_name), in MethodImpl() 298 method_name_ = class_name + "::" + method_name; in MethodImpl() 358 MethodCall::MethodCall(const std::string& method_name, in MethodCall() argument 360 : MethodCall(method_name, ArgList{single_argument}) {} in MethodCall() 362 MethodCall::MethodCall(const std::string& method_name, in MethodCall() argument 364 : method_name_(method_name), in MethodCall()
|
D | ast_cpp.h | 235 const std::string& method_name, 286 MethodCall(const std::string& method_name, 288 MethodCall(const std::string& method_name, ArgList&& arg_list);
|
/system/core/libunwindstack/ |
D | DexFile.cpp | 79 bool DexFile::GetMethodInformation(uint64_t dex_offset, std::string* method_name, in GetMethodInformation() argument 85 *method_name = method_info.name; in GetMethodInformation()
|
D | DexFiles.cpp | 176 std::string* method_name, uint64_t* method_offset) { in GetMethodInformation() argument 191 dex_file->GetMethodInformation(dex_pc - addr, method_name, method_offset)) { in GetMethodInformation()
|
D | DexFile.h | 36 bool GetMethodInformation(uint64_t dex_offset, std::string* method_name, uint64_t* method_offset);
|
/system/core/libunwindstack/include/unwindstack/ |
D | DexFiles.h | 47 void GetMethodInformation(Maps* maps, MapInfo* info, uint64_t dex_pc, std::string* method_name,
|