HomeSort by relevance Sort by last modified time
    Searched refs:method_id (Results 1 - 25 of 73) sorted by null

1 2 3

  /art/tools/veridex/
hidden_api.cc 28 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_index); local
29 ss << dex_file.StringByTypeIdx(method_id.class_idx_)
31 << dex_file.GetMethodName(method_id)
32 << dex_file.GetMethodSignature(method_id).ToString();
resolver.cc 60 const DexFile::MethodId& method_id,
63 return strcmp(method_name, dex_file.GetMethodName(method_id)) == 0 &&
64 strcmp(type, dex_file.GetMethodSignature(method_id).ToString().c_str()) == 0;
68 const DexFile::MethodId& method_id,
71 return strcmp(method_name, dex_file.GetMethodName(method_id)) == 0 &&
72 dex_file.GetMethodSignature(method_id) == signature;
284 const DexFile::MethodId& method_id = dex_file_.GetMethodId(method_index); local
285 VeriClass* kls = GetVeriClass(method_id.class_idx_);
291 dex_file_.GetMethodName(method_id),
292 dex_file_.GetMethodSignature(method_id));
    [all...]
  /art/runtime/
jni_internal.h 53 static inline ArtMethod* DecodeArtMethod(jmethodID method_id) {
54 return reinterpret_cast<ArtMethod*>(method_id);
imtable-inl.h 49 const DexFile::MethodId& method_id = dex_file->GetMethodId(method->GetDexMethodIndex()); local
52 *class_hash = ComputeModifiedUtf8Hash(dex_file->GetMethodDeclaringClassDescriptor(method_id));
55 *name_hash = ComputeModifiedUtf8Hash(dex_file->GetMethodName(method_id));
57 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
  /art/compiler/driver/
dex_compilation_unit.h 73 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); local
74 return dex_file_->GetMethodShorty(method_id);
78 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); local
79 return dex_file_->GetMethodShorty(method_id, shorty_len);
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
jitprofiling.h 138 unsigned int method_id; member in struct:_iJIT_Method_Id
152 unsigned int method_id; member in struct:_iJIT_Method_NIDS
178 unsigned int method_id; member in struct:_iJIT_Method_Load
jitprofiling.c 175 if ( ((piJIT_Method_NIDS) EventSpecificData)->method_id <= 999 )
213 if ( ((piJIT_Method_NIDS) EventSpecificData)->method_id <= 999 )
234 if ( ((piJIT_Method_Load) EventSpecificData)->method_id <= 999 )
  /external/v8/src/third_party/vtune/
jitprofiling.h 177 unsigned int method_id; member in struct:_iJIT_Method_Id
191 unsigned int method_id; member in struct:_iJIT_Method_NIDS
217 unsigned int method_id; member in struct:_iJIT_Method_Load
jitprofiling.cc 209 if ( ((piJIT_Method_NIDS) EventSpecificData)->method_id <= 999 )
244 if ( ((piJIT_Method_NIDS) EventSpecificData)->method_id <= 999 )
262 if ( ((piJIT_Method_Load) EventSpecificData)->method_id <= 999 )
  /external/libmojo/base/android/linker/
