(int flags)
| 575 | } |
| 576 | |
| 577 | private static int makeRecoveryFlags(int flags) { |
| 578 | int recoveryFlags = 0; |
| 579 | if ((flags & SOLOADER_ENABLE_BACKUP_SOSOURCE_DSONOTFOUND_ERROR_RECOVERY) != 0) { |
| 580 | recoveryFlags |= RecoveryStrategy.FLAG_ENABLE_DSONOTFOUND_ERROR_RECOVERY_FOR_BACKUP_SO_SOURCE; |
| 581 | } |
| 582 | return recoveryFlags; |
| 583 | } |
| 584 | |
| 585 | private static synchronized void initSoLoader( |
| 586 | @Nullable Context context, @Nullable SoFileLoader soFileLoader, int flags) { |