OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:handlerPc
(Results
1 - 10
of
10
) sorted by null
/dalvik/dexgen/src/com/android/dexgen/rop/
ByteCatchList.java
84
* @param
handlerPc
{@code >= 0;} the pc of the exception handler
88
public void set(int n, int startPc, int endPc, int
handlerPc
,
90
set0(n, new Item(startPc, endPc,
handlerPc
, exceptionClass));
231
private final int
handlerPc
;
244
* @param
handlerPc
{@code >= 0;} the pc of the exception handler
248
public Item(int startPc, int endPc, int
handlerPc
,
258
if (
handlerPc
< 0) {
259
throw new IllegalArgumentException("
handlerPc
< 0");
264
this.
handlerPc
=
handlerPc
;
[
all
...]
/dalvik/dx/src/com/android/dx/cf/code/
ByteCatchList.java
84
* @param
handlerPc
{@code >= 0;} the pc of the exception handler
88
public void set(int n, int startPc, int endPc, int
handlerPc
,
90
set0(n, new Item(startPc, endPc,
handlerPc
, exceptionClass));
231
private final int
handlerPc
;
244
* @param
handlerPc
{@code >= 0;} the pc of the exception handler
248
public Item(int startPc, int endPc, int
handlerPc
,
258
if (
handlerPc
< 0) {
259
throw new IllegalArgumentException("
handlerPc
< 0");
264
this.
handlerPc
=
handlerPc
;
[
all
...]
/external/javassist/src/main/javassist/bytecode/
ExceptionTable.java
27
int
handlerPc
;
33
handlerPc
= handle;
132
* Returns <code>
handlerPc
</code> of the <i>n</i>-th entry.
136
public int
handlerPc
(int nth) {
138
return e.
handlerPc
;
142
* Sets <code>
handlerPc
</code> of the <i>n</i>-th entry.
149
e.
handlerPc
= value;
188
e.
handlerPc
+ offset, e.catchType);
198
* @param handler <code>
handlerPc
</code>
212
* @param handler <code>
handlerPc
</code
[
all
...]
ClassFileWriter.java
465
public void addCatch(int startPc, int endPc, int
handlerPc
, int catchType) {
469
output.writeShort(
handlerPc
);
CodeAnalyzer.java
67
stack[et.
handlerPc
(i)] = -2; // an exception is on stack
/external/javassist/src/main/javassist/expr/
Handler.java
35
super(et.
handlerPc
(nth), it, declaring, m);
126
int oldHandler = etable.
handlerPc
(index);
/external/javassist/src/main/javassist/bytecode/analysis/
SubroutineScanner.java
53
int handler = exceptions.
handlerPc
(i);
Analyzer.java
227
exceptions[i] = new ExceptionInfo(table.startPc(i), table.endPc(i), table.
handlerPc
(i), type);
/external/javassist/src/main/javassist/bytecode/stackmap/
BasicBlock.java
283
makeMark(marks, et.
handlerPc
(i));
382
BasicBlock handler = find(blocks, et.
handlerPc
(i));
/dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java
275
int
handlerPc
= bytes.getUnsignedShort(offset + 4);
278
catches.set(i, startPc, endPc,
handlerPc
, catchType);
282
" -> " + Hex.u2(
handlerPc
) + " " +
Completed in 566 milliseconds