in java/com/facebook/soloader/ExoSoSource.java [128:140]
public InputDso next() throws IOException {
FileDso fileDso = mDsos[mCurrentDso++];
FileInputStream dsoFile = new FileInputStream(fileDso.backingFile);
try {
InputDso ret = new InputDsoStream(fileDso, dsoFile);
dsoFile = null; // Ownership transferred
return ret;
} finally {
if (dsoFile != null) {
dsoFile.close();
}
}
}