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

1 2 3

  /dalvik/dx/src/com/android/dex/
ProtoId.java 21 public final class ProtoId implements Comparable<ProtoId> {
27 public ProtoId(Dex dex, int shortyIndex, int returnTypeIndex, int parametersOffset) {
34 public int compareTo(ProtoId other) {
Dex.java 228 public List<ProtoId> protoIds() {
435 public ProtoId readProtoId() {
439 return new ProtoId(Dex.this, shortyIndex, returnTypeIndex, parametersOffset);
729 private final class ProtoIdTable extends AbstractList<ProtoId> implements RandomAccess {
730 @Override public ProtoId get(int index) {
  /dalvik/dx/src/com/android/dx/io/
DexIndexPrinter.java 23 import com.android.dex.ProtoId;
69 for (ProtoId protoId : dex.protoIds()) {
70 System.out.println("proto " + index + ": " + protoId);
  /art/runtime/
imtable-inl.h 57 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
dex_file-inl.h 99 inline const Signature DexFile::GetProtoSignature(const ProtoId& proto_id) const {
124 inline const char* DexFile::GetReturnTypeDescriptor(const ProtoId& proto_id) const {
129 const ProtoId& proto_id = GetProtoId(proto_idx);
dex_file.h 174 struct ProtoId {
181 DISALLOW_COPY_AND_ASSIGN(ProtoId);
673 const DexFile::ProtoId& signature) const;
679 const ProtoId& GetMethodPrototype(const MethodId& method_id) const {
687 const Signature GetProtoSignature(const ProtoId& proto_id) const;
770 const char* GetReturnTypeDescriptor(const ProtoId& proto_id) const;
778 // Returns the ProtoId at the specified index.
779 const ProtoId& GetProtoId(uint16_t idx) const {
784 uint16_t GetIndexForProtoId(const ProtoId& proto_id) const {
791 const ProtoId* FindProtoId(dex::TypeIndex return_type_idx
    [all...]
art_method-inl.h 302 inline const DexFile::ProtoId& ArtMethod::GetPrototype() {
311 const DexFile::ProtoId& proto = dex_file->GetMethodPrototype(
339 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
396 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
dex_file_verifier.h 163 const DexFile::ProtoId* CheckLoadProtoId(uint32_t idx, const char* error_fmt);
dex_file_verifier.cc 191 const DexFile::ProtoId* DexFileVerifier::CheckLoadProtoId(uint32_t idx, const char* err_string) {
    [all...]
dex_file_test.cc 480 const DexFile::ProtoId& to_find = java_lang_dex_file_->GetProtoId(i);
488 const DexFile::ProtoId* found =
500 const DexFile::ProtoId& signature = java_lang_dex_file_->GetProtoId(to_find.proto_idx_);
dex_file.cc 537 proto_ids_(reinterpret_cast<const ProtoId*>(base + header_->proto_ids_off_)),
718 const DexFile::ProtoId& signature) const {
826 const DexFile::ProtoId* DexFile::FindProtoId(dex::TypeIndex return_type_idx,
833 const DexFile::ProtoId& proto = GetProtoId(mid);
    [all...]
art_method.h 562 const DexFile::ProtoId& GetPrototype() REQUIRES_SHARED(Locks::mutator_lock_);
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 46 import com.android.dex.ProtoId;
207 public ProtoId adjust(ProtoId protoId) {
208 return new ProtoId(target,
209 adjustString(protoId.getShortyIndex()),
210 adjustType(protoId.getReturnTypeIndex()),
211 adjustTypeListOffset(protoId.getParametersOffset()));
DexMerger.java 28 import com.android.dex.ProtoId;
455 new IdMerger<ProtoId>(idsDefsOut) {
460 @Override ProtoId read(Dex.Section in, IndexMap indexMap, int index) {
471 @Override void write(ProtoId value) {
    [all...]
  /art/dexlayout/
dex_ir.h 55 class ProtoId;
83 virtual void Dispatch(const ProtoId* proto_id) = 0;
170 std::vector<std::unique_ptr<ProtoId>>& ProtoIds() { return proto_ids_.Collection(); }
225 ProtoId* GetProtoId(uint32_t index) {
333 CollectionVector<ProtoId> proto_ids_;
529 class ProtoId : public IndexedItem {
531 ProtoId(const StringId* shorty, const TypeId* return_type, TypeList* parameters)
534 ~ProtoId() OVERRIDE { }
549 DISALLOW_COPY_AND_ASSIGN(ProtoId);
576 MethodId(const TypeId* klass, const ProtoId* proto, const StringId* name
    [all...]
dex_verify.h 39 bool VerifyId(dex_ir::ProtoId* orig, dex_ir::ProtoId* output, std::string* error_msg);
dex_ir.cc 364 const DexFile::ProtoId& disk_proto_id = dex_file.GetProtoId(i);
368 ProtoId* proto_id = new ProtoId(GetStringId(disk_proto_id.shorty_idx_.index_),
371 proto_ids_.AddIndexedItem(proto_id, ProtoIdsOffset() + i * ProtoId::ItemSize(), i);
    [all...]
dex_visualize.cc 146 void DumpProtoId(const dex_ir::ProtoId* proto_id, int class_index) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fltdefs.h 37 #define FILTER_PROTO(ProtoId) MAKELONG(MAKEWORD((ProtoId),0x00),0x00000)
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/Ikev2/
Ikev2.h 207 UINT16 ProtoId;
Exchange.c 209 ChildSaSession->ProtoId = SpdEntry->Selector->NextLayerProtocol;
  /art/compiler/utils/
test_dex_file_builder.h 137 uint32_t field_ids_offset = proto_ids_offset + protos_.size() * sizeof(DexFile::ProtoId);
184 uint32_t raw_offset = proto_ids_offset + entry.second.idx * sizeof(DexFile::ProtoId);
  /external/dexmaker/lib/
libcore-dex-2.jar 
  /prebuilts/tools/common/m2/repository/com/jakewharton/android/repackaged/libcore-dex/2/
libcore-dex-2.jar 
  /art/dexdump/
dexdump.cc 897 const DexFile::ProtoId& protoId = pDexFile->GetProtoId(secondary_index);
898 const Signature signature = pDexFile->GetProtoSignature(protoId);
    [all...]

Completed in 453 milliseconds

1 2 3