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

1 2 3

  /art/runtime/mirror/
stack_trace_element.cc 32 Handle<String> method_name,
39 trace->Init<true>(declaring_class.Get(), method_name.Get(), file_name.Get(), line_number);
41 trace->Init<false>(declaring_class.Get(), method_name.Get(), file_name.Get(), line_number);
49 ObjPtr<String> method_name,
55 method_name); local
throwable.cc 141 ObjPtr<String> method_name = ste->GetMethodName(); local
145 method_name != nullptr ? method_name->ToModifiedUtf8().c_str() : "<unknown method>",
  /external/libchrome/mojo/public/cpp/bindings/
message_dumper.h 25 const char* method_name);
30 const char* method_name; member in struct:mojo::MessageDumper::MessageEntry
message.h 220 const char* method_name() const { return method_name_; } function
221 void set_method_name(const char* method_name) { method_name_ = method_name; }
  /external/grpc-grpc/src/compiler/
php_generator.cc 147 grpc::string method_name = local
node_generator.cc 194 grpc::string method_name = local
197 out->Print("$method_name$: ", "method_name", method_name);
csharp_generator.cc 490 std::string method_name = method->name(); local
492 method_name += "Async"; // prevent name clash with synchronous method.
502 "methodname", method_name, "request_maybe",
512 "methodname", method_name, "request_maybe",
523 "methodname", method_name, "request_maybe",
  /external/grpc-grpc/src/core/lib/transport/
service_config.cc 85 const char* method_name = nullptr; local
94 if (method_name != nullptr) return nullptr; // Duplicate.
96 method_name = child->value;
102 method_name == nullptr ? "*" : method_name);
  /external/perfetto/src/ipc/
client_impl.h 58 const std::string& method_name,
73 std::string method_name; member in struct:perfetto::ipc::ClientImpl::QueuedRequest
  /external/grpc-grpc/include/grpc/
grpc_security.h 290 full_qualified_method_name = ctx->service_url + '/' + ctx->method_name. */
291 const char* method_name; member in struct:__anon22908
  /external/libbrillo/brillo/dbus/
dbus_object.cc 64 std::string method_name = pair.first; local
65 VLOG(1) << "Exporting method: " << interface_name_ << "." << method_name; local
66 std::string export_error = "Failed exporting " + method_name + " method";
68 interface_name_, method_name, export_error, true);
72 interface_name_, method_name, method_handler, export_handler);
98 std::string method_name = pair.first; local
99 VLOG(1) << "Exporting method: " << interface_name_ << "." << method_name; local
103 interface_name_, method_name, method_handler)) {
104 LOG(FATAL) << "Failed exporting " << method_name << " method";
135 std::string method_name = method_call->GetMember() local
158 << method_name; local
    [all...]
  /art/compiler/jit/
jit_logger.cc 54 std::string method_name = method->PrettyMethod(); local
62 << method_name
96 // | method_name'\0' | +--> one jitted method
155 // sizeof(PerfJitCodeLoad) + method_name.size() + compiled code size.
271 std::string method_name = method->PrettyMethod(); local
276 jit_code.size_ = sizeof(jit_code) + method_name.size() + 1 + code_size;
292 UNUSED(jit_dump_file_->WriteFully(method_name.c_str(), method_name.size() + 1));
  /art/libdexfile/dex/
dex_file-inl.h 184 const std::string& method_name,
214 << " for method " << method_name; local
  /art/runtime/interpreter/
interpreter_common.h 626 const char* method_name = dex_file->GetMethodName(method_id); local
633 (strcmp(method_name, "<init>") == 0)) {
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/util/
BCELFactory.java 163 final String method_name = i.getMethodName(_cp); local
166 _out.println("il.append(_factory.createInvoke(\"" + class_name + "\", \"" + method_name
ConstantHTML.java 112 final String method_name = constant_pool.constantToString(name_index, local
114 final String html_method_name = Class2HTML.toHTML(method_name);
141 + getMethodNumber(method_name + signature) + "\" TARGET=Code>"
  /external/grpc-grpc/src/core/lib/security/transport/
client_auth_filter.cc 77 if (auth_md_context->method_name != nullptr) {
78 gpr_free(const_cast<char*>(auth_md_context->method_name));
79 auth_md_context->method_name = nullptr;
132 char* method_name = nullptr; local
138 method_name = gpr_strdup("");
140 method_name = gpr_strdup("");
143 method_name = gpr_strdup(last_slash + 1);
156 auth_md_context->method_name = method_name;
  /external/grpc-grpc/test/core/end2end/tests/
load_reporting_hook.cc 47 char* method_name; member in struct:__anon23343
115 const char* method_name, const char* request_msg, const char* response_msg,
142 grpc_slice_from_static_string(method_name),
281 const char* method_name = "/gRPCFTW"; local
298 request_response_with_payload(config, f, method_name, request_msg,
  /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/swiftshader/third_party/llvm-7.0/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/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:__anon49713
202 strncmp(begin, supported_methods[i].method_name,
  /art/compiler/dex/
inline_method_analyser.cc 515 const char* method_name = ref.dex_file->GetMethodName(method_id); local
518 return strncmp(method_name, "access$", strlen("access$")) == 0 ||
519 strncmp(method_name, "-", strlen("-")) == 0;
  /art/tools/jvmti-agents/breakpoint-logger/
breakpoint_logger.cc 30 std::string method_name; member in struct:breakpoint_logger::SingleBreakpointTarget
52 jmethodID m = env->GetMethodID(k, target.method_name.c_str(), target.method_sig.c_str());
55 m = env->GetStaticMethodID(k, target.method_name.c_str(), target.method_sig.c_str());
314 target->method_name = SubstrOf(option, 0, sig_start);

Completed in 1315 milliseconds

1 2 3