Lines Matching refs:res

91 	uint16 res = call_pxe_bios(fPxeData, GET_CACHED_INFO, &cached_info);

92 if (res != 0 || cached_info.Status != 0) {
94 snprintf(s, sizeof(s), "Can't determine IP address! PXENV_GET_CACHED_INFO res %x, status %x\n", res, cached_info.Status);
175 uint16 res;
191 res = call_pxe_bios(fPxeData, UNDI_OPEN, &undi_open);
192 if (res != 0 || undi_open.Status != 0) {
193 dprintf("PXENV_UNDI_OPEN failed, res %x, status %x, ignoring\n", res, undi_open.Status);
196 res = call_pxe_bios(fPxeData, UNDI_GET_STATE, &get_state);
197 if (res != 0 || get_state.Status != 0) {
198 dprintf("PXENV_UNDI_GET_STATE failed, res %x, status %x, ignoring\n", res, get_state.Status);
216 res = call_pxe_bios(fPxeData, UNDI_GET_INFORMATION, &get_info);
217 if (res != 0 || get_info.Status != 0) {
218 dprintf("PXENV_UNDI_GET_INFORMATION failed, res %x, status %x\n", res, get_info.Status);
286 uint16 res = call_pxe_bios(fPxeData, UNDI_TRANSMIT, &undi_tx);
287 if (res != 0 || undi_tx.Status != 0) {
288 dprintf("UNDI_TRANSMIT failed, res %x, status %x\n", res, undi_tx.Status);
304 uint16 res;
310 res = call_pxe_bios(fPxeData, UNDI_ISR, &undi_isr);
311 if (res != 0 || undi_isr.Status != 0) {
312 dprintf("PXENV_UNDI_ISR_IN_GET_NEXT failed, res %x, status %x\n", res, undi_isr.Status);
321 res = call_pxe_bios(fPxeData, UNDI_ISR, &undi_isr);
322 if (res != 0 || undi_isr.Status != 0) {
323 dprintf("PXENV_UNDI_ISR_IN_START failed, res %x, status %x\n", res, undi_isr.Status);
337 res = call_pxe_bios(fPxeData, UNDI_ISR, &undi_isr);
338 if (res != 0 || undi_isr.Status != 0) {
339 dprintf("PXENV_UNDI_ISR_IN_PROCESS failed, res %x, status %x\n", res, undi_isr.Status);
422 uint16 res = call_pxe_bios(fPxeData, TFTP_GET_FILE_SIZE, &getFileSize);
423 if (res != 0 || getFileSize.status != 0) {
424 dprintf("TFTP_GET_FILE_SIZE failed, res %x, status %x\n", res,
449 res = call_pxe_bios(fPxeData, TFTP_OPEN, &openConnection);
450 if (res != 0 || openConnection.status != 0) {
451 dprintf("TFTP_OPEN failed, res %x, status %x\n", res,
480 res = call_pxe_bios(fPxeData, TFTP_READ, &readPacket);
481 if (res != 0 || readPacket.status != 0) {
482 dprintf("TFTP_READ failed, res %x, status %x\n", res,
519 uint16 res = call_pxe_bios(fPxeData, TFTP_CLOSE, &closeConnection);
520 if (res != 0 || closeConnection.status != 0) {
521 dprintf("TFTP_CLOSE failed, res %x, status %x\n", res,