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

1 2

  /art/compiler/driver/
dex_compilation_unit.h 72 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); local
73 return dex_file_->GetMethodShorty(method_id);
77 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); local
78 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 )
IntelJITEventListener.cpp 84 Result.method_id = Wrapper.iJIT_GetNewMethodID();
168 MethodIDs[(void*)Addr] = FunctionMessage.method_id;
  /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/chromium-trace/catapult/third_party/gsutil/gslib/third_party/storage_apitools/
storage_v1_client.py 77 method_id=u'storage.bucketAccessControls.delete',
89 method_id=u'storage.bucketAccessControls.get',
101 method_id=u'storage.bucketAccessControls.insert',
113 method_id=u'storage.bucketAccessControls.list',
125 method_id=u'storage.bucketAccessControls.patch',
137 method_id=u'storage.bucketAccessControls.update',
240 method_id=u'storage.buckets.delete',
252 method_id=u'storage.buckets.get',
264 method_id=u'storage.buckets.insert',
276 method_id=u'storage.buckets.list'
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/storage/
storage_v1_client.py 53 method_id=u'storage.bucketAccessControls.delete',
65 method_id=u'storage.bucketAccessControls.get',
77 method_id=u'storage.bucketAccessControls.insert',
89 method_id=u'storage.bucketAccessControls.list',
101 method_id=u'storage.bucketAccessControls.patch',
113 method_id=u'storage.bucketAccessControls.update',
216 method_id=u'storage.buckets.delete',
228 method_id=u'storage.buckets.get',
240 method_id=u'storage.buckets.insert',
252 method_id=u'storage.buckets.list'
    [all...]
  /art/runtime/
dex_file_test.cc 245 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex()); local
246 const char* name = raw->StringDataByIdx(method_id.name_idx_);
248 std::string signature(raw->GetMethodSignature(method_id).ToString());
256 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex()); local
258 const char* name = raw->StringDataByIdx(method_id.name_idx_);
261 std::string signature(raw->GetMethodSignature(method_id).ToString());
267 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex()); local
269 const char* name = raw->StringDataByIdx(method_id.name_idx_);
272 std::string signature(raw->GetMethodSignature(method_id).ToString());
dex_file-inl.h 41 inline const Signature DexFile::GetMethodSignature(const MethodId& method_id) const {
42 return Signature(this, GetProtoId(method_id.proto_idx_));
dex_file.h 644 uint32_t GetIndexForMethodId(const MethodId& method_id) const {
645 CHECK_GE(&method_id, method_ids_) << GetLocation();
646 CHECK_LT(&method_id, method_ids_ + header_->method_ids_size_) << GetLocation();
647 return &method_id - method_ids_;
656 const char* GetMethodDeclaringClassDescriptor(const MethodId& method_id) const {
657 const DexFile::TypeId& type_id = GetTypeId(method_id.class_idx_);
662 const ProtoId& GetMethodPrototype(const MethodId& method_id) const {
663 return GetProtoId(method_id.proto_idx_);
667 const Signature GetMethodSignature(const MethodId& method_id) const;
670 const char* GetMethodName(const MethodId& method_id) const
    [all...]
art_method-inl.h 376 const DexFile::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex()); local
377 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
430 const DexFile::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex()); local
431 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
art_method.cc 63 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx); local
64 return Runtime::Current()->GetClassLinker()->ResolveString(*dex_file, method_id.name_idx_,
338 const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex()); local
339 const auto& proto_id = dex_file->GetMethodPrototype(method_id);
dex_file_verifier_test.cc 222 DexFile::MethodId* method_id = const_cast<DexFile::MethodId*>(&dex_file->GetMethodId(0));
223 method_id->class_idx_ = 0xFF;
232 DexFile::MethodId* method_id = const_cast<DexFile::MethodId*>(&dex_file->GetMethodId(0));
233 method_id->proto_idx_ = 0xFF;
242 DexFile::MethodId* method_id = const_cast<DexFile::MethodId*>(&dex_file->GetMethodId(0));
243 method_id->name_idx_ = 0xFF;
701 auto* method_id = const_cast<DexFile::MethodId*>(&dex_file->GetMethodId(method_idx));
702 method_id->name_idx_ = dex_file->NumStringIds();
    [all...]
debugger.h 367 static std::string GetMethodName(JDWP::MethodId method_id)
378 static void OutputLineTable(JDWP::RefTypeId ref_type_id, JDWP::MethodId method_id,
384 static void OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
390 static JDWP::JdwpError GetBytecodes(JDWP::RefTypeId class_id, JDWP::MethodId method_id,
615 JDWP::MethodId method_id, uint32_t arg_count,
    [all...]
  /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);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/testing/testclient/
fusiontables_v1_client.py 56 method_id=u'fusiontables.column.list',
96 method_id=u'fusiontables.column.listalternate',
  /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/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/
service_registry.py 295 method_id = method_description.get('id', '')
296 if method_id in self.__unelidable_request_methods:
325 def __ComputeUploadConfig(self, media_upload_config, method_id):
334 'method %s, using */*', method_id)
354 method_id = method_description['id']
362 method_id=method_id,
375 method_description.get('mediaUpload'), method_id)
command_registry.py 127 command_name = self.__GetCommandName(method_info.method_id)
132 description = 'Call the %s method.' % method_info.method_id
206 def __GetCommandName(self, method_id):
207 command_name = method_id
  /art/runtime/jdwp/
jdwp_handler.cc 46 std::string DescribeMethod(const MethodId& method_id) {
47 return StringPrintf("%#" PRIx64 " (%s)", method_id, Dbg::GetMethodName(method_id).c_str());
87 RefTypeId class_id, MethodId method_id, bool is_constructor)
95 VLOG(jdwp) << StringPrintf(" class_id=%#" PRIx64 " method_id=%#" PRIx64 " %s.%s",
96 class_id, method_id, Dbg::GetClassName(class_id).c_str(),
97 Dbg::GetMethodName(method_id).c_str());
116 class_id, method_id, arg_count,
647 MethodId method_id = request->ReadMethodId(); local
649 return RequestInvoke(state, request, thread_id, 0, class_id, method_id, false)
664 MethodId method_id = request->ReadMethodId(); local
700 MethodId method_id = request->ReadMethodId(); local
711 MethodId method_id = request->ReadMethodId(); local
722 MethodId method_id = request->ReadMethodId(); local
745 MethodId method_id = request->ReadMethodId(); local
851 MethodId method_id = request->ReadMethodId(); local
    [all...]
jdwp_main.cc 636 << Dbg::GetClassName(rhs.class_id) << "." << Dbg::GetMethodName(rhs.method_id)
642 return lhs.dex_pc == rhs.dex_pc && lhs.method_id == rhs.method_id &&
jdwp_expand_buf.cc 182 expandBufAddMethodId(buf, location.method_id);
jdwp_request.cc 148 location.method_id = ReadMethodId();
jdwp.h 87 MethodId method_id; member in struct:art::JDWP::JdwpLocation
414 std::string DescribeMethod(const MethodId& method_id) SHARED_REQUIRES(Locks::mutator_lock_);

Completed in 372 milliseconds

1 2