関数 | |
| void * | netsnmp_generic_row_first (void *table) |
| Retrieve the first row of the table. | |
| void * | netsnmp_generic_row_get (void *table, void *row) |
| Retrieve the given row from the table. | |
| void * | netsnmp_generic_row_next (void *table, void *row) |
| Retrieve the following row from the table. | |
| void * | netsnmp_generic_row_get_byidx (void *table, netsnmp_variable_list *indexes) |
| Retrieve the row with the specified index values. | |
| void * | netsnmp_generic_row_next_byidx (void *table, netsnmp_variable_list *indexes) |
| Retrieve the next row after the specified index values. | |
| void * | netsnmp_generic_row_get_byoid (void *table, oid *instance, size_t len) |
| Retrieve the row with the specified instance OIDs. | |
| void * | netsnmp_generic_row_next_byoid (void *table, oid *instance, size_t len) |
| Retrieve the next row after the specified instance OIDs. | |
| int | netsnmp_generic_row_count (void *table) |
| Report the number of rows in the table. | |
| int netsnmp_generic_row_count | ( | void * | table | ) |
| void* netsnmp_generic_row_first | ( | void * | table | ) |
| void* netsnmp_generic_row_get | ( | void * | table, | |
| void * | row | |||
| ) |
Retrieve the given row from the table.
This could either be the same data pointer, passed in, or a separate row structure sharing the same index values (or NULL).
This routine also provides a means to tell whether a given row is present in the table.
table_generic.c の 240 行で定義されています。
| void* netsnmp_generic_row_get_byidx | ( | void * | table, | |
| netsnmp_variable_list * | indexes | |||
| ) |
| void* netsnmp_generic_row_get_byoid | ( | void * | table, | |
| oid * | instance, | |||
| size_t | len | |||
| ) |
| void* netsnmp_generic_row_next | ( | void * | table, | |
| void * | row | |||
| ) |
Retrieve the following row from the table.
If the specified row is not present, this routine should return the entry next after the position this row would have occupied.
table_generic.c の 249 行で定義されています。
| void* netsnmp_generic_row_next_byidx | ( | void * | table, | |
| netsnmp_variable_list * | indexes | |||
| ) |
| void* netsnmp_generic_row_next_byoid | ( | void * | table, | |
| oid * | instance, | |||
| size_t | len | |||
| ) |
1.4.7