Lines Matching refs:status

152 	status_t status = get_module(B_BIOS_MODULE_NAME, (module_info**)&biosModule);
153 if (status != B_OK) {
155 status);
156 return status;
160 status = biosModule->prepare(&state);
161 if (status != B_OK) {
163 status);
165 return status;
175 status = biosModule->interrupt(state, 0x10, &regs);
176 if (status == B_OK) {
180 status = B_NOT_SUPPORTED;
184 status = B_NOT_SUPPORTED;
187 if (status == B_OK) {
191 status = B_NO_MEMORY;
202 status = biosModule->interrupt(state, 0x10, &regs);
203 if (status == B_OK) {
205 status = B_NOT_SUPPORTED;
223 status = B_ERROR;
226 status = B_ERROR;
236 TRACE("GetEdidFromBIOS() status: 0x%" B_PRIx32 "\n", status);
237 return status;
314 status_t status = get_memory_map((void *)(di.gttAddr),
316 if (status < B_OK) {
318 "error: 0x%" B_PRIx32 "\n", status);
319 return status;
341 status = get_memory_map((void *)(si.videoMemAddr + offset),
343 if (status < B_OK) {
345 " 0x%" B_PRIx32 " offset: %" B_PRId32 "\n", status, offset);
346 return status;
431 status_t status = get_module(B_PCI_MODULE_NAME, (module_info**)&gPCI);
432 if (status != B_OK) {
433 TRACE("PCI module unavailable, error 0x%" B_PRIx32 "\n", status);
434 return status;
457 status_t status = get_module(B_PCI_MODULE_NAME, (module_info**)&gPCI);
458 if (status != B_OK) {
459 TRACE("PCI module unavailable, error 0x%" B_PRIx32 "\n", status);
460 return status;
463 status = gLock.Init("i810 driver lock");
464 if (status < B_OK) {
467 return status;
545 status_t status = B_OK;
564 status = InitDevice(di);
565 if (status < B_OK)
571 if (status == B_OK) {
577 "open count: %" B_PRId32 "\n", status, di.openCount);
578 return status;
676 status_t status = GetEdidFromBIOS(rawEdid);
677 if (status == B_OK)
679 return status;