tag | line | file | source code |
table | 183 | drivers/block/triton.c | unsigned long size, addr, *table = HWIF(drive)->dmatable; |
table | 225 | drivers/block/triton.c | *table++ = addr; |
table | 226 | drivers/block/triton.c | *table++ = bcount; |
table | 233 | drivers/block/triton.c | *--table |= 0x80000000; /* set End-Of-Table (EOT) bit */ |
table | 2003 | drivers/char/console.c | console_driver.table = console_table; |
table | 2792 | drivers/char/cyclades.c | cy_serial_driver.table = serial_table; |
table | 4538 | drivers/char/istallion.c | stli_serial.table = stli_ttys; |
table | 1183 | drivers/char/keyboard.c | ttytab = console_driver.table; |
table | 239 | drivers/char/pty.c | pty_driver.table = pty_table; |
table | 259 | drivers/char/pty.c | pty_slave_driver.table = ttyp_table; |
table | 2684 | drivers/char/scc.c | scc_driver.table = scc_table; |
table | 2702 | drivers/char/serial.c | serial_driver.table = serial_table; |
table | 3167 | drivers/char/stallion.c | stl_serial.table = stl_ttys; |
table | 816 | drivers/char/tty_io.c | tty_loc = &driver->table[idx]; |
table | 852 | drivers/char/tty_io.c | o_tty_loc = &driver->other->table[idx]; |
table | 999 | drivers/char/tty_io.c | if (tty != tty->driver.table[idx]) { |
table | 1029 | drivers/char/tty_io.c | if (o_tty != tty->driver.other->table[idx]) { |
table | 1079 | drivers/char/tty_io.c | tty->driver.other->table[idx] = NULL; |
table | 1116 | drivers/char/tty_io.c | tty->driver.table[idx] = NULL; |
table | 35 | drivers/char/vt.c | #define VT_IS_IN_USE(i) (console_driver.table[i] && console_driver.table[i]->count) |
table | 70 | drivers/char/vt.c | extern int con_set_trans_old(unsigned char * table); |
table | 71 | drivers/char/vt.c | extern int con_get_trans_old(unsigned char * table); |
table | 72 | drivers/char/vt.c | extern int con_set_trans_new(unsigned short * table); |
table | 73 | drivers/char/vt.c | extern int con_get_trans_new(unsigned short * table); |
table | 116 | drivers/char/vt.c | if ( console_driver.table[i] ) |
table | 118 | drivers/char/vt.c | if ( row ) console_driver.table[i]->winsize.ws_row = row; |
table | 119 | drivers/char/vt.c | if ( col ) console_driver.table[i]->winsize.ws_col = col; |
table | 1146 | drivers/isdn/isdn_tty.c | m->tty_modem.table = m->modem_table; |
table | 92 | drivers/scsi/constants.c | const char **table = commands[ group(opcode) ]; |
table | 93 | drivers/scsi/constants.c | switch ((unsigned long) table) { |
table | 104 | drivers/scsi/constants.c | printk("%s ",table[opcode & 0x1f]); |
table | 178 | drivers/sound/audio.c | translate_bytes (const unsigned char *table, unsigned char *buff, int n) |
table | 186 | drivers/sound/audio.c | buff[i] = table[buff[i]]; |
table | 191 | drivers/sound/audio.c | translate_bytes (const void *table, void *buff, int n) |
table | 200 | drivers/sound/audio.c | : "b" ((long) table), "c" (n), "D" ((long) buff), "S" ((long) buff) |
table | 87 | include/linux/sysctl.h | typedef int ctl_handler (ctl_table *table, int *name, int nlen, |
table | 106 | include/linux/sysctl.h | extern int do_sysctl_strategy (ctl_table *table, |
table | 186 | include/linux/sysctl.h | struct ctl_table_header * register_sysctl_table(ctl_table * table, |
table | 188 | include/linux/sysctl.h | void unregister_sysctl_table(struct ctl_table_header * table); |
table | 116 | include/linux/tty_driver.h | struct tty_struct **table; |
table | 337 | kernel/module.c | sys_get_kernel_syms(struct kernel_sym *table) |
table | 356 | kernel/module.c | if (table != NULL) { |
table | 357 | kernel/module.c | to = table; |
table | 359 | kernel/module.c | if ((i = verify_area(VERIFY_WRITE, to, nmodsyms * sizeof(*table)))) |
table | 242 | kernel/sysctl.c | static inline int ctl_perm(ctl_table *table, int op) |
table | 244 | kernel/sysctl.c | return test_perm(table->mode, op); |
table | 250 | kernel/sysctl.c | ctl_table *table, void **context) |
table | 257 | kernel/sysctl.c | for ( ; table->ctl_name; table++) { |
table | 258 | kernel/sysctl.c | if (get_user(name) == table->ctl_name || |
table | 259 | kernel/sysctl.c | table->ctl_name == CTL_ANY) { |
table | 260 | kernel/sysctl.c | if (table->child) { |
table | 261 | kernel/sysctl.c | if (ctl_perm(table, 001)) |
table | 263 | kernel/sysctl.c | if (table->strategy) { |
table | 264 | kernel/sysctl.c | error = table->strategy( |
table | 265 | kernel/sysctl.c | table, name, nlen, |
table | 273 | kernel/sysctl.c | table = table->child; |
table | 276 | kernel/sysctl.c | error = do_sysctl_strategy(table, name, nlen, |
table | 286 | kernel/sysctl.c | int do_sysctl_strategy (ctl_table *table, |
table | 297 | kernel/sysctl.c | if (ctl_perm(table, op)) |
table | 300 | kernel/sysctl.c | if (table->strategy) { |
table | 301 | kernel/sysctl.c | rc = table->strategy(table, name, nlen, oldval, oldlenp, |
table | 311 | kernel/sysctl.c | if (table->data && table->maxlen) { |
table | 314 | kernel/sysctl.c | if (len > table->maxlen) |
table | 315 | kernel/sysctl.c | len = table->maxlen; |
table | 316 | kernel/sysctl.c | memcpy_tofs(oldval, table->data, len); |
table | 321 | kernel/sysctl.c | if (len > table->maxlen) |
table | 322 | kernel/sysctl.c | len = table->maxlen; |
table | 323 | kernel/sysctl.c | memcpy_fromfs(table->data, newval, len); |
table | 334 | kernel/sysctl.c | static int do_securelevel_strategy (ctl_table *table, |
table | 351 | kernel/sysctl.c | struct ctl_table_header *register_sysctl_table(ctl_table * table, |
table | 358 | kernel/sysctl.c | *tmp = ((struct ctl_table_header) {table, DNODE_NULL}); |
table | 364 | kernel/sysctl.c | register_proc_table(table, &proc_sys_root); |
table | 369 | kernel/sysctl.c | void unregister_sysctl_table(struct ctl_table_header * table) |
table | 371 | kernel/sysctl.c | DLIST_DELETE(table, ctl_entry); |
table | 373 | kernel/sysctl.c | unregister_proc_table(table->ctl_table, &proc_sys_root); |
table | 384 | kernel/sysctl.c | static void register_proc_table(ctl_table * table, struct proc_dir_entry *root) |
table | 388 | kernel/sysctl.c | for (; table->ctl_name; table++) { |
table | 390 | kernel/sysctl.c | if (!table->procname) |
table | 393 | kernel/sysctl.c | if (!table->proc_handler && |
table | 394 | kernel/sysctl.c | !table->child) |
table | 399 | kernel/sysctl.c | de->namelen = strlen(table->procname); |
table | 400 | kernel/sysctl.c | de->name = table->procname; |
table | 401 | kernel/sysctl.c | de->mode = table->mode; |
table | 409 | kernel/sysctl.c | de->data = (void *) table; |
table | 411 | kernel/sysctl.c | if (table->proc_handler) { |
table | 421 | kernel/sysctl.c | table->de = de; |
table | 424 | kernel/sysctl.c | register_proc_table(table->child, de); |
table | 428 | kernel/sysctl.c | static void unregister_proc_table(ctl_table * table, struct proc_dir_entry *root) |
table | 431 | kernel/sysctl.c | for (; table->ctl_name; table++) { |
table | 432 | kernel/sysctl.c | if (!(de = table->de)) |
table | 435 | kernel/sysctl.c | if (!table->child) { |
table | 439 | kernel/sysctl.c | unregister_proc_table(table->child, de); |
table | 452 | kernel/sysctl.c | struct ctl_table *table; |
table | 462 | kernel/sysctl.c | table = (struct ctl_table *) de->data; |
table | 463 | kernel/sysctl.c | if (!table || !table->proc_handler) |
table | 466 | kernel/sysctl.c | if (ctl_perm(table, op)) |
table | 470 | kernel/sysctl.c | error = (*table->proc_handler) (table, write, file, buf, &res); |
table | 493 | kernel/sysctl.c | int proc_dostring(ctl_table *table, int write, struct file *filp, |
table | 499 | kernel/sysctl.c | if (!table->data || !table->maxlen || !*lenp || |
table | 511 | kernel/sysctl.c | if (len >= table->maxlen) |
table | 512 | kernel/sysctl.c | len = table->maxlen-1; |
table | 513 | kernel/sysctl.c | memcpy_fromfs(table->data, buffer, len); |
table | 514 | kernel/sysctl.c | ((char *) table->data)[len] = 0; |
table | 517 | kernel/sysctl.c | len = strlen(table->data) + 1; |
table | 518 | kernel/sysctl.c | if (len > table->maxlen) |
table | 519 | kernel/sysctl.c | len = table->maxlen; |
table | 523 | kernel/sysctl.c | memcpy_tofs(buffer, table->data, len-1); |
table | 536 | kernel/sysctl.c | int proc_dointvec(ctl_table *table, int write, struct file *filp, |
table | 543 | kernel/sysctl.c | if (!table->data || !table->maxlen || !*lenp || |
table | 549 | kernel/sysctl.c | i = (int *) table->data; |
table | 550 | kernel/sysctl.c | vleft = table->maxlen / sizeof(int); |
table | 611 | kernel/sysctl.c | int proc_dointvec_minmax(ctl_table *table, int write, struct file *filp, |
table | 618 | kernel/sysctl.c | if (!table->data || !table->maxlen || !*lenp || |
table | 624 | kernel/sysctl.c | i = (int *) table->data; |
table | 625 | kernel/sysctl.c | min = (int *) table->extra1; |
table | 626 | kernel/sysctl.c | max = (int *) table->extra2; |
table | 627 | kernel/sysctl.c | vleft = table->maxlen / sizeof(int); |
table | 695 | kernel/sysctl.c | int proc_dostring(ctl_table *table, int write, struct file *filp, |
table | 701 | kernel/sysctl.c | int proc_dointvec(ctl_table *table, int write, struct file *filp, |
table | 707 | kernel/sysctl.c | int proc_dointvec_minmax(ctl_table *table, int write, struct file *filp, |
table | 721 | kernel/sysctl.c | int sysctl_string(ctl_table *table, int *name, int nlen, |
table | 727 | kernel/sysctl.c | if (!table->data || !table->maxlen) |
table | 732 | kernel/sysctl.c | l = strlen(table->data); |
table | 734 | kernel/sysctl.c | if (len >= table->maxlen) |
table | 735 | kernel/sysctl.c | len = table->maxlen; |
table | 736 | kernel/sysctl.c | memcpy_tofs(oldval, table->data, len); |
table | 742 | kernel/sysctl.c | if (len > table->maxlen) |
table | 743 | kernel/sysctl.c | len = table->maxlen; |
table | 744 | kernel/sysctl.c | memcpy_fromfs(table->data, newval, len); |
table | 745 | kernel/sysctl.c | if (len == table->maxlen) |
table | 747 | kernel/sysctl.c | ((char *) table->data)[len] = 0; |
table | 757 | kernel/sysctl.c | int sysctl_intvec(ctl_table *table, int *name, int nlen, |
table | 767 | kernel/sysctl.c | if (!table->extra1 && !table->extra2) |
table | 770 | kernel/sysctl.c | if (newlen > table->maxlen) |
table | 771 | kernel/sysctl.c | newlen = table->maxlen; |
table | 775 | kernel/sysctl.c | min = (int *) table->extra1; |
table | 776 | kernel/sysctl.c | max = (int *) table->extra2; |