Searched refs:CallLogBackupAgent (Results 1 – 3 of 3) sorted by relevance
28 import com.android.calllogbackup.CallLogBackupAgent.Call;29 import com.android.calllogbackup.CallLogBackupAgent.CallLogBackupState;54 CallLogBackupAgent mCallLogBackupAgent;69 mCallLogBackupAgent = new CallLogBackupAgent(); in setUp()82 assertEquals(state.version, CallLogBackupAgent.VERSION_NO_PREVIOUS_STATE); in testReadState_NoCall()116 state.version = CallLogBackupAgent.VERSION; in testWriteState_NoCalls()122 inOrder.verify(mDataOutput).writeInt(CallLogBackupAgent.VERSION); in testWriteState_NoCalls()128 state.version = CallLogBackupAgent.VERSION; in testWriteState_OneCall()135 inOrder.verify(mDataOutput).writeInt(CallLogBackupAgent.VERSION); in testWriteState_OneCall()142 state.version = CallLogBackupAgent.VERSION; in testWriteState_MultipleCalls()[all …]
41 if (CallLogBackupAgent.shouldPreventBackup(context)) { in onReceive()
54 public class CallLogBackupAgent extends BackupAgent { class