Lines Matching refs:status

204 	status_t status = _InitData(space, attributes);
206 *error = status;
219 status_t status = _InitData(space, attributes);
221 *error = status;
372 status_t status = _GetModeFromSpace(space, &mode);
373 if (status == B_OK)
374 status = _AssertDisplayMode(&mode);
376 return status;
401 status_t status = screen.ProposeMode(&mode, &lowMode, &highMode);
402 if (status == B_OK)
403 status = _AssertDisplayMode(&mode);
405 return status;
507 status_t status;
509 status = acquire_sem(fDebugSem);
510 } while (status == B_INTERRUPTED);
512 if (status < B_OK)
595 status_t status = B_ERROR;
601 status = screen.GetMode(fOriginalDisplayMode);
602 if (status < B_OK)
603 throw status;
605 status = screen.GetModeList(&fModeList, &fModeCount);
606 if (status < B_OK)
607 throw status;
609 status = _GetModeFromSpace(space, fDisplayMode);
610 if (status < B_OK)
611 throw status;
613 status = _GetCardInfo();
614 if (status < B_OK)
615 throw status;
625 status = B_OK;
627 status = B_NO_MEMORY;
629 status = error;
631 status = B_ERROR;
634 if (status != B_OK)
637 return status;
681 status_t status = B_ERROR;
682 if (link.FlushWithReply(status) == B_OK && status == B_OK)
685 return status;
693 status_t status = _AssertDisplayMode(fDisplayMode);
694 if (status < B_OK)
695 return status;
697 status = _SetupAccelerantHooks();
698 if (status < B_OK)
699 return status;
702 status = _LockScreen(true);
703 if (status != B_OK)
704 return status;
734 status_t status = _LockScreen(false);
735 if (status != B_OK)
736 return status;
756 status_t status = B_OK;
758 status = _InitClone();
762 if (status == B_OK) {
784 return status;
817 status_t status = screen.GetMode(&mode);
818 if (status < B_OK)
819 return status;
880 status_t status;
882 status = acquire_sem(fDebugSem);
883 } while (status == B_INTERRUPTED);
885 if (status != B_OK)
961 status_t status = B_ERROR;
962 if (link.FlushWithReply(status) < B_OK || status < B_OK)
963 return status;
971 status = B_ERROR;
972 if (link.FlushWithReply(status) < B_OK || status < B_OK)
973 return status;
984 status = get_image_symbol(fAddonImage, B_ACCELERANT_ENTRY_POINT,
986 if (status < B_OK) {
1002 status = cloneHook((void*)driverPath.String());
1003 if (status < B_OK) {
1009 return status;
1021 status_t status = screen.GetMode(&currentMode);
1022 if (status != B_OK)
1023 return status;
1029 status = screen.SetMode(displayMode);
1030 if (status != B_OK) {
1032 strerror(status));
1033 return status;
1039 status = _GetCardInfo();
1040 if (status != B_OK)
1041 return status;