- t2ex
- bsd_source/t2ex/network/net/src_bsd/lib/libkern/copy.c - 1.1KB - 65 lines
17: // check address validation
18: ercd = ChkSpaceR((VP)uaddr, len);
19: if (ercd != E_OK)
- t2ex_source/kernel/extension/memory/t2ex/segmgr.c - 12.5KB - 450 lines
79: }
80: ercd = ChkSpaceR(addr, len);
81: if ( ercd < E_OK ){
- More results from segmgr.c
- t2ex_source/t2ex/datetime/src/service.c - 4.7KB - 184 lines
76:
77: er = ChkSpaceR(tz, sizeof(*tz));
78: if (er < E_OK) {
- t2ex_source/t2ex/fs/fs/src/fs_tk.c - 28.7KB - 883 lines
308: if (p->count != 0 &&
309: ChkSpaceR((void *)p->buf, (INT)p->count) < 0) {
310: err = EX_INVAL;
- More results from fs_tk.c
- t2ex_source/t2ex/load/src/progload.c - 8.4KB - 337 lines
176: /* Check parameters */
177: er = ChkSpaceR(prog, sizeof(*prog));
178: if ( er < E_OK ) goto err_ret0;
- More results from progload.c
- t2ex_source/t2ex/load/src/src_mem.c - 2.9KB - 97 lines
67: p = ldr->li.mem.buf + ofs;
68: er = ChkSpaceR(p, sz);
69: if (er < E_OK) {
- t2ex_source/t2ex/network/net/src/netmain/tkn_netdmn.c - 19.1KB - 648 lines
317: if ( hints != NULL ) {
318: ercd = ChkSpaceR(hints, sizeof(struct addrinfo));
319: if ( ercd < E_OK ) {
- More results from tkn_netdmn.c
- t2ex_source/t2ex/network/net/src/netmain/tkn_subr.c - 16.6KB - 662 lines
318:
319: ercd = ChkSpaceR(SCARG(uap, name), SCARG(uap, len));
320: if ( ercd < E_OK ) {