| tag | line | file | source code |
| check | 419 | drivers/net/slhc.c | deltaA = ntohs(th->check); |
| check | 513 | drivers/net/slhc.c | thp->check = htons(x); |
| check | 587 | drivers/net/slhc.c | ip->check = 0; |
| check | 600 | drivers/net/slhc.c | ((struct iphdr *)icp)->check = ip_csum((struct iphdr*)icp); |
| check | 69 | fs/msdos/inode.c | static int parse_options(char *options,char *check,char *conversion,uid_t *uid, |
| check | 74 | fs/msdos/inode.c | *check = 'n'; |
| check | 86 | fs/msdos/inode.c | *check = *value; |
| check | 87 | fs/msdos/inode.c | else if (!strcmp(value,"relaxed")) *check = 'r'; |
| check | 88 | fs/msdos/inode.c | else if (!strcmp(value,"normal")) *check = 'n'; |
| check | 89 | fs/msdos/inode.c | else if (!strcmp(value,"strict")) *check = 's'; |
| check | 151 | fs/msdos/inode.c | char check,conversion; |
| check | 156 | fs/msdos/inode.c | if (!parse_options((char *) data,&check,&conversion,&uid,&gid,&umask, |
| check | 223 | fs/msdos/inode.c | "uid=%d,gid=%d,umask=%03o%s]\n",MSDOS_SB(s)->fat_bits,check, |
| check | 241 | fs/msdos/inode.c | MSDOS_SB(s)->name_check = check; |
| check | 125 | fs/select.c | if (FD_ISSET(i,in) && check(SEL_IN,wait,current->files->fd[i])) { |
| check | 130 | fs/select.c | if (FD_ISSET(i,out) && check(SEL_OUT,wait,current->files->fd[i])) { |
| check | 135 | fs/select.c | if (FD_ISSET(i,ex) && check(SEL_EX,wait,current->files->fd[i])) { |
| check | 92 | include/linux/ip.h | unsigned short check; |
| check | 55 | include/linux/tcp.h | unsigned short check; |
| check | 25 | include/linux/udp.h | unsigned short check; |
| check | 550 | net/inet/ip.c | iph->check = 0; |
| check | 551 | net/inet/ip.c | iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl); |
| check | 609 | net/inet/tcp.c | th->check = 0; |
| check | 610 | net/inet/tcp.c | th->check = tcp_check(th, len, saddr, daddr); |
| check | 652 | net/inet/tcp.c | th->check = 0; |
| check | 234 | net/inet/udp.c | uh->check = 0; |
| check | 237 | net/inet/udp.c | uh->check = udp_check(uh, len, saddr, daddr); |
| check | 244 | net/inet/udp.c | if (uh->check == 0) |
| check | 245 | net/inet/udp.c | uh->check = 0xffff; |
| check | 599 | net/inet/udp.c | if (uh->check && udp_check(uh, len, saddr, daddr)) |