tag | line | file | source code |
table | 178 | drivers/block/triton.c | unsigned long size, addr, *table = HWIF(drive)->dmatable; |
table | 220 | drivers/block/triton.c | *table++ = addr; |
table | 221 | drivers/block/triton.c | *table++ = bcount; |
table | 228 | drivers/block/triton.c | *--table |= 0x80000000; /* set End-Of-Table (EOT) bit */ |
table | 2006 | drivers/char/console.c | console_driver.table = console_table; |
table | 2786 | drivers/char/cyclades.c | cy_serial_driver.table = serial_table; |
table | 4338 | drivers/char/istallion.c | stli_serial.table = stli_ttys; |
table | 1183 | 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 | 2699 | drivers/char/serial.c | serial_driver.table = serial_table; |
table | 2876 | 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 | 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 | 157 | drivers/sound/audio.c | translate_bytes (const unsigned char *table, unsigned char *buff, int n) |
table | 165 | drivers/sound/audio.c | buff[i] = table[buff[i]]; |
table | 170 | drivers/sound/audio.c | translate_bytes (const void *table, void *buff, int n) |
table | 179 | drivers/sound/audio.c | : "b" ((long) table), "c" (n), "D" ((long) buff), "S" ((long) buff) |
table | 82 | include/linux/sysctl.h | typedef int ctl_handler (ctl_table *table, int *name, int nlen, |
table | 99 | include/linux/sysctl.h | extern int do_sysctl_strategy (ctl_table *table, |
table | 176 | include/linux/sysctl.h | struct ctl_table_header * register_sysctl_table(ctl_table * table, |
table | 178 | 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 | 216 | kernel/sysctl.c | static inline int ctl_perm(ctl_table *table, int op) |
table | 218 | kernel/sysctl.c | return test_perm(table->mode, op); |
table | 224 | kernel/sysctl.c | ctl_table *table, void **context) |
table | 231 | kernel/sysctl.c | for ( ; table->ctl_name; table++) { |
table | 232 | kernel/sysctl.c | if (get_user(name) == table->ctl_name || |
table | 233 | kernel/sysctl.c | table->ctl_name == CTL_ANY) { |
table | 234 | kernel/sysctl.c | if (table->child) { |
table | 235 | kernel/sysctl.c | if (ctl_perm(table, 001)) |
table | 237 | kernel/sysctl.c | if (table->strategy) { |
table | 238 | kernel/sysctl.c | error = table->strategy( |
table | 239 | kernel/sysctl.c | table, name, nlen, |
table | 247 | kernel/sysctl.c | table = table->child; |
table | 250 | kernel/sysctl.c | error = do_sysctl_strategy(table, name, nlen, |
table | 260 | kernel/sysctl.c | int do_sysctl_strategy (ctl_table *table, |
table | 271 | kernel/sysctl.c | if (ctl_perm(table, op)) |
table | 274 | kernel/sysctl.c | if (table->strategy) { |
table | 275 | kernel/sysctl.c | rc = table->strategy(table, name, nlen, oldval, oldlenp, |
table | 285 | kernel/sysctl.c | if (table->data && table->maxlen) { |
table | 288 | kernel/sysctl.c | if (len > table->maxlen) |
table | 289 | kernel/sysctl.c | len = table->maxlen; |
table | 290 | kernel/sysctl.c | memcpy_tofs(oldval, table->data, len); |
table | 295 | kernel/sysctl.c | if (len > table->maxlen) |
table | 296 | kernel/sysctl.c | len = table->maxlen; |
table | 297 | kernel/sysctl.c | memcpy_fromfs(table->data, newval, len); |
table | 308 | kernel/sysctl.c | static int do_securelevel_strategy (ctl_table *table, |
table | 325 | kernel/sysctl.c | struct ctl_table_header *register_sysctl_table(ctl_table * table, |
table | 332 | kernel/sysctl.c | *tmp = ((struct ctl_table_header) {table, DNODE_NULL}); |
table | 338 | kernel/sysctl.c | register_proc_table(table, &proc_sys_root); |
table | 343 | kernel/sysctl.c | void unregister_sysctl_table(struct ctl_table_header * table) |
table | 345 | kernel/sysctl.c | DLIST_DELETE(table, ctl_entry); |
table | 347 | kernel/sysctl.c | unregister_proc_table(table->ctl_table, &proc_sys_root); |
table | 358 | kernel/sysctl.c | static void register_proc_table(ctl_table * table, struct proc_dir_entry *root) |
table | 362 | kernel/sysctl.c | for (; table->ctl_name; table++) { |
table | 364 | kernel/sysctl.c | if (!table->procname) |
table | 367 | kernel/sysctl.c | if (!table->proc_handler && |
table | 368 | kernel/sysctl.c | !table->child) |
table | 373 | kernel/sysctl.c | de->namelen = strlen(table->procname); |
table | 374 | kernel/sysctl.c | de->name = table->procname; |
table | 375 | kernel/sysctl.c | de->mode = table->mode; |
table | 383 | kernel/sysctl.c | de->data = (void *) table; |
table | 385 | kernel/sysctl.c | if (table->proc_handler) { |
table | 395 | kernel/sysctl.c | table->de = de; |
table | 398 | kernel/sysctl.c | register_proc_table(table->child, de); |
table | 402 | kernel/sysctl.c | static void unregister_proc_table(ctl_table * table, struct proc_dir_entry *root) |
table | 405 | kernel/sysctl.c | for (; table->ctl_name; table++) { |
table | 406 | kernel/sysctl.c | if (!(de = table->de)) |
table | 409 | kernel/sysctl.c | if (!table->child) { |
table | 413 | kernel/sysctl.c | unregister_proc_table(table->child, de); |
table | 426 | kernel/sysctl.c | struct ctl_table *table; |
table | 436 | kernel/sysctl.c | table = (struct ctl_table *) de->data; |
table | 437 | kernel/sysctl.c | if (!table || !table->proc_handler) |
table | 440 | kernel/sysctl.c | if (ctl_perm(table, op)) |
table | 444 | kernel/sysctl.c | error = (*table->proc_handler) (table, write, file, buf, &res); |
table | 467 | kernel/sysctl.c | int proc_dostring(ctl_table *table, int write, struct file *filp, |
table | 473 | kernel/sysctl.c | if (!table->data || !table->maxlen || !*lenp || |
table | 485 | kernel/sysctl.c | if (len >= table->maxlen) |
table | 486 | kernel/sysctl.c | len = table->maxlen-1; |
table | 487 | kernel/sysctl.c | memcpy_fromfs(table->data, buffer, len); |
table | 488 | kernel/sysctl.c | ((char *) table->data)[len] = 0; |
table | 491 | kernel/sysctl.c | len = strlen(table->data) + 1; |
table | 492 | kernel/sysctl.c | if (len > table->maxlen) |
table | 493 | kernel/sysctl.c | len = table->maxlen; |
table | 497 | kernel/sysctl.c | memcpy_tofs(buffer, table->data, len-1); |
table | 510 | kernel/sysctl.c | int proc_dointvec(ctl_table *table, int write, struct file *filp, |
table | 517 | kernel/sysctl.c | if (!table->data || !table->maxlen || !*lenp || |
table | 523 | kernel/sysctl.c | i = (int *) table->data; |
table | 524 | kernel/sysctl.c | vleft = table->maxlen / sizeof(int); |
table | 587 | kernel/sysctl.c | int proc_dostring(ctl_table *table, int write, struct file *filp, |
table | 593 | kernel/sysctl.c | int proc_dointvec(ctl_table *table, int write, struct file *filp, |
table | 607 | kernel/sysctl.c | int sysctl_string(ctl_table *table, int *name, int nlen, |
table | 613 | kernel/sysctl.c | if (!table->data || !table->maxlen) |
table | 618 | kernel/sysctl.c | l = strlen(table->data); |
table | 620 | kernel/sysctl.c | if (len >= table->maxlen) |
table | 621 | kernel/sysctl.c | len = table->maxlen; |
table | 622 | kernel/sysctl.c | memcpy_tofs(oldval, table->data, len); |
table | 628 | kernel/sysctl.c | if (len > table->maxlen) |
table | 629 | kernel/sysctl.c | len = table->maxlen; |
table | 630 | kernel/sysctl.c | memcpy_fromfs(table->data, newval, len); |
table | 631 | kernel/sysctl.c | if (len == table->maxlen) |
table | 633 | kernel/sysctl.c | ((char *) table->data)[len] = 0; |