Home
last modified time | relevance | path

Searched refs:CallLogBackupAgent (Results 1 – 3 of 3) sorted by relevance

/packages/providers/CallLogProvider/tests/src/com/android/calllogbackup/
DCallLogBackupAgentTest.java28 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 …]
/packages/providers/CallLogProvider/src/com/android/calllogbackup/
DCallLogChangeReceiver.java41 if (CallLogBackupAgent.shouldPreventBackup(context)) { in onReceive()
DCallLogBackupAgent.java54 public class CallLogBackupAgent extends BackupAgent { class