tag | line | file | source code |
copy | 23 | fs/msdos/fat.c | int first,last,next,copy; |
copy | 78 | fs/msdos/fat.c | for (copy = 1; copy < MSDOS_SB(sb)->fats; copy++) { |
copy | 81 | fs/msdos/fat.c | fat_length*copy,&c_data))) break; |
copy | 87 | fs/msdos/fat.c | SECTOR_BITS)+MSDOS_SB(sb)->fat_length*copy |
copy | 143 | include/linux/netdevice.h | unsigned short copy:1; |
copy | 116 | net/inet/dev.c | pt->copy=0; /* Assume we will not be copying the buffer before |
copy | 132 | net/inet/dev.c | pt->copy = 1; /* We will need to copy */ |
copy | 206 | net/inet/dev.c | if (!pt->copy && lpt) |
copy | 207 | net/inet/dev.c | lpt->copy = 0; |
copy | 678 | net/inet/dev.c | if (ptype->copy || nitcount) |
copy | 148 | net/inet/dev.h | unsigned short copy:1; |
copy | 197 | net/inet/ip.c | ipprot->handler, ipprot->protocol, ipprot->copy)); |
copy | 1697 | net/inet/ip.c | if (ipprot->copy) |
copy | 110 | net/inet/protocol.c | prot->copy = 0; |
copy | 116 | net/inet/protocol.c | prot->copy = 1; |
copy | 149 | net/inet/protocol.c | if (p->copy == 0 && lp != NULL) lp->copy = 0; |
copy | 45 | net/inet/protocol.h | unsigned char copy:1; |
copy | 783 | net/inet/tcp.c | int copy; |
copy | 916 | net/inet/tcp.c | copy = min(sk->mss - (skb->len - hdrlen), len); |
copy | 918 | net/inet/tcp.c | if (copy <= 0) |
copy | 921 | net/inet/tcp.c | copy = 0; |
copy | 924 | net/inet/tcp.c | memcpy_fromfs(skb->data + skb->len, from, copy); |
copy | 925 | net/inet/tcp.c | skb->len += copy; |
copy | 926 | net/inet/tcp.c | from += copy; |
copy | 927 | net/inet/tcp.c | copied += copy; |
copy | 928 | net/inet/tcp.c | len -= copy; |
copy | 929 | net/inet/tcp.c | sk->write_seq += copy; |
copy | 951 | net/inet/tcp.c | copy = sk->window_seq - sk->write_seq; |
copy | 952 | net/inet/tcp.c | if (copy <= 0 || copy < (sk->max_window >> 1) || copy > sk->mss) |
copy | 953 | net/inet/tcp.c | copy = sk->mss; |
copy | 954 | net/inet/tcp.c | if (copy > len) |
copy | 955 | net/inet/tcp.c | copy = len; |
copy | 962 | net/inet/tcp.c | if (copy < sk->mss && !(flags & MSG_OOB)) |
copy | 982 | net/inet/tcp.c | skb = prot->wmalloc(sk, copy + prot->max_header , 0, GFP_KERNEL); |
copy | 1057 | net/inet/tcp.c | tmp = tcp_build_header((struct tcphdr *)buff, sk, len-copy); |
copy | 1071 | net/inet/tcp.c | ((struct tcphdr *)buff)->urg_ptr = ntohs(copy); |
copy | 1074 | net/inet/tcp.c | memcpy_fromfs(buff+tmp, from, copy); |
copy | 1076 | net/inet/tcp.c | from += copy; |
copy | 1077 | net/inet/tcp.c | copied += copy; |
copy | 1078 | net/inet/tcp.c | len -= copy; |
copy | 1079 | net/inet/tcp.c | skb->len += copy; |
copy | 1081 | net/inet/tcp.c | sk->write_seq += copy; |