Home
last modified time | relevance | path

Searched refs:method_name (Results 1 – 9 of 9) sorted by relevance

/system/core/libunwindstack/tests/
DDexFilesTest.cpp160 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/
DJNIHelpers.h28 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/
Daidl_to_jni.py51 class_name, method_name, args, return_type = aidl_signature
56 jni_signature += method_name
/system/tools/aidl/
Dast_cpp.cpp290 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()
Dast_cpp.h235 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/
DDexFile.cpp79 bool DexFile::GetMethodInformation(uint64_t dex_offset, std::string* method_name, in GetMethodInformation() argument
85 *method_name = method_info.name; in GetMethodInformation()
DDexFiles.cpp176 std::string* method_name, uint64_t* method_offset) { in GetMethodInformation() argument
191 dex_file->GetMethodInformation(dex_pc - addr, method_name, method_offset)) { in GetMethodInformation()
DDexFile.h36 bool GetMethodInformation(uint64_t dex_offset, std::string* method_name, uint64_t* method_offset);
/system/core/libunwindstack/include/unwindstack/
DDexFiles.h47 void GetMethodInformation(Maps* maps, MapInfo* info, uint64_t dex_pc, std::string* method_name,