Lines Matching refs:aInfo

254     LoginErrorInfo aInfo;  in handleAuthenticationRequest_()  local
255 aInfo.SetTitle(rRequest.ServerName); in handleAuthenticationRequest_()
256 aInfo.SetServer(rRequest.ServerName); in handleAuthenticationRequest_()
258 aInfo.SetAccount(rRequest.Account); in handleAuthenticationRequest_()
260 aInfo.SetUserName(rRequest.UserName); in handleAuthenticationRequest_()
262 aInfo.SetPassword(rRequest.Password); in handleAuthenticationRequest_()
263 aInfo.SetErrorText(rRequest.Diagnostic); in handleAuthenticationRequest_()
265 aInfo.SetCanRememberPassword( in handleAuthenticationRequest_()
267 aInfo.SetIsRememberPassword( in handleAuthenticationRequest_()
269 aInfo.SetIsRememberPersistent( in handleAuthenticationRequest_()
272 aInfo.SetCanUseSystemCredentials(bCanUseSystemCredentials); in handleAuthenticationRequest_()
273 aInfo.SetIsUseSystemCredentials( bDefaultUseSystemCredentials ); in handleAuthenticationRequest_()
274 aInfo.SetModifyAccount(rRequest.HasAccount in handleAuthenticationRequest_()
277 aInfo.SetModifyUserName(rRequest.HasUserName in handleAuthenticationRequest_()
281 aInfo, in handleAuthenticationRequest_()
283 switch (aInfo.GetResult()) in handleAuthenticationRequest_()
289 xSupplyAuthentication->setUserName(aInfo.GetUserName()); in handleAuthenticationRequest_()
291 xSupplyAuthentication->setPassword(aInfo.GetPassword()); in handleAuthenticationRequest_()
296 if (aInfo.GetIsRememberPassword()) in handleAuthenticationRequest_()
313 xSupplyAuthentication->setRealm(aInfo.GetAccount()); in handleAuthenticationRequest_()
316 xSupplyAuthentication->setAccount(aInfo.GetAccount()); in handleAuthenticationRequest_()
320 aInfo.GetIsUseSystemCredentials() ); in handleAuthenticationRequest_()
328 if ( aInfo.GetIsUseSystemCredentials() ) in handleAuthenticationRequest_()
330 if (aInfo.GetIsRememberPassword()) in handleAuthenticationRequest_()
360 else if (aInfo.GetUserName().Len() != 0) in handleAuthenticationRequest_()
363 aPassList(aInfo.GetAccount().Len() == 0 ? 1 : 2); in handleAuthenticationRequest_()
364 aPassList[0] = aInfo.GetPassword(); in handleAuthenticationRequest_()
365 if (aInfo.GetAccount().Len() != 0) in handleAuthenticationRequest_()
366 aPassList[1] = aInfo.GetAccount(); in handleAuthenticationRequest_()
368 if (aInfo.GetIsRememberPassword()) in handleAuthenticationRequest_()
372 aInfo.GetUserName(), in handleAuthenticationRequest_()
387 aInfo.GetUserName(), in handleAuthenticationRequest_()
483 LoginErrorInfo aInfo; in handleMasterPasswordRequest_() local
486 executeMasterPasswordDialog(pParent, aInfo, nMode); in handleMasterPasswordRequest_()
488 switch (aInfo.GetResult()) in handleMasterPasswordRequest_()
494 xSupplyAuthentication->setPassword(aInfo.GetPassword()); in handleMasterPasswordRequest_()
595 LoginErrorInfo aInfo; in handlePasswordRequest_() local
597 executePasswordDialog( pParent, aInfo, nMode, in handlePasswordRequest_()
600 switch (aInfo.GetResult()) in handlePasswordRequest_()
608 xPassword2->setPasswordToModify( aInfo.GetPasswordToModify() ); in handlePasswordRequest_()
609 xPassword2->setRecommendReadOnly( aInfo.IsRecommendToOpenReadonly() ); in handlePasswordRequest_()
612 xPassword->setPassword(aInfo.GetPassword()); in handlePasswordRequest_()