- Timestamp:
- Jun 26, 2009 8:45:18 AM (16 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Display/screen.c
r20653 r20961 887 887 * 888 888 * returns the number of entries in the videomode buffer. 889 * 0 means no modes are supported by the miniport or that an error occur ed.889 * 0 means no modes are supported by the miniport or that an error occurred. 890 890 * 891 891 * NOTE: the buffer must be freed up by the caller. -
trunk/src/VBox/Additions/WINNT/VBoxGINA/WinWlx.h
r1 r20961 77 77 // 78 78 // SCRNSVR_ACTIVITY - used to indicate that keyboard or mouse 79 // activity occur ed while a secure screensaver was active.79 // activity occurred while a secure screensaver was active. 80 80 // 81 81 // SC_INSERT - used to indicate that a smart card has been inserted -
trunk/src/VBox/Additions/WINNT/i8042prt/include/mce.h
r1 r20961 289 289 ERROR_RECORD_VALID Valid; // 11: Validation bits 290 290 ULONG Length; // 12: Length of this record in bytes, including the header 291 ERROR_TIMESTAMP TimeStamp; // 16: Timestamp recorded when event occur ed291 ERROR_TIMESTAMP TimeStamp; // 16: Timestamp recorded when event occurred 292 292 UCHAR OemPlatformId[16]; // 24: Unique platform identifier. OEM defined. 293 293 } ERROR_RECORD_HEADER, *PERROR_RECORD_HEADER; … … 498 498 ULONGLONG Internal:1; // 5 : Internal bus error 499 499 ULONGLONG External:1; // 6 : External bus error 500 ULONGLONG CacheTransfer:1; // 7 : Error occur ed in Cache to Cache Transfer500 ULONGLONG CacheTransfer:1; // 7 : Error occurred in Cache to Cache Transfer 501 501 ULONGLONG Type:8; // 8-15: Transaction type 502 502 ULONGLONG Severity:5; // 16-20: Error severity - platform specific -
trunk/src/VBox/Additions/WINNT/i8042prt/include/ntiologc.h
r1 r20961 531 531 // A valid crash dump was found in the paging file while trying to configure 532 532 // a direct dump. Direct dump is disabled! This occurs when the direct dump 533 // option is set in the registry but a stop error occur ed before configuration533 // option is set in the registry but a stop error occurred before configuration 534 534 // completed 535 535 // -
trunk/src/VBox/Additions/WINNT/i8042prt/kbddep.c
r1 r20961 560 560 deviceExtension->DumpFlags = 0; 561 561 KeBugCheckEx(0x0000FFFF,0,0,0,0); 562 // make occur ed blue screen562 // make occurred blue screen 563 563 } 564 564 } -
trunk/src/VBox/Additions/WINNT/i8042prt/moudep.c
r13837 r20961 1923 1923 // 1924 1924 // If the read timed out, stall and retry. 1925 // If some other error occur ed handle it outside the loop1925 // If some other error occurred handle it outside the loop 1926 1926 // 1927 1927 -
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r20703 r20961 515 515 uint32_t nofcs:1; /**< when set, the state of DXMTFCS is ignored and 516 516 transmitter FCS generation is activated. */ 517 uint32_t err:1; /**< error occur ed */517 uint32_t err:1; /**< error occurred */ 518 518 uint32_t own:1; /**< 0=owned by guest driver, 1=owned by controller */ 519 519 } tmd1; … … 559 559 uint32_t oflo:1; /**< overflow error (lost all or part of incoming frame) */ 560 560 uint32_t fram:1; /**< frame error */ 561 uint32_t err:1; /**< error occur ed */561 uint32_t err:1; /**< error occurred */ 562 562 uint32_t own:1; /**< 0=owned by guest driver, 1=owned by controller */ 563 563 } rmd1; -
trunk/src/VBox/Devices/Network/slirp/ip_icmp.c
r20959 r20961 606 606 607 607 end_error: 608 LogRel(("NAT: error occur ed while sending ICMP error message \n"));608 LogRel(("NAT: error occurred while sending ICMP error message \n")); 609 609 } 610 610 #undef ICMP_MAXDATALEN -
trunk/src/VBox/Devices/Network/slirp/slirp.c
r20959 r20961 228 228 if (ret != ERROR_BUFFER_OVERFLOW) 229 229 { 230 LogRel(("NAT: error %lu occur ed on capacity detection operation\n", ret));230 LogRel(("NAT: error %lu occurred on capacity detection operation\n", ret)); 231 231 return -1; 232 232 } … … 248 248 if (ret != ERROR_SUCCESS) 249 249 { 250 LogRel(("NAT: error %lu occur ed on fetching adapters info\n", ret));250 LogRel(("NAT: error %lu occurred on fetching adapters info\n", ret)); 251 251 RTMemFree(addresses); 252 252 return -1; -
trunk/src/VBox/Devices/Network/slirp/socket.h
r20959 r20961 75 75 #else /* !RT_OS_WINDOWS */ 76 76 /* 77 * FD_CLOSE event has been occur ed on socket77 * FD_CLOSE event has been occurred on socket 78 78 */ 79 79 int so_close; -
trunk/src/VBox/Devices/Parallel/DrvHostParallel.cpp
r11286 r20961 236 236 } 237 237 238 /* Interrupt occur ed. */238 /* Interrupt occurred. */ 239 239 rc = pThis->pDrvHostParallelPort->pfnNotifyInterrupt(pThis->pDrvHostParallelPort); 240 240 AssertRC(rc); -
trunk/src/VBox/Devices/VMMDev/VBoxDev.cpp
r20731 r20961 86 86 * There is a 32 bit event mask which will be read 87 87 * by guest on an interrupt. A non zero bit in the mask 88 * means that the specific event occur ed and requires88 * means that the specific event occurred and requires 89 89 * processing on guest side. 90 90 * -
trunk/src/VBox/Disassembler/Disasm.cpp
r18448 r20961 287 287 catch(...) 288 288 #else 289 else /* setjmp has returned a non-zero value: an exception occur ed */289 else /* setjmp has returned a non-zero value: an exception occurred */ 290 290 #endif 291 291 { -
trunk/src/VBox/Disassembler/DisasmCore.cpp
r20041 r20961 391 391 catch(...) 392 392 # else 393 else /* setjmp has returned a non-zero value: an exception occur ed */393 else /* setjmp has returned a non-zero value: an exception occurred */ 394 394 # endif 395 395 { -
trunk/src/VBox/Frontends/VBoxBFE/HGCMThread.h
r8155 r20961 42 42 43 43 /** Function that is called after message processing by worker thread, 44 * or if an error occur ed during message handling after successfully44 * or if an error occurred during message handling after successfully 45 45 * posting (hgcmMsgPost) the message to worker thread. 46 46 * -
trunk/src/VBox/Main/include/hgcm/HGCMThread.h
r8155 r20961 42 42 43 43 /** Function that is called after message processing by worker thread, 44 * or if an error occur ed during message handling after successfully44 * or if an error occurred during message handling after successfully 45 45 * posting (hgcmMsgPost) the message to worker thread. 46 46 * -
trunk/src/VBox/Runtime/r3/posix/fileaio-posix.cpp
r19562 r20961 565 565 else 566 566 { 567 /* An error occur ed. */567 /* An error occurred. */ 568 568 RTFILEAIOREQ_SET_STATE(pReqInt, COMPLETED); 569 569 pReqInt->Rc = RTErrConvertFromErrno(rcPosix); -
trunk/src/VBox/VMM/VMEmt.cpp
r20901 r20961 976 976 * Any external event will unblock the thread. 977 977 * 978 * @returns VINF_SUCCESS unless a fatal error occur ed. In the latter978 * @returns VINF_SUCCESS unless a fatal error occurred. In the latter 979 979 * case an appropriate status code is returned. 980 980 * @param pVM VM handle. … … 1057 1057 * return to the caller. 1058 1058 * 1059 * @returns VINF_SUCCESS unless a fatal error occur ed. In the latter1059 * @returns VINF_SUCCESS unless a fatal error occurred. In the latter 1060 1060 * case an appropriate status code is returned. 1061 1061 * @param pUVCpu Pointer to the user mode VMCPU structure.
Note:
See TracChangeset
for help on using the changeset viewer.