Lines Matching defs:value
61 udp_get_value(struct snmp_node_instance *instance, void *value)
63 u32_t *uint_ptr = (u32_t *)value;
82 *((u64_t *)value) = val64;
88 *((u64_t *)value) = val64;
103 udp_endpointTable_get_cell_value_core(const u32_t *column, union snmp_variant_value *value)
108 value->u32 = 0; /* not supported */
118 udp_endpointTable_get_cell_value(const u32_t *column, const u32_t *row_oid, u8_t row_oid_len, union snmp_variant_value *value, u32_t *value_len)
155 return udp_endpointTable_get_cell_value_core(column, value);
165 udp_endpointTable_get_next_cell_instance_and_value(const u32_t *column, struct snmp_obj_id *row_oid, union snmp_variant_value *value, u32_t *value_len)
205 return udp_endpointTable_get_cell_value_core(column, value);
216 /* list of allowed value ranges for incoming OID */
226 udp_Table_get_cell_value_core(struct udp_pcb *pcb, const u32_t *column, union snmp_variant_value *value, u32_t *value_len)
233 value->u32 = ip_2_ip4(&pcb->local_ip)->addr;
237 value->u32 = pcb->local_port;
247 udp_Table_get_cell_value(const u32_t *column, const u32_t *row_oid, u8_t row_oid_len, union snmp_variant_value *value, u32_t *value_len)
268 return udp_Table_get_cell_value_core(pcb, column, value, value_len);
279 udp_Table_get_next_cell_instance_and_value(const u32_t *column, struct snmp_obj_id *row_oid, union snmp_variant_value *value, u32_t *value_len)
308 return udp_Table_get_cell_value_core((struct udp_pcb *)state.reference, column, value, value_len);