HomeSort by relevance Sort by last modified time
    Searched full:protoid (Results 1 - 12 of 12) sorted by null

  /dalvik/dx/src/com/android/dx/io/
ProtoId.java 21 public final class ProtoId implements Comparable<ProtoId> {
27 public ProtoId(DexBuffer buffer, int shortyIndex, int returnTypeIndex, int parametersOffset) {
34 public int compareTo(ProtoId other) {
DexIndexPrinter.java 64 for (ProtoId protoId : dexBuffer.protoIds()) {
65 System.out.println("proto " + index + ": " + protoId);
DexBuffer.java 86 private final List<ProtoId> protoIds = new AbstractList<ProtoId>() {
87 @Override public ProtoId get(int index) {
240 public List<ProtoId> protoIds() {
412 public ProtoId readProtoId() {
416 return new ProtoId(DexBuffer.this, shortyIndex, returnTypeIndex, parametersOffset);
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 27 import com.android.dx.io.ProtoId;
177 public ProtoId adjust(ProtoId protoId) {
178 return new ProtoId(target,
179 adjustString(protoId.getShortyIndex()),
180 adjustType(protoId.getReturnTypeIndex()),
181 adjustTypeListOffset(protoId.getParametersOffset()));
DexMerger.java 29 import com.android.dx.io.ProtoId;
441 new IdMerger<ProtoId>(idsDefsOut) {
446 @Override ProtoId read(DexBuffer.Section in, IndexMap indexMap, int index) {
454 @Override void write(ProtoId value) {
    [all...]
  /dalvik/libdex/
DexProto.cpp 127 const DexProtoId* protoId = getProtoId(pProto);
129 return dexStringById(pProto->dexFile, protoId->shortyIdx);
136 const DexProtoId* protoId = getProtoId(pProto);
137 const DexTypeList* typeList = dexGetProtoParameters(dexFile, protoId);
147 length += strlen(dexStringByTypeIdx(dexFile, protoId->returnTypeIdx));
163 strcpy(at, dexStringByTypeIdx(dexFile, protoId->returnTypeIdx));
213 const DexProtoId* protoId = getProtoId(pProto);
214 return dexStringByTypeIdx(pProto->dexFile, protoId->returnTypeIdx);
219 const DexProtoId* protoId = getProtoId(pProto);
221 dexGetProtoParameters(pProto->dexFile, protoId);
    [all...]
DexFile.h 666 /* return the ProtoId with the specified index */
673 * Get the parameter list from a ProtoId. The returns NULL if the ProtoId
  /external/tcpdump/tests/
isakmp3.new 2 (id: idtype=FQDN protoid=0 port=0 len=248 \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000)
isakmp3.out 2 (id: idtype=FQDN protoid=0 port=0 len=248 \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000)
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 202 ProtoIdItem protoId = mProtoIds[i];
204 int offset = protoId.parametersOff;
207 protoId.types = new int[0];
212 protoId.types = new int[size];
215 protoId.types[j] = readShort() & 0xffff;
331 ProtoIdItem protoId = mProtoIds[idx];
332 String[] result = new String[protoId.types.length];
334 for (int i = 0; i < protoId.types.length; i++) {
335 result[i] = mStrings[mTypeIds[protoId.types[i]].descriptorIdx];
346 ProtoIdItem protoId = mProtoIds[idx]
    [all...]
  /external/tcpdump/
addrtoname.c 436 /* Find the hash node that corresponds the protoid 'pi'. */
747 const u_char protoid[5]; member in struct:protoidlist
768 u_char protoid[5]; local
770 protoid[0] = 0;
771 protoid[1] = 0;
772 protoid[2] = 0;
776 memcpy((char *)&protoid[3], (char *)&etype, 2);
777 tp = lookup_protoid(protoid);
782 tp = lookup_protoid(pl->protoid);
print-isakmp.c 492 printf(" #%d protoid=%s transform=%d",
724 printf(" protoid=%s", pe->p_name);
731 printf(" protoid=%s", "0");
    [all...]

Completed in 293 milliseconds