HomeSort by relevance Sort by last modified time
    Searched defs:method_name (Results 1 - 25 of 34) sorted by null

1 2

  /art/runtime/mirror/
stack_trace_element.cc 44 Handle<String> method_name,
51 trace->Init<true>(declaring_class.Get(), method_name.Get(), file_name.Get(), line_number);
53 trace->Init<false>(declaring_class.Get(), method_name.Get(), file_name.Get(), line_number);
61 ObjPtr<String> method_name,
67 method_name); local
throwable.cc 136 auto* method_name = ste->GetMethodName(); local
140 method_name != nullptr ? method_name->ToModifiedUtf8().c_str() : "<unknown method>",
  /external/libbrillo/brillo/dbus/
dbus_object.cc 42 std::string method_name = pair.first; local
43 VLOG(1) << "Exporting method: " << interface_name_ << "." << method_name; local
44 std::string export_error = "Failed exporting " + method_name + " method";
46 interface_name_, method_name, export_error, true);
50 interface_name_, method_name, method_handler, export_handler);
76 std::string method_name = pair.first; local
77 VLOG(1) << "Exporting method: " << interface_name_ << "." << method_name; local
81 interface_name_, method_name, method_handler)) {
82 LOG(FATAL) << "Failed exporting " << method_name << " method";
113 std::string method_name = method_call->GetMember() local
136 << method_name; local
    [all...]
  /frameworks/base/tools/aapt2/java/
ProguardRules.cpp 68 void AddMethod(size_t line_number, const std::string& method_name) {
69 keep_set_->AddMethod(Source(source_.path, line_number), method_name); local
  /art/compiler/jit/
jit_logger.cc 58 std::string method_name = method->PrettyMethod(); local
66 << method_name
100 // | method_name'\0' | +--> one jitted method
159 // sizeof(PerfJitCodeLoad) + method_name.size() + compiled code size.
278 std::string method_name = method->PrettyMethod(); local
283 jit_code.size_ = sizeof(jit_code) + method_name.size() + 1 + code_size;
299 UNUSED(jit_dump_file_->WriteFully(method_name.c_str(), method_name.size() + 1));
  /art/runtime/interpreter/
interpreter.cc 469 const char* method_name = dex_file->GetMethodName(method_id); local
474 (strcmp(method_name, "<init>") == 0)) {
  /art/runtime/openjdkjvmti/
ti_method.cc 168 const char* method_name = art_method->GetName(); local
169 if (method_name == nullptr) {
170 method_name = "<error>";
173 name_copy = CopyString(env, method_name, &ret);
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
jitprofiling.h 158 char* method_name; member in struct:_iJIT_Method_NIDS
183 char* method_name; member in struct:_iJIT_Method_Load
  /external/protobuf/ruby/ext/google/protobuf_c/
message.c 128 VALUE method_name, method_str; local
139 method_name = argv[0];
140 if (!SYMBOL_P(method_name)) {
143 method_str = rb_id2str(SYM2ID(method_name));
  /external/v8/src/third_party/vtune/
jitprofiling.h 197 char* method_name; member in struct:_iJIT_Method_NIDS
222 char* method_name; member in struct:_iJIT_Method_Load
  /external/webrtc/webrtc/examples/peerconnection/server/
data_socket.cc 189 const char* method_name; member in struct:__anon37047
202 strncmp(begin, supported_methods[i].method_name,
  /art/compiler/dex/
inline_method_analyser.cc 511 const char* method_name = ref.dex_file->GetMethodName(method_id); local
514 return strncmp(method_name, "access$", strlen("access$")) == 0 ||
515 strncmp(method_name, "-", strlen("-")) == 0;
  /art/runtime/entrypoints/
entrypoint_utils-inl.h 100 const char* method_name = dex_file->GetMethodName(method_id); local
103 inlined_method = klass->FindDeclaredDirectMethod(method_name, signature, kRuntimePointerSize);
105 inlined_method = klass->FindDeclaredVirtualMethod(method_name, signature, kRuntimePointerSize);
109 << method_name << signature << " declared. "
    [all...]
  /external/ppp/pppd/
ccp.c 219 static char *method_name __P((ccp_options *, ccp_options *));
1360 method_name(opt, opt2) function
    [all...]
  /art/compiler/optimizing/
optimizing_compiler.cc 240 static bool IsVerboseMethod(CompilerDriver* compiler_driver, const char* method_name) {
244 return compiler_driver->GetCompilerOptions().IsVerboseMethod(method_name);
250 if (kStringFilterEmpty || strstr(method_name, kStringFilter) != nullptr) {
1095 std::string method_name = dex_file.PrettyMethod(method_idx); local
    [all...]
  /art/dexdump/
dexdump.cc 692 const char* method_name = pDexFile->StringDataByIdx(pMethodId.name_idx_); local
693 fprintf(gOutFile, "Annotations on method #%u '%s'\n", method_idx, method_name);
703 const char* method_name = pDexFile->StringDataByIdx(pMethodId.name_idx_); local
704 fprintf(gOutFile, "Annotations on method #%u '%s' parameters\n", method_idx, method_name);
1661 const char* method_name = pDexFile->StringDataByIdx(method_name_idx); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
connection.c 1527 char* method_name; local
    [all...]
  /external/flatbuffers/src/
idl_gen_general.cpp 791 std::string method_name = FunctionStart('G') + "etRootAs" + struct_def.name; local
793 method_name;
797 code += "{ return " + method_name + "(_bb, new " + struct_def.name+ "()); }\n";
    [all...]
  /external/v8/src/
messages.cc 543 Handle<Object> method_name = call_site->GetMethodName(); local
559 if (IsNonEmptyString(method_name)) {
560 Handle<String> method_string = Handle<String>::cast(method_name);
570 if (IsNonEmptyString(method_name)) {
571 builder->AppendString(Handle<String>::cast(method_name));
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
prdbg.c 2300 char *method_name; local
2377 char *method_name; local
    [all...]
  /art/compiler/jni/
jni_compiler_test.cc 238 const char* method_name,
247 ArtMethod* method = direct ? c->FindDirectMethod(method_name, method_sig, pointer_size) :
248 c->FindVirtualMethod(method_name, method_sig, pointer_size);
249 ASSERT_TRUE(method != nullptr) << method_name << " " << method_sig;
257 << method_name << " " << method_sig;
270 const char* method_name = method_name_str.c_str(); local
272 CompileForTest(class_loader, direct, method_name, method_sig);
282 const char* method_name = method_name_str.c_str(); local
290 CompileForTest(class_loader_, direct, method_name, method_sig);
301 ASSERT_TRUE(jklass_ != nullptr) << method_name << " " << method_sig
    [all...]
  /art/dexlayout/
dexlayout.cc 753 const char* method_name = method_id->Name()->Data(); local
754 fprintf(out_file_, "Annotations on method #%u '%s'\n", method_idx, method_name);
764 const char* method_name = method_id->Name()->Data(); local
765 fprintf(out_file_, "Annotations on method #%u '%s' parameters\n", method_idx, method_name);
    [all...]
  /art/runtime/
dex_file_verifier.cc 146 // Gets constructor flags based on the |method_name|. Returns true if
147 // method_name is either <clinit> or <init> and sets
150 // |method_name| is valid.
151 bool GetConstructorFlagsForMethodName(const char* method_name,
153 if (method_name[0] != '<') {
157 if (strcmp(method_name + 1, "clinit>") == 0) {
161 if (strcmp(method_name + 1, "init>") == 0) {
690 const char* method_name; local
691 if (!FindMethodName(idx, begin_, header_, &method_name, &error_msg)) {
697 if (!GetConstructorFlagsForMethodName(method_name, &constructor_flags_by_name))
2946 std::string method_name = GetStringOrError(begin, header, method_id->name_idx_); local
    [all...]
  /art/runtime/verifier/
method_verifier.cc 738 const char* method_name = dex_file_->StringDataByIdx(method_id.name_idx_); local
739 bool instance_constructor_by_name = strcmp("<init>", method_name) == 0;
740 bool static_constructor_by_name = strcmp("<clinit>", method_name) == 0;
4367 const char* method_name = method->GetName(); local
    [all...]
  /art/oatdump/
oatdump.cc 1131 std::string method_name = dex_file.GetMethodName(dex_file.GetMethodId(dex_method_idx)); local
    [all...]

Completed in 1348 milliseconds

1 2