OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:protoId
(Results
1 - 4
of
4
) sorted by null
/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
...]
/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
...]
/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
);
/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()));
Completed in 144 milliseconds