/system/unwinding/libunwindstack/tests/ |
D | DexFilesTest.cpp | 179 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/ |
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/extras/perf2cfg/perf2cfg/ |
D | analyze.py | 194 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]
|
D | edit.py | 182 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/ |
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 | 307 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()
|
D | ast_cpp.h | 239 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/ |
D | BnLoggableInterface.h | 18 std::string method_name; member
|
D | BpLoggableInterface.h | 24 std::string method_name; member
|
/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-ndk-source/gen/include/aidl/android/aidl/loggable/ |
D | BnLoggableInterface.h | 18 std::string method_name; member
|
D | BpLoggableInterface.h | 24 std::string method_name; member
|
/system/extras/perf2cfg/doc/ |
D | FSM.dot | 18 [ 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/ |
D | BnLoggableInterface.h | 22 std::string method_name; member
|
D | BpLoggableInterface.h | 24 std::string method_name; member
|
/system/unwinding/libunwindstack/ |
D | DexFile.cpp | 129 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()
|
D | DexFile.h | 49 bool GetFunctionName(uint64_t dex_pc, SharedString* method_name, uint64_t* method_offset);
|
/system/netd/include/binder_utils/ |
D | BinderUtil.h | 69 output.append(log.method_name + "("s); in binderCallLogFn()
|
/system/tools/aidl/tests/ |
D | aidl_test_client_loggable_interface.cpp | 95 EXPECT_EQ("LogThis", log.method_name); in TEST_F()
|
D | aidl_test_client_ndk_loggable_interface.cpp | 100 EXPECT_EQ("LogThis", log.method_name); in TEST_F()
|
/system/bt/gd/rust/linux/dbus_projection/dbus_macros/src/ |
D | lib.rs | 79 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/ |
D | ILoggableInterface.cpp | 224 _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/ |
D | ILoggableInterface.cpp | 144 _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/ |
D | ILoggableInterface.cpp | 144 _transaction_log.method_name = "LogThis"; in _aidl_onTransact() 379 _transaction_log.method_name = "LogThis"; in LogThis()
|