Lines Matching defs:table
17 static void *get_ipc(struct ctl_table *table)
19 char *which = table->data;
26 static int proc_ipc_dointvec(struct ctl_table *table, int write,
31 memcpy(&ipc_table, table, sizeof(ipc_table));
32 ipc_table.data = get_ipc(table);
37 static int proc_ipc_dointvec_minmax(struct ctl_table *table, int write,
42 memcpy(&ipc_table, table, sizeof(ipc_table));
43 ipc_table.data = get_ipc(table);
48 static int proc_ipc_dointvec_minmax_orphans(struct ctl_table *table, int write,
52 int err = proc_ipc_dointvec_minmax(table, write, buffer, lenp, ppos);
61 static int proc_ipc_doulongvec_minmax(struct ctl_table *table, int write,
65 memcpy(&ipc_table, table, sizeof(ipc_table));
66 ipc_table.data = get_ipc(table);
72 static int proc_ipc_auto_msgmni(struct ctl_table *table, int write,
78 memcpy(&ipc_table, table, sizeof(ipc_table));
87 static int proc_ipc_sem_dointvec(struct ctl_table *table, int write,
94 ret = proc_ipc_dointvec(table, write, buffer, lenp, ppos);