tag | line | file | source code |
copy | 24 | fs/msdos/fat.c | int first,last,next,copy; |
copy | 79 | fs/msdos/fat.c | for (copy = 1; copy < MSDOS_SB(sb)->fats; copy++) { |
copy | 82 | fs/msdos/fat.c | fat_length*copy,&c_data))) break; |
copy | 88 | fs/msdos/fat.c | SECTOR_BITS)+MSDOS_SB(sb)->fat_length*copy |
copy | 150 | include/linux/netdevice.h | unsigned short copy:1; |
copy | 122 | net/inet/dev.c | pt->copy=0; /* Assume we will not be copying the buffer before |
copy | 138 | net/inet/dev.c | pt->copy = 1; /* We will need to copy */ |
copy | 212 | net/inet/dev.c | if (!pt->copy && lpt) |
copy | 213 | net/inet/dev.c | lpt->copy = 0; |
copy | 723 | net/inet/dev.c | if (ptype->copy || nitcount) |
copy | 1580 | net/inet/ip.c | if (ipprot->copy) |
copy | 108 | net/inet/protocol.c | prot->copy = 0; |
copy | 114 | net/inet/protocol.c | prot->copy = 1; |
copy | 147 | net/inet/protocol.c | if (p->copy == 0 && lp != NULL) lp->copy = 0; |
copy | 45 | net/inet/protocol.h | unsigned char copy:1; |
copy | 850 | net/inet/tcp.c | int copy; |
copy | 977 | net/inet/tcp.c | copy = min(sk->mss - (skb->len - hdrlen), len); |
copy | 979 | net/inet/tcp.c | if (copy <= 0) |
copy | 982 | net/inet/tcp.c | copy = 0; |
copy | 985 | net/inet/tcp.c | memcpy_fromfs(skb->data + skb->len, from, copy); |
copy | 986 | net/inet/tcp.c | skb->len += copy; |
copy | 987 | net/inet/tcp.c | from += copy; |
copy | 988 | net/inet/tcp.c | copied += copy; |
copy | 989 | net/inet/tcp.c | len -= copy; |
copy | 990 | net/inet/tcp.c | sk->write_seq += copy; |
copy | 1012 | net/inet/tcp.c | copy = sk->window_seq - sk->write_seq; |
copy | 1013 | net/inet/tcp.c | if (copy <= 0 || copy < (sk->max_window >> 1) || copy > sk->mss) |
copy | 1014 | net/inet/tcp.c | copy = sk->mss; |
copy | 1015 | net/inet/tcp.c | if (copy > len) |
copy | 1016 | net/inet/tcp.c | copy = len; |
copy | 1023 | net/inet/tcp.c | if (copy < sk->mss && !(flags & MSG_OOB)) |
copy | 1043 | net/inet/tcp.c | skb = prot->wmalloc(sk, copy + prot->max_header , 0, GFP_KERNEL); |
copy | 1115 | net/inet/tcp.c | tmp = tcp_build_header((struct tcphdr *)buff, sk, len-copy); |
copy | 1128 | net/inet/tcp.c | ((struct tcphdr *)buff)->urg_ptr = ntohs(copy); |
copy | 1131 | net/inet/tcp.c | memcpy_fromfs(buff+tmp, from, copy); |
copy | 1133 | net/inet/tcp.c | from += copy; |
copy | 1134 | net/inet/tcp.c | copied += copy; |
copy | 1135 | net/inet/tcp.c | len -= copy; |
copy | 1136 | net/inet/tcp.c | skb->len += copy; |
copy | 1138 | net/inet/tcp.c | sk->write_seq += copy; |