- tkernel_2
- driver/tef_em1d/console/src/console_drv.c - 31.8KB - 957 lines
509: /* Check the address */
510: if (ChkSpaceRW((void*)buf, len)) return 0;
511:
- More results from console_drv.c
- kernel/sysmgr/src/device.c - 22.4KB - 827 lines
255: if ( idev != NULL ) {
256: ercd = ChkSpaceRW(idev, sizeof(T_IDEV));
257: if ( ercd < E_OK ) {
- More results from device.c
- kernel/sysmgr/src/deviceio.c - 35.3KB - 1,328 lines
853:
854: ercd = ChkSpaceRW(asize, sizeof(W));
855: if ( ercd < E_OK ) {
- More results from deviceio.c
- kernel/sysmgr/src/system.c - 11.8KB - 495 lines
189: }
190: ercd = ChkSpaceRW(val, (INT)sizeof(INT) * max);
191: if ( ercd < E_OK ) {
- More results from system.c
- lib/libdrvif/src/gdrvif.c - 32.8KB - 1,032 lines
575: if ( req->cmd == TDC_READ ) {
576: err = ChkSpaceRW(req->buf, memsz);
577: } else {
- lib/libdrvif/src/sdrvif.c - 7.2KB - 312 lines
134: if ( req->cmd == TDC_READ ) {
135: err = ChkSpaceRW(req->buf, memsz);
136: } else {