OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mTryBlock
(Results
1 - 2
of
2
) sorted by null
/art/tools/dexfuzz/src/dexfuzz/program/
MutatableCode.java
72
public List<
MTryBlock
> mutatableTries;
168
* Checks if any
MTryBlock
's instruction refs pointed at the 'before' MInsn,
177
for (
MTryBlock
mTryBlock
: mutatableTries) {
178
if (
mTryBlock
.startInsn == before) {
180
mTryBlock
.startInsn = after;
181
} else if (twoWay &&
mTryBlock
.startInsn == after) {
183
mTryBlock
.startInsn = before;
185
if (
mTryBlock
.endInsn == before) {
187
mTryBlock
.endInsn = after
[
all
...]
CodeTranslator.java
251
mutatableCode.mutatableTries = new LinkedList<
MTryBlock
>();
257
MTryBlock
mTryBlock
= new
MTryBlock
();
261
mTryBlock
.startInsn = insnLocationMap.get(startLocation);
266
mTryBlock
.endInsn = insnLocationMap.get(endLocation);
267
while ((
mTryBlock
.endInsn == null) && (endLocation >= startLocation)) {
269
mTryBlock
.endInsn = insnLocationMap.get(endLocation);
273
if (
mTryBlock
.startInsn == null) {
278
if (
mTryBlock
.endInsn == null)
[
all
...]
Completed in 56 milliseconds