Home
last modified time | relevance | path

Searched refs:CallLogBackupState (Results 1 – 2 of 2) sorted by relevance

/aosp12/packages/providers/CallLogProvider/tests/src/com/android/calllogbackup/
H A DCallLogBackupAgentTest.java29 import com.android.calllogbackup.CallLogBackupAgent.CallLogBackupState;
80 CallLogBackupState state = mCallLogBackupAgent.readState(mDataInput); in testReadState_NoCall()
92 CallLogBackupState state = mCallLogBackupAgent.readState(mDataInput); in testReadState_OneCall()
106 CallLogBackupState state = mCallLogBackupAgent.readState(mDataInput); in testReadState_MultipleCalls()
115 CallLogBackupState state = new CallLogBackupState(); in testWriteState_NoCalls()
127 CallLogBackupState state = new CallLogBackupState(); in testWriteState_OneCall()
141 CallLogBackupState state = new CallLogBackupState(); in testWriteState_MultipleCalls()
159 CallLogBackupState state = new CallLogBackupState(); in testRunBackup_NoCalls()
170 CallLogBackupState state = new CallLogBackupState(); in testRunBackup_OneNewCall()
182 CallLogBackupState state = new CallLogBackupState(); in testRunBackup_MultipleCall()
[all …]
/aosp12/packages/providers/CallLogProvider/src/com/android/calllogbackup/
H A DCallLogBackupAgent.java59 static class CallLogBackupState { class in CallLogBackupAgent
152 final CallLogBackupState state; in onBackup()
193 void runBackup(CallLogBackupState state, BackupDataOutput data, Iterable<Call> calls) { in runBackup()
272 CallLogBackupState readState(DataInput dataInput) throws IOException { in readState()
273 CallLogBackupState state = new CallLogBackupState(); in readState()
297 void writeState(DataOutput dataOutput, CallLogBackupState state) in writeState()