Lines Matching defs:column
54 /* check min. length (fixed row entry definition, column, row instance oid with at least one entry */
57 /* search column */
93 u32_t column = 0;
104 column = instance->instance_oid.id[1];
116 /* resolve column and value */
123 if (col_def->index == column) {
126 } else if ((col_def->index > column) && ((next_col_def == NULL) || (col_def->index < next_col_def->index))) {
133 /* no further column found */
150 row_oid.len = 0; /* reset row_oid because we switch to next column and start with the first entry there */
151 column = next_col_def->index + 1;
172 /* check min. length (fixed row entry definition, column, row instance oid with at least one entry */
183 /* search column */
213 LWIP_DEBUGF(SNMP_DEBUG, ("snmp_table_simple_get_instance(): unknown column data_type: %d\n", col_def->data_type));
232 u32_t column = 0;
243 column = instance->instance_oid.id[1];
251 /* resolve column and value */
258 if (col_def->index == column) {
261 } else if ((col_def->index > column) && ((next_col_def == NULL) ||
269 /* no further column found */
284 row_oid.len = 0; /* reset row_oid because we switch to next column and start with the first entry there */
285 column = next_col_def->index + 1;
305 LWIP_DEBUGF(SNMP_DEBUG, ("snmp_table_simple_get_instance(): unknown column data_type: %d\n", col_def->data_type));