Home
last modified time | relevance | path

Searched refs:methodIdx (Results 1 – 6 of 6) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/rawdex/
DMethodAnnotation.java22 public int methodIdx; field in MethodAnnotation
27 methodIdx = file.readUInt(); in read()
33 file.writeUInt(methodIdx); in write()
39 if (kind == IndexUpdateKind.METHOD_ID && methodIdx >= insertedIdx) { in incrementIndex()
40 methodIdx++; in incrementIndex()
DParameterAnnotation.java22 public int methodIdx; field in ParameterAnnotation
27 methodIdx = file.readUInt(); in read()
33 file.writeUInt(methodIdx); in write()
39 if (kind == IndexUpdateKind.METHOD_ID && methodIdx >= insertedIdx) { in incrementIndex()
40 methodIdx++; in incrementIndex()
DClassDataItem.java98 int methodIdx = 0; in incrementEncodedMethods() local
100 methodIdx = method.methodIdxDiff; in incrementEncodedMethods()
101 if (methodIdx >= insertedIdx) { in incrementEncodedMethods()
/art/test/595-profile-saving/src/
DMain.java36 int methodIdx = $opt$noinline$testProfile(); in main() local
38 if (!presentInProfile(file.getPath(), methodIdx)) { in main()
39 throw new RuntimeException("Method with index " + methodIdx + " not in the profile"); in main()
59 public static native boolean presentInProfile(String profile, int methodIdx); in presentInProfile() argument
/art/tools/dexfuzz/src/dexfuzz/program/
DProgram.java272 int methodIdx = 0; in associateCodeItemsWithMethodNames() local
274 methodIdx = associateMethod(method, methodIdx, className); in associateCodeItemsWithMethodNames()
277 methodIdx = 0; in associateCodeItemsWithMethodNames()
279 methodIdx = associateMethod(method, methodIdx, className); in associateCodeItemsWithMethodNames()
291 private int associateMethod(EncodedMethod method, int methodIdx, String className) { in associateMethod() argument
294 return methodIdx; in associateMethod()
300 methodIdx = methodIdx + method.methodIdxDiff; in associateMethod()
303 MethodIdItem methodIdItem = rawDexFile.methodIds.get(methodIdx); in associateMethod()
320 return methodIdx; in associateMethod()
/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DNewMethodCaller.java167 int methodIdx = mutatableCode.program.getNewItemCreator() in applyMutation() local
171 newInsn.insn.vregB = methodIdx; in applyMutation()