Lines Matching full:tables
104 # Stage 2: process each file and find all sysctl tables
114 match($0, /static( const)? struct ctl_table ([^][]+)/, tables)
115 curtable = tables[2]
142 match($0, /register_sysctl(|_init|_sz)\("([^"]+)" *, *([^,)]+)/, tables)
143 if (debug) print "Registering table " tables[3] " at " tables[2]
144 if (tables[2] == table) {
145 for (entry in entries[tables[3]]) {
160 match($0, /__register_sysctl_table\([^,]+, *"([^"]+)" *, *([^,]+)/, tables)
161 if (debug) print "Registering variable table " tables[2] " at " tables[1]
162 if (tables[1] == table && tables[2] in vars) {
163 for (entry in entries[vars[tables[2]]]) {