Home
last modified time | relevance | path

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

/system/unwinding/libunwindstack/tests/
DDexFilesTest.cpp179 SharedString method_name = "nothing"; in TEST_F() local
182 dex_files_->GetFunctionName(maps_.get(), 0, &method_name, &method_offset); in TEST_F()
183 EXPECT_EQ("nothing", method_name); in TEST_F()
188 SharedString method_name = "nothing"; in TEST_F() local
195 dex_files_->GetFunctionName(maps_.get(), 0x300100, &method_name, &method_offset); in TEST_F()
196 EXPECT_EQ("Main.<init>", method_name); in TEST_F()
203 SharedString method_name = "nothing"; in TEST_F() local
210 dex_files_->GetFunctionName(maps_.get(), 0x301102, &method_name, &method_offset); in TEST_F()
211 EXPECT_EQ("Main.<init>", method_name); in TEST_F()
216 SharedString 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/extras/perf2cfg/perf2cfg/
Danalyze.py194 def record_sample(self, method_name: str, relative_addr: int,
206 if method_name not in self.methods:
207 self.methods[method_name] = Method(method_name)
209 method = self.methods[method_name]
Dedit.py182 method_name = parse.parse_name(line)
184 self.set_isa(method_name)
186 if method_name in self.analyzer.methods:
187 self.update_current_method(method_name)
306 def update_current_method(self, method_name: str) -> None:
312 self.current_method = self.analyzer.methods[method_name]
/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.cpp307 const string& method_name, const std::vector<std::string>& template_params, in MethodImpl() argument
310 method_name_(method_name), in MethodImpl()
316 method_name_ = class_name + "<" + base::Join(template_params, ",") + ">::" + method_name; in MethodImpl()
318 method_name_ = class_name + "::" + method_name; in MethodImpl()
381 MethodCall::MethodCall(const std::string& method_name, in MethodCall() argument
383 : MethodCall(method_name, ArgList{single_argument}) {} in MethodCall()
385 MethodCall::MethodCall(const std::string& method_name, in MethodCall() argument
387 : method_name_(method_name), in MethodCall()
Dast_cpp.h239 const std::string& method_name, const std::vector<std::string>& template_params,
290 MethodCall(const std::string& method_name,
292 MethodCall(const std::string& method_name, ArgList&& arg_list);
/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-ndk_platform-source/gen/include/aidl/android/aidl/loggable/
DBnLoggableInterface.h18 std::string method_name; member
DBpLoggableInterface.h24 std::string method_name; member
/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-ndk-source/gen/include/aidl/android/aidl/loggable/
DBnLoggableInterface.h18 std::string method_name; member
DBpLoggableInterface.h24 std::string method_name; member
/system/extras/perf2cfg/doc/
DFSM.dot18 [ label = "method_name IN analyzer.methods" ];
20 [ label = "method_name NOT IN analyzer.methods" ];
/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-cpp-source/gen/include/android/aidl/loggable/
DBnLoggableInterface.h22 std::string method_name; member
DBpLoggableInterface.h24 std::string method_name; member
/system/unwinding/libunwindstack/
DDexFile.cpp129 bool DexFile::GetFunctionName(uint64_t dex_pc, SharedString* method_name, uint64_t* method_offset) { in GetFunctionName() argument
150 *method_name = it->second.name; in GetFunctionName()
DDexFile.h49 bool GetFunctionName(uint64_t dex_pc, SharedString* method_name, uint64_t* method_offset);
/system/netd/include/binder_utils/
DBinderUtil.h69 output.append(log.method_name + "("s); in binderCallLogFn()
/system/tools/aidl/tests/
Daidl_test_client_loggable_interface.cpp95 EXPECT_EQ("LogThis", log.method_name); in TEST_F()
Daidl_test_client_ndk_loggable_interface.cpp100 EXPECT_EQ("LogThis", log.method_name); in TEST_F()
/system/bt/gd/rust/linux/dbus_projection/dbus_macros/src/
Dlib.rs79 let method_name = method.sig.ident; in generate_dbus_exporter() localVariable
158 let ret = obj.lock().unwrap().#method_name(#method_args); in generate_dbus_exporter()
/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-cpp-source/gen/android/aidl/loggable/
DILoggableInterface.cpp224 _transaction_log.method_name = "LogThis"; in LogThis()
416 _transaction_log.method_name = "LogThis"; in onTransact()
/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-ndk_platform-source/gen/android/aidl/loggable/
DILoggableInterface.cpp144 _transaction_log.method_name = "LogThis"; in _aidl_onTransact()
379 _transaction_log.method_name = "LogThis"; in LogThis()
/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-ndk-source/gen/android/aidl/loggable/
DILoggableInterface.cpp144 _transaction_log.method_name = "LogThis"; in _aidl_onTransact()
379 _transaction_log.method_name = "LogThis"; in LogThis()