Searched defs:copyflag (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/syscall/
H A Dsendfile.c931 uint_t copyflag; local
933 copyflag = stp != NULL ? stp->sd_copyflag :
947 copyflag & STZCVMUNSAFE) {
949 } else if (copyflag & STZCVMSAFE) {
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsocksyscalls.c2920 uint_t copyflag; local
2921 copyflag = stp != NULL ? stp->sd_copyflag :
2923 if ((copyflag & (STZCVMSAFE|STZCVMUNSAFE)) == 0) {
2930 dozcopy = copyflag & STZCVMSAFE;
/illumos-gate/usr/src/uts/common/os/
H A Dstreamio.c3011 strcopyin_strioctl(void *from, void *to, int flag, int copyflag) argument
3016 if (copyflag & U_TO_K) {
3017 ASSERT((copyflag & K_TO_K) == 0);
3037 ASSERT(copyflag & K_TO_K);
3044 strcopyout_strioctl(void *from, void *to, int flag, int copyflag) argument
3049 if (copyflag & U_TO_K) {
3050 ASSERT((copyflag & K_TO_K) == 0);
3072 ASSERT(copyflag & K_TO_K);
3082 strcopyin_strioctl(void *from, void *to, int flag, int copyflag) argument
3084 return (strcopyin(from, to, sizeof (struct strioctl), copyflag));
3089 strcopyout_strioctl(void *from, void *to, int flag, int copyflag) argument
3191 strioctl(struct vnode *vp, int cmd, intptr_t arg, int flag, int copyflag, cred_t *crp, int *rvalp) argument
5881 int copyflag = (flag & (U_TO_K | K_TO_K)); local
[all...]
H A Dstrsubr.c4125 strcopyin(void *from, void *to, size_t len, int copyflag) argument
4127 if (copyflag & U_TO_K) {
4128 ASSERT((copyflag & K_TO_K) == 0);
4132 ASSERT(copyflag & K_TO_K);
4139 strcopyout(void *from, void *to, size_t len, int copyflag) argument
4141 if (copyflag & U_TO_K) {
4145 ASSERT(copyflag & K_TO_K);

Completed in 114 milliseconds