Lines Matching refs:wbc_status

201     wbcErr wbc_status;
205 wbc_status = WBC_ERR_SUCCESS;
208 wbc_status = WBC_ERR_UNKNOWN_USER;
211 wbc_status = WBC_ERR_WINBIND_NOT_AVAILABLE;
214 wbc_status = WBC_ERR_UNKNOWN_FAILURE;
217 return wbc_status;
227 wbcErr wbc_status;
245 wbc_status = nss_to_wbc(status);
246 if (WBC_ERROR_IS_OK(wbc_status) == true) {
247 wbc_status = copy_pwd(&lpwd, pwd);
252 return wbc_status;
262 wbcErr wbc_status;
280 wbc_status = nss_to_wbc(status);
281 if (WBC_ERROR_IS_OK(wbc_status) == true) {
282 wbc_status = copy_pwd(&lpwd, pwd);
287 return wbc_status;
293 wbcErr wbc_status;
296 wbc_status = wbcSidToUid(sid, &uid);
297 if (!WBC_ERROR_IS_OK(wbc_status)) {
298 return wbc_status;
301 wbc_status = wbcGetpwuid(uid, pwd);
303 return wbc_status;
379 wbcErr wbc_status;
403 wbc_status = nss_to_wbc(status);
404 if (WBC_ERROR_IS_OK(wbc_status) == true) {
405 wbc_status = copy_grp(&lgrp, grp);
412 return wbc_status;
423 wbcErr wbc_status;
447 wbc_status = nss_to_wbc(status);
448 if (WBC_ERROR_IS_OK(wbc_status) == true) {
449 wbc_status = copy_grp(&lgrp, grp);
456 return wbc_status;
463 wbcErr wbc_status;
470 wbc_status = nss_to_wbc(status);
472 return wbc_status;
479 wbcErr wbc_status;
486 wbc_status = nss_to_wbc(status);
488 return wbc_status;
498 wbcErr wbc_status;
516 wbc_status = nss_to_wbc(status);
517 if (WBC_ERROR_IS_OK(wbc_status) == true) {
518 wbc_status = copy_pwd(&lpwd, pwd);
523 return wbc_status;
530 wbcErr wbc_status;
537 wbc_status = nss_to_wbc(status);
539 return wbc_status;
546 wbcErr wbc_status;
553 wbc_status = nss_to_wbc(status);
555 return wbc_status;
566 wbcErr wbc_status;
590 wbc_status = nss_to_wbc(status);
591 if (WBC_ERROR_IS_OK(wbc_status) == true) {
592 wbc_status = copy_grp(&lgrp, grp);
599 return wbc_status;
614 wbcErr wbc_status;
622 wbc_status = wbcGetpwnam(account, &pwd);
623 if (!WBC_ERROR_IS_OK(wbc_status)) {
624 return wbc_status;
630 wbc_status = WBC_ERR_NO_MEMORY;
641 wbc_status = nss_to_wbc(status);
642 if (!WBC_ERROR_IS_OK(wbc_status)) {
649 wbc_status = WBC_ERR_SUCCESS;
654 if (!WBC_ERROR_IS_OK(wbc_status)) {
658 return wbc_status;