tag | line | file | source code |
init | 187 | drivers/block/genhd.c | dev->init(); |
init | 1337 | drivers/net/depca.c | dev->init = &depca_probe; /* initialisation routine */ |
init | 202 | drivers/net/net_init.c | if (dev && dev->init) { |
init | 203 | drivers/net/net_init.c | if (dev->init(dev) != 0) { |
init | 2056 | drivers/net/sk_g16.c | (int) dev->next, (int) dev->init); |
init | 40 | include/linux/genhd.h | void (*init)(void); /* Initialization called before we do our thing */ |
init | 59 | include/linux/module.h | int (*init)(void); /* initialization routine */ |
init | 73 | include/linux/netdevice.h | int (*init)(struct device *dev); |
init | 72 | init/main.c | extern void init(void); |
init | 472 | init/main.c | init(); |
init | 207 | kernel/module.c | (unsigned long) rt.init, (unsigned long) rt.cleanup)); |
init | 249 | kernel/module.c | if ((*rt.init)() != 0) |
init | 655 | net/inet/af_inet.c | if (sk->prot->init) |
init | 657 | net/inet/af_inet.c | err = sk->prot->init(sk); |
init | 1449 | net/inet/dev.c | if (dev->init && dev->init(dev)) |
init | 225 | net/inet/sock.h | int (*init)(struct sock *sk); |