Lines Matching refs:tables
107 match($0, /static struct ctl_path ([^][]+)/, tables)
108 curpath = tables[1]
113 match($0, /static struct ctl_table ([^][]+)/, tables)
114 curtable = tables[1]
150 match($0, /register_sysctl_table\(([^)]+)\)/, tables)
151 if (debug) print "Registering table " tables[1]
152 if (children[tables[1]][table]) {
153 for (entry in entries[children[tables[1]][table]]) {
160 match($0, /register_sysctl_paths\(([^)]+), ([^)]+)\)/, tables)
161 if (debug) print "Attaching table " tables[2] " to path " tables[1]
162 if (paths[tables[1]] == table) {
163 for (entry in entries[tables[2]]) {
167 split(paths[tables[1]], components, "/")