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 | 685 | 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 | 1691 | 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 | 774 | net/inet/tcp.c | int copy; |
copy | 879 | net/inet/tcp.c | copy = min(sk->mss - (skb->len - hdrlen), len); |
copy | 881 | net/inet/tcp.c | if (copy <= 0) { |
copy | 883 | net/inet/tcp.c | copy = 0; |
copy | 886 | net/inet/tcp.c | memcpy_fromfs(skb->data + skb->len, from, copy); |
copy | 887 | net/inet/tcp.c | skb->len += copy; |
copy | 888 | net/inet/tcp.c | from += copy; |
copy | 889 | net/inet/tcp.c | copied += copy; |
copy | 890 | net/inet/tcp.c | len -= copy; |
copy | 891 | net/inet/tcp.c | sk->write_seq += copy; |
copy | 914 | net/inet/tcp.c | copy = sk->window_seq - sk->write_seq; |
copy | 915 | net/inet/tcp.c | if (copy <= 0 || copy < (sk->max_window >> 1) || copy > sk->mss) |
copy | 916 | net/inet/tcp.c | copy = sk->mss; |
copy | 917 | net/inet/tcp.c | if (copy > len) |
copy | 918 | net/inet/tcp.c | copy = len; |
copy | 922 | net/inet/tcp.c | if (copy < sk->mss && !(flags & MSG_OOB)) { |
copy | 933 | net/inet/tcp.c | skb = prot->wmalloc(sk, copy + prot->max_header , 0, GFP_KERNEL); |
copy | 990 | net/inet/tcp.c | tmp = tcp_build_header((struct tcphdr *)buff, sk, len-copy); |
copy | 1001 | net/inet/tcp.c | ((struct tcphdr *)buff)->urg_ptr = ntohs(copy); |
copy | 1004 | net/inet/tcp.c | memcpy_fromfs(buff+tmp, from, copy); |
copy | 1006 | net/inet/tcp.c | from += copy; |
copy | 1007 | net/inet/tcp.c | copied += copy; |
copy | 1008 | net/inet/tcp.c | len -= copy; |
copy | 1009 | net/inet/tcp.c | skb->len += copy; |
copy | 1011 | net/inet/tcp.c | sk->write_seq += copy; |