linker_jni.cc 88 // On success, return true and set |*method_id|.
93 jmethodID* method_id) {
94 *method_id = env->GetStaticMethodID(clazz, method_name, method_sig);
95 if (!*method_id) {
99 LOG_INFO("Found ID %p for static method '%s'", *method_id, method_name);
  /art/dexlayout/
dex_visualize.cc 163 void DumpMethodId(const dex_ir::MethodId* method_id, int class_index) {
164 DumpAddressRange(method_id, class_index);
165 if (method_id == nullptr) {
168 DumpTypeId(method_id->Class(), class_index);
169 DumpProtoId(method_id->Proto(), class_index);
170 DumpStringId(method_id->Name(), class_index);
199 for (dex_ir::MethodId* method_id : fixups->MethodIds()) {
200 DumpMethodId(method_id, class_index);
dexlayout.cc 437 dex_ir::MethodId* method_id = header->GetCollections().GetMethodId(index); local
438 const char* name = method_id->Name()->Data();
439 std::string type_descriptor = GetSignatureForProtoId(method_id->Proto());
440 const char* back_descriptor = method_id->Class()->GetStringId()->Data();
470 dex_ir::MethodId* method_id = header->GetCollections().GetMethodId(index); local
471 const char* name = method_id->Name()->Data();
472 std::string type_descriptor = GetSignatureForProtoId(method_id->Proto());
473 const char* back_descriptor = method_id->Class()->GetStringId()->Data();
564 dex_ir::MethodId* method_id = data->GetMethodId(); local
565 fputs(method_id->Name()->Data(), out_file_)
755 const dex_ir::MethodId* method_id = method->GetMethodId(); local
766 const dex_ir::MethodId* method_id = parameter->GetMethodId(); local
1042 dex_ir::MethodId* method_id = header_->GetCollections().GetMethodId(idx); local
1185 dex_ir::MethodId* method_id = header_->GetCollections().GetMethodId(idx); local
1639 const dex_ir::MethodId* method_id = method->GetMethodId(); local
1747 const dex_ir::MethodId *method_id = method->GetMethodId(); local
    [all...]
  /external/perfetto/src/ipc/
wire_protocol.proto 40 optional uint32 method_id = 2; // BindServiceReply.method.id.
host_impl.cc 150 uint32_t method_id = 1; // method ids start at index 1. local
154 method_info->set_id(method_id++);
174 const uint32_t method_id = req.method_id(); local
175 if (method_id == 0 || method_id > methods.size())
178 const ServiceDescriptor::Method& method = methods[method_id - 1];
  /external/llvm/tools/llvm-jitlistener/
llvm-jitlistener.cpp 55 ReportedDebugFuncs[msg->method_id];
57 outs() << "Method load [" << msg->method_id << "]: " << msg->method_name
68 ReportedDebugFuncs[msg->method_id].push_back(loc);
  /tools/dexter/slicer/
dex_ir_builder.cc 30 EncodedMethod* Builder::FindMethod(const MethodId& method_id) const {
32 auto ir_descriptor = FindAsciiString(method_id.class_descriptor);
33 auto ir_method_name = FindAsciiString(method_id.method_name);
39 auto ir_prototype = FindPrototype(method_id.signature);
  /tools/dexter/slicer/export/slicer/
dex_ir_builder.h 71 EncodedMethod* FindMethod(const MethodId& method_id) const;
  /art/libdexfile/dex/
dex_file-inl.h 92 inline const char* DexFile::GetMethodDeclaringClassDescriptor(const MethodId& method_id) const {
93 const DexFile::TypeId& type_id = GetTypeId(method_id.class_idx_);
97 inline const Signature DexFile::GetMethodSignature(const MethodId& method_id) const {
98 return Signature(this, GetProtoId(method_id.proto_idx_));
105 inline const char* DexFile::GetMethodName(const MethodId& method_id) const {
106 return StringDataByIdx(method_id.name_idx_);
113 inline const char* DexFile::GetMethodShorty(const MethodId& method_id) const {
114 return StringDataByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_);
117 inline const char* DexFile::GetMethodShorty(const MethodId& method_id, uint32_t* length) const {
119 return StringDataAndUtf16LengthByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_, length)
    [all...]
dex_file.h 597 uint32_t GetIndexForMethodId(const MethodId& method_id) const {
598 CHECK_GE(&method_id, method_ids_) << GetLocation();
599 CHECK_LT(&method_id, method_ids_ + header_->method_ids_size_) << GetLocation();
600 return &method_id - method_ids_;
609 const char* GetMethodDeclaringClassDescriptor(const MethodId& method_id) const;
612 const ProtoId& GetMethodPrototype(const MethodId& method_id) const {
613 return GetProtoId(method_id.proto_idx_);
617 const Signature GetMethodSignature(const MethodId& method_id) const;
623 const char* GetMethodName(const MethodId& method_id) const;
629 const char* GetMethodShorty(const MethodId& method_id) const
    [all...]
  /art/dalvikvm/
dalvikvm.cc 32 static bool IsMethodPublic(JNIEnv* env, jclass c, jmethodID method_id) {
33 ScopedLocalRef<jobject> reflected(env, env->ToReflectedMethod(c, method_id, JNI_FALSE));
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_call.h 214 // completion queue, using the given `method_id`.
220 int method_id, HandleRequestFunction handle_request_function,
229 grpc_service->RequestAsyncUnary(method_id, &call->ctx_, &call->request,
  /bionic/libc/kernel/uapi/rdma/
rdma_user_ioctl.h 44 __u16 method_id; member in struct:ib_uverbs_ioctl_hdr
  /external/kernel-headers/original/uapi/rdma/
rdma_user_ioctl.h 74 __u16 method_id; member in struct:ib_uverbs_ioctl_hdr
  /art/runtime/jdwp/
jdwp_handler.cc 49 std::string DescribeMethod(const MethodId& method_id) {
50 return StringPrintf("%#" PRIx64 " (%s)", method_id, Dbg::GetMethodName(method_id).c_str());
90 RefTypeId class_id, MethodId method_id, bool is_constructor)
98 VLOG(jdwp) << StringPrintf(" class_id=%#" PRIx64 " method_id=%#" PRIx64 " %s.%s",
99 class_id, method_id, Dbg::GetClassName(class_id).c_str(),
100 Dbg::GetMethodName(method_id).c_str());
119 class_id, method_id, arg_count,
655 MethodId method_id = request->ReadMethodId(); local
657 return RequestInvoke(state, request, thread_id, 0, class_id, method_id, false)
672 MethodId method_id = request->ReadMethodId(); local
708 MethodId method_id = request->ReadMethodId(); local
719 MethodId method_id = request->ReadMethodId(); local
730 MethodId method_id = request->ReadMethodId(); local
753 MethodId method_id = request->ReadMethodId(); local
858 MethodId method_id = request->ReadMethodId(); local
    [all...]
  /art/runtime/dex/
art_dex_file_loader_test.cc 130 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex()); local
131 const char* name = raw->StringDataByIdx(method_id.name_idx_);
133 std::string signature(raw->GetMethodSignature(method_id).ToString());
203 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex()); local
205 const char* name = raw->StringDataByIdx(method_id.name_idx_);
208 std::string signature(raw->GetMethodSignature(method_id).ToString());

Completed in 448 milliseconds

1 2 3