| tag | line | file | source code |
| table | 176 | drivers/block/triton.c | unsigned long size, addr, *table = HWIF(drive)->dmatable; |
| table | 213 | drivers/block/triton.c | *table++ = addr; |
| table | 214 | drivers/block/triton.c | *table++ = bcount; |
| table | 221 | drivers/block/triton.c | *--table |= 0x80000000; /* set End-Of-Table (EOT) bit */ |
| table | 1972 | drivers/char/console.c | console_driver.table = console_table; |
| table | 2786 | drivers/char/cyclades.c | cy_serial_driver.table = serial_table; |
| table | 4012 | drivers/char/istallion.c | stli_serial.table = stli_ttys; |
| table | 1200 | drivers/char/keyboard.c | ttytab = console_driver.table; |
| table | 235 | drivers/char/pty.c | pty_driver.table = pty_table; |
| table | 255 | drivers/char/pty.c | pty_slave_driver.table = ttyp_table; |
| table | 2684 | drivers/char/scc.c | scc_driver.table = scc_table; |
| table | 2680 | drivers/char/serial.c | serial_driver.table = serial_table; |
| table | 2892 | drivers/char/stallion.c | stl_serial.table = stl_ttys; |
| table | 814 | drivers/char/tty_io.c | tty_loc = &driver->table[idx]; |
| table | 850 | drivers/char/tty_io.c | o_tty_loc = &driver->other->table[idx]; |
| table | 997 | drivers/char/tty_io.c | if (tty != tty->driver.table[idx]) { |
| table | 1027 | drivers/char/tty_io.c | if (o_tty != tty->driver.other->table[idx]) { |
| table | 1077 | drivers/char/tty_io.c | tty->driver.other->table[idx] = NULL; |
| table | 1114 | 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 | 69 | drivers/char/vt.c | extern int con_set_trans_old(unsigned char * table); |
| table | 70 | drivers/char/vt.c | extern int con_get_trans_old(unsigned char * table); |
| table | 71 | drivers/char/vt.c | extern int con_set_trans_new(unsigned short * table); |
| table | 72 | drivers/char/vt.c | extern int con_get_trans_new(unsigned short * table); |
| table | 115 | drivers/char/vt.c | if ( console_driver.table[i] ) |
| table | 117 | drivers/char/vt.c | if ( row ) console_driver.table[i]->winsize.ws_row = row; |
| table | 118 | drivers/char/vt.c | if ( col ) console_driver.table[i]->winsize.ws_col = col; |
| 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 | 154 | drivers/sound/audio.c | translate_bytes (const unsigned char *table, unsigned char *buff, int n) |
| table | 162 | drivers/sound/audio.c | buff[i] = table[buff[i]]; |
| table | 167 | drivers/sound/audio.c | translate_bytes (const void *table, void *buff, int n) |
| table | 176 | drivers/sound/audio.c | : "b" ((long) table), "c" (n), "D" ((long) buff), "S" ((long) buff) |
| table | 81 | include/linux/sysctl.h | typedef int ctl_handler (ctl_table *table, int *name, int nlen, |
| table | 98 | include/linux/sysctl.h | extern int do_sysctl_strategy (ctl_table *table, |
| table | 175 | include/linux/sysctl.h | struct ctl_table_header * register_sysctl_table(ctl_table * table, |
| table | 177 | 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 | 393 | kernel/module.c | sys_get_kernel_syms(struct kernel_sym *table) |
| table | 412 | kernel/module.c | if (table != NULL) { |
| table | 413 | kernel/module.c | to = table; |
| table | 415 | kernel/module.c | if ((i = verify_area(VERIFY_WRITE, to, nmodsyms * sizeof(*table)))) |
| table | 214 | kernel/sysctl.c | static inline int ctl_perm(ctl_table *table, int op) |
| table | 216 | kernel/sysctl.c | return test_perm(table->mode, op); |
| table | 222 | kernel/sysctl.c | ctl_table *table, void **context) |
| table | 229 | kernel/sysctl.c | for ( ; table->ctl_name; table++) { |
| table | 230 | kernel/sysctl.c | if (get_user(name) == table->ctl_name || |
| table | 231 | kernel/sysctl.c | table->ctl_name == CTL_ANY) { |
| table | 232 | kernel/sysctl.c | if (table->child) { |
| table | 233 | kernel/sysctl.c | if (ctl_perm(table, 001)) |
| table | 235 | kernel/sysctl.c | if (table->strategy) { |
| table | 236 | kernel/sysctl.c | error = table->strategy( |
| table | 237 | kernel/sysctl.c | table, name, nlen, |
| table | 245 | kernel/sysctl.c | table = table->child; |
| table | 248 | kernel/sysctl.c | error = do_sysctl_strategy(table, name, nlen, |
| table | 258 | kernel/sysctl.c | int do_sysctl_strategy (ctl_table *table, |
| table | 269 | kernel/sysctl.c | if (ctl_perm(table, op)) |
| table | 272 | kernel/sysctl.c | if (table->strategy) { |
| table | 273 | kernel/sysctl.c | rc = table->strategy(table, name, nlen, oldval, oldlenp, |
| table | 283 | kernel/sysctl.c | if (table->data && table->maxlen) { |
| table | 286 | kernel/sysctl.c | if (len > table->maxlen) |
| table | 287 | kernel/sysctl.c | len = table->maxlen; |
| table | 288 | kernel/sysctl.c | memcpy_tofs(oldval, table->data, len); |
| table | 293 | kernel/sysctl.c | if (len > table->maxlen) |
| table | 294 | kernel/sysctl.c | len = table->maxlen; |
| table | 295 | kernel/sysctl.c | memcpy_fromfs(table->data, newval, len); |
| table | 306 | kernel/sysctl.c | static int do_securelevel_strategy (ctl_table *table, |
| table | 323 | kernel/sysctl.c | struct ctl_table_header *register_sysctl_table(ctl_table * table, |
| table | 330 | kernel/sysctl.c | *tmp = ((struct ctl_table_header) {table, DNODE_NULL}); |
| table | 336 | kernel/sysctl.c | register_proc_table(table, &proc_sys_root); |
| table | 341 | kernel/sysctl.c | void unregister_sysctl_table(struct ctl_table_header * table) |
| table | 343 | kernel/sysctl.c | DLIST_DELETE(table, ctl_entry); |
| table | 345 | kernel/sysctl.c | unregister_proc_table(table->ctl_table, &proc_sys_root); |
| table | 356 | kernel/sysctl.c | static void register_proc_table(ctl_table * table, struct proc_dir_entry *root) |
| table | 360 | kernel/sysctl.c | for (; table->ctl_name; table++) { |
| table | 362 | kernel/sysctl.c | if (!table->procname) |
| table | 365 | kernel/sysctl.c | if (!table->proc_handler && |
| table | 366 | kernel/sysctl.c | !table->child) |
| table | 371 | kernel/sysctl.c | de->namelen = strlen(table->procname); |
| table | 372 | kernel/sysctl.c | de->name = table->procname; |
| table | 373 | kernel/sysctl.c | de->mode = table->mode; |
| table | 381 | kernel/sysctl.c | de->data = (void *) table; |
| table | 383 | kernel/sysctl.c | if (table->proc_handler) { |
| table | 393 | kernel/sysctl.c | table->de = de; |
| table | 396 | kernel/sysctl.c | register_proc_table(table->child, de); |
| table | 400 | kernel/sysctl.c | static void unregister_proc_table(ctl_table * table, struct proc_dir_entry *root) |
| table | 403 | kernel/sysctl.c | for (; table->ctl_name; table++) { |
| table | 404 | kernel/sysctl.c | if (!(de = table->de)) |
| table | 407 | kernel/sysctl.c | if (!table->child) { |
| table | 411 | kernel/sysctl.c | unregister_proc_table(table->child, de); |
| table | 424 | kernel/sysctl.c | struct ctl_table *table; |
| table | 434 | kernel/sysctl.c | table = (struct ctl_table *) de->data; |
| table | 435 | kernel/sysctl.c | if (!table || !table->proc_handler) |
| table | 438 | kernel/sysctl.c | if (ctl_perm(table, op)) |
| table | 442 | kernel/sysctl.c | error = (*table->proc_handler) (table, write, file, buf, &res); |
| table | 465 | kernel/sysctl.c | int proc_dostring(ctl_table *table, int write, struct file *filp, |
| table | 471 | kernel/sysctl.c | if (!table->data || !table->maxlen || !*lenp || |
| table | 483 | kernel/sysctl.c | if (len >= table->maxlen) |
| table | 484 | kernel/sysctl.c | len = table->maxlen-1; |
| table | 485 | kernel/sysctl.c | memcpy_fromfs(table->data, buffer, len); |
| table | 486 | kernel/sysctl.c | ((char *) table->data)[len] = 0; |
| table | 489 | kernel/sysctl.c | len = strlen(table->data) + 1; |
| table | 490 | kernel/sysctl.c | if (len > table->maxlen) |
| table | 491 | kernel/sysctl.c | len = table->maxlen; |
| table | 495 | kernel/sysctl.c | memcpy_tofs(buffer, table->data, len-1); |
| table | 508 | kernel/sysctl.c | int proc_dointvec(ctl_table *table, int write, struct file *filp, |
| table | 515 | kernel/sysctl.c | if (!table->data || !table->maxlen || !*lenp || |
| table | 521 | kernel/sysctl.c | i = (int *) table->data; |
| table | 522 | kernel/sysctl.c | vleft = table->maxlen / sizeof(int); |
| table | 585 | kernel/sysctl.c | int proc_dostring(ctl_table *table, int write, struct file *filp, |
| table | 591 | kernel/sysctl.c | int proc_dointvec(ctl_table *table, int write, struct file *filp, |
| table | 605 | kernel/sysctl.c | int sysctl_string(ctl_table *table, int *name, int nlen, |
| table | 611 | kernel/sysctl.c | if (!table->data || !table->maxlen) |
| table | 616 | kernel/sysctl.c | l = strlen(table->data); |
| table | 618 | kernel/sysctl.c | if (len >= table->maxlen) |
| table | 619 | kernel/sysctl.c | len = table->maxlen; |
| table | 620 | kernel/sysctl.c | memcpy_tofs(oldval, table->data, len); |
| table | 626 | kernel/sysctl.c | if (len > table->maxlen) |
| table | 627 | kernel/sysctl.c | len = table->maxlen; |
| table | 628 | kernel/sysctl.c | memcpy_fromfs(table->data, newval, len); |
| table | 629 | kernel/sysctl.c | if (len == table->maxlen) |
| table | 631 | kernel/sysctl.c | ((char *) table->data)[len] = 0; |