HomeSort by relevance Sort by last modified time
    Searched refs:handlerAddress (Results 1 - 17 of 17) sorted by null

  /cts/apps/CtsVerifier/jni/cameraanalyzer/
com_android_cts_verifier_camera_analyzer_AutoLockTest.cpp 36 long handlerAddress = (long)testHandler;
37 return handlerAddress;
50 long handlerAddress = (long)inputHandlerAddress;
53 AutoLockTest *testHandler = (AutoLockTest*) handlerAddress;
77 long handlerAddress = (long) inputHandlerAddress;
78 AutoLockTest *testHandler = (AutoLockTest*) handlerAddress;
com_android_cts_verifier_camera_analyzer_ExposureCompensationTest.cpp 38 long handlerAddress = (long)testHandler;
40 return handlerAddress;
55 long handlerAddress = (long)inputHandlerAddress;
59 (ExposureCompensationTest*) handlerAddress;
79 long handlerAddress = (long) inputHandlerAddress;
81 (ExposureCompensationTest*) handlerAddress;
com_android_cts_verifier_camera_analyzer_WhiteBalanceTest.cpp 36 long handlerAddress = (long)testHandler;
37 return handlerAddress;
51 long handlerAddress = (long)inputHandlerAddress;
54 WhiteBalanceTest *testHandler = (WhiteBalanceTest*) handlerAddress;
83 long handlerAddress = (long) inputHandlerAddress;
84 WhiteBalanceTest *testHandler = (WhiteBalanceTest*) handlerAddress;
com_android_cts_verifier_camera_analyzer_MeteringTest.h 37 jlong handlerAddress,
45 jlong handlerAddress,
com_android_cts_verifier_camera_analyzer_WhiteBalanceTest.h 37 jlong handlerAddress,
46 jlong handlerAddress);
com_android_cts_verifier_camera_analyzer_MeteringTest.cpp 37 long handlerAddress = (long)testHandler;
38 return handlerAddress;
51 long handlerAddress = (long)inputHandlerAddress;
54 MeteringTest *testHandler = (MeteringTest*) handlerAddress;
77 long handlerAddress = (long) inputHandlerAddress;
78 MeteringTest *testHandler = (MeteringTest*) handlerAddress;
com_android_cts_verifier_camera_analyzer_CameraTests.cpp 130 long handlerAddress = (long)testHandler;
131 return handlerAddress;
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
CatchMethodItem.java 44 int startAddress, int endAddress, int handlerAddress) {
55 handlerLabel = labelCache.internLabel(new LabelMethodItem(handlerAddress, "catchall_"));
57 handlerLabel = labelCache.internLabel(new LabelMethodItem(handlerAddress, "catch_"));
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
TryListBuilder.java 128 public final int handlerAddress;
130 public Handler(TypeIdItem type, int handlerAddress) {
132 this.handlerAddress = handlerAddress;
157 handler.handlerAddress);
184 public void addCatchAllHandler(int startAddress, int endAddress, int handlerAddress) {
209 tryRange.catchAllHandlerAddress = handlerAddress;
315 public void addHandler(TypeIdItem type, int startAddress, int endAddress, int handlerAddress) {
324 Handler handler = new Handler(type, handlerAddress);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/
CameraTests.java 183 * @param handlerAddress the memory address of the native test handler,
186 public native void cleanUpHandler(long handlerAddress);
193 * @param handlerAddress the memory address of the native test handler,
196 public native void displayHandlerDebugOutput(long handlerAddress);
ColorCheckerTest.java 248 * @param handlerAddress the memory address of the native test handler
254 private native long getColorCheckerRadiusAdd(long handlerAddress);
260 * @param handlerAddress the memory address of the native test handler
266 private native long getColorCheckerCenterAdd(long handlerAddress);
283 * @param handlerAddress the memory address of the test handler instance
285 private native void createColorCheckerClass(long bufferAddress, long handlerAddress);
292 * @param handlerAddress the memory address of the test handler instance
294 private native boolean processColorCheckerTest(long handlerAddress);
ExposureCompensationTest.java 207 private native void createExposureCompensationClass(long bufferAddress, long handlerAddress,
210 private native String processExposureCompensationTest(long handlerAddress);
WhiteBalanceTest.java 362 * <code>handlerAddress</code> by using the color checker coordinates.
367 * @param handlerAddress the memory address of the native white balance
375 private native void createWhiteBalanceClass(long bufferAddress, long handlerAddress,
386 * @param handlerAddress the memory address of the native white balance
391 private native int processWhiteBalanceTest(long handlerAddress);
393 private native int getAutoTemperature(long handlerAddress);
MeteringTest.java 664 * @param handlerAddress the memory address of the native test handler
668 private native void createMeteringClass(long bufferAddress, long handlerAddress,
676 * @param handlerAddress the memory address of the native test handler
680 private native void processMeteringTest(long handlerAddress, boolean[] testCompareResults);
AutoLockTest.java     [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
CodeItem.java 636 assert newAddressByOriginalAddress.indexOfKey(handler.handlerAddress) >= 0;
637 handler.handlerAddress = newAddressByOriginalAddress.get(handler.handlerAddress);
    [all...]
  /external/smali/smali/src/main/antlr3/
smaliTreeWalker.g 690 int handlerAddress = $using.address;
692 $method::tryList.addHandler(type, startAddress, endAddress, handlerAddress);
701 int handlerAddress = $using.address;
703 $method::tryList.addCatchAllHandler(startAddress, endAddress, handlerAddress);
    [all...]

Completed in 416 milliseconds