• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/Security-57031.1.35/Security/sec/securityd/Regressions/

Lines Matching defs:testError

74     __block CFErrorRef testError = NULL;
96 SOSAccountAssertUserCredentials(alice_account, CFSTR("alice"), cfpassword, &testError);
97 SOSAccountAssertUserCredentials(bob_account, CFSTR("bob"), cfpassword, &testError);
101 SOSAccountJoinCircles(alice_account, &testError);
102 SOSAccountJoinCircles(bob_account, &testError);
104 CFDataRef alice_account_data = SOSAccountCopyEncodedData(alice_account, kCFAllocatorDefault, &testError);
105 CFDataRef bob_account_data = SOSAccountCopyEncodedData(bob_account, kCFAllocatorDefault, &testError);
107 CFArrayRef alice_peers = SOSAccountCopyPeers(alice_account, &testError);
108 CFArrayRef bob_peers = SOSAccountCopyPeers(bob_account, &testError);
122 CFDataRef aliceSideSession = SecOTRSessionCreateRemote_internal(bob_account_data, bob_peer_external_form, alice_account_data, &testError);
123 RegressionsLogError(testError);
124 CFReleaseNull(testError);
128 CFDataRef bobSideSession = SecOTRSessionCreateRemote_internal(alice_account_data, alice_peer_external_form, bob_account_data, &testError);
129 RegressionsLogError(testError);
130 CFReleaseNull(testError);
140 bool aliceStatus = SecOTRSessionProcessPacketRemote(aliceSideSession, bobToAlice, &aliceSideSessionResult, &aliceToBob, &aliceReady, &testError);
142 RegressionsLogError(testError);
143 CFReleaseNull(testError);
151 bool bobStatus = SecOTRSessionProcessPacketRemote(bobSideSession, aliceToBob, &bobSideSessionResult, &bobToAlice, &bobReady, &testError);
153 RegressionsLogError(testError);
154 CFReleaseNull(testError);
164 SecOTRFIPurgeAllFromKeychain(&testError);
165 RegressionsLogError(testError);
174 CFReleaseNull(testError);