Home
last modified time | relevance | path

Searched refs:COPYOUT (Results 1 – 18 of 18) sorted by relevance

/NextBSD/usr.bin/netstat/
HDunix.c125 #define COPYOUT(obj, size) do { \ in pcblist_kvm() macro
146 COPYOUT(&xug, sizeof xug); in pcblist_kvm()
173 COPYOUT(&xu, sizeof(xu)); in pcblist_kvm()
181 COPYOUT(&xug, sizeof xug); in pcblist_kvm()
189 #undef COPYOUT in pcblist_kvm()
HDinet.c215 #define COPYOUT(obj, size) do { \ in pcblist_kvm() macro
235 COPYOUT(&xig, sizeof xig); in pcblist_kvm()
277 COPYOUT(&xt, sizeof xt); in pcblist_kvm()
279 COPYOUT(&xi, sizeof xi); in pcblist_kvm()
286 COPYOUT(&xig, sizeof xig); in pcblist_kvm()
294 #undef COPYOUT in pcblist_kvm()
/NextBSD/sys/boot/common/
HDload_elf_obj.c45 #define COPYOUT(s,d,l) archsw.arch_copyout((vm_offset_t)(s), d, l) macro
369 COPYOUT(p, &v, sizeof(v)); in __elfN()
374 COPYOUT(v, &md64, sizeof(md64)); in __elfN()
383 COPYOUT(v, &md, sizeof(md)); in __elfN()
396 COPYOUT((vm_offset_t)md.md_data, mdepend, in __elfN()
406 COPYOUT((vm_offset_t)md.md_data, &mver, sizeof(mver)); in __elfN()
491 COPYOUT(abase + j, &a, sizeof(a)); in __elfN()
504 COPYOUT(rbase + j, &r, sizeof(r)); in __elfN()
528 COPYOUT(ef->e_shdr[ef->symtabindex].sh_addr + symidx * sizeof(Elf_Sym), in __elfN()
HDload_elf.c44 #define COPYOUT(s,d,l) archsw.arch_copyout((vm_offset_t)(s), d, l) macro
646 COPYOUT(ef->hashtab, &ef->nbuckets, sizeof(ef->nbuckets)); in __elfN()
647 COPYOUT(ef->hashtab + 1, &ef->nchains, sizeof(ef->nchains)); in __elfN()
854 COPYOUT(p, &v, sizeof(v)); in __elfN()
861 COPYOUT(v, &md64, sizeof(md64)); in __elfN()
873 COPYOUT(v, &md32, sizeof(md32)); in __elfN()
885 COPYOUT(v, &md, sizeof(md)); in __elfN()
903 COPYOUT((vm_offset_t)md.md_data, mdepend, sizeof(*mdepend)); in __elfN()
911 COPYOUT((vm_offset_t)md.md_data, &mver, sizeof(mver)); in __elfN()
953 COPYOUT(&ef->buckets[hash % ef->nbuckets], &symnum, sizeof(symnum)); in __elfN()
[all …]
HDreloc_elf.c44 #define COPYOUT(s,d,l) archsw.arch_copyout((vm_offset_t)(s), d, l) macro
/NextBSD/sys/kern/
HDsys_process.c561 #define COPYOUT(k, u, s) wrap32 ? \ macro
566 #define COPYOUT(k, u, s) copyout(k, u, s) macro
637 error = COPYOUT(&r.pve, uap->addr, sizeof r.pve); in sys_ptrace()
640 error = COPYOUT(&r.piod, uap->addr, sizeof r.piod); in sys_ptrace()
643 error = COPYOUT(&r.reg, uap->addr, sizeof r.reg); in sys_ptrace()
646 error = COPYOUT(&r.fpreg, uap->addr, sizeof r.fpreg); in sys_ptrace()
649 error = COPYOUT(&r.dbreg, uap->addr, sizeof r.dbreg); in sys_ptrace()
659 #undef COPYOUT
/NextBSD/contrib/ipfilter/
HDip_fil_compat.c3086 error = COPYOUT(old, obj->ipfo_ptr, sizeof(*old));
3092 error = COPYOUT(fr->fr_data, dst,
3110 error = COPYOUT(old, obj->ipfo_ptr, sizeof(*old));
3126 error = COPYOUT(old, obj->ipfo_ptr, sizeof(*old));
3146 error = COPYOUT(old, obj->ipfo_ptr, sizeof(*old));
3161 error = COPYOUT(old, obj->ipfo_ptr, sizeof(*old));
3183 error = COPYOUT(old, obj->ipfo_ptr, sizeof(*old));
3198 error = COPYOUT(old, obj->ipfo_ptr, sizeof(*old));
3217 error = COPYOUT(old, obj->ipfo_ptr, sizeof(*old));
3232 error = COPYOUT(old, obj->ipfo_ptr, sizeof(*old));
[all …]
HDip_dstlist.c443 err = COPYOUT(next, iter->ili_data, sizeof(*next));
453 err = COPYOUT(nextnode, iter->ili_data, sizeof(*nextnode));
813 err = COPYOUT(&stats, op->iplo_struct, sizeof(stats));
/NextBSD/sys/boot/fdt/
HDfdt_loader_cmd.c55 #define COPYOUT(s,d,l) archsw.arch_copyout(s, d, l) macro
171 COPYOUT(symtab, &sym, sizeof(sym)); in fdt_find_static_dtb()
193 COPYOUT(va, &header, sizeof(header)); in fdt_load_dtb()
222 COPYOUT(va, fdtp, fdtp_size); in fdt_load_dtb()
/NextBSD/sys/contrib/ipfilter/netinet/
HDip_dstlist.c443 err = COPYOUT(next, iter->ili_data, sizeof(*next));
453 err = COPYOUT(nextnode, iter->ili_data, sizeof(*nextnode));
813 err = COPYOUT(&stats, op->iplo_struct, sizeof(stats));
HDip_pool.c626 err = COPYOUT(&stats, op->iplo_struct, sizeof(stats));
1368 err = COPYOUT(nextipo, ilp->ili_data, sizeof(*nextipo));
1381 err = COPYOUT(nextnode, ilp->ili_data, sizeof(*nextnode));
HDip_htable.c256 err = COPYOUT(&stats, op->iplo_struct, sizeof(stats));
1309 err = COPYOUT(nextiph, ilp->ili_data, sizeof(*nextiph));
1322 err = COPYOUT(nextnode, ilp->ili_data, sizeof(*nextnode));
HDip_compat.h141 # define COPYOUT(a,b,c) copyout((caddr_t)(a), (caddr_t)(b), (c)) macro
390 # define COPYOUT(a,b,c) bcopywrap((a), (b), (c)) macro
601 # define COPYOUT(a,b,c) (bcopy((caddr_t)(a), (caddr_t)(b), (c)), 0) macro
HDfil.c4227 error = COPYOUT(src, ca, size);
4996 error = COPYOUT(f->fr_data, uptr,
5427 if (COPYOUT(&res, data, sizeof(res)) != 0) {
5440 if (COPYOUT(&res, data, sizeof(res)) != 0) {
6502 error = COPYOUT(ptr, obj.ipfo_ptr, sz);
6567 error = COPYOUT(ptr, obj.ipfo_ptr, obj.ipfo_size);
6623 error = COPYOUT(ptr, obj->ipfo_ptr, obj->ipfo_size);
HDip_frag.c1244 error = COPYOUT(next, itp->igi_data, sizeof(*next));
HDip_nat.c6710 error = COPYOUT(nexthm, objp->ipfo_ptr, sizeof(*nexthm));
7972 error = COPYOUT(softn->ipf_nat_stats.ns_side[0].ns_bucketlen,
7978 error = COPYOUT(softn->ipf_nat_stats.ns_side[1].ns_bucketlen,
HDip_state.c4932 error = COPYOUT(softs->ipf_state_stats.iss_bucketlen, table.ita_table,
/NextBSD/sys/sys/mach/
HDrpc.h72 #define COPYOUT(map, from, to, count) \ macro