Searched refs:oid2_len (Results 1 – 2 of 2) sorted by relevance
/third_party/lwip/src/apps/snmp/ |
D | snmp_core.c | 591 …ine(struct snmp_obj_id *target, const u32_t *oid1, u8_t oid1_len, const u32_t *oid2, u8_t oid2_len) in snmp_oid_combine() argument 594 snmp_oid_append(target, oid2, oid2_len); in snmp_oid_combine() 623 snmp_oid_compare(const u32_t *oid1, u8_t oid1_len, const u32_t *oid2, u8_t oid2_len) in snmp_oid_compare() argument 627 …SERT("'oid2' param must not be NULL or 'oid2_len' param be 0!", (oid2 != NULL) || (oid2_len == 0)); in snmp_oid_compare() 629 while ((level < oid1_len) && (level < oid2_len)) { in snmp_oid_compare() 643 if (oid1_len < oid2_len) { in snmp_oid_compare() 646 if (oid1_len > oid2_len) { in snmp_oid_compare() 664 snmp_oid_equal(const u32_t *oid1, u8_t oid1_len, const u32_t *oid2, u8_t oid2_len) in snmp_oid_equal() argument 666 return (snmp_oid_compare(oid1, oid1_len, oid2, oid2_len) == 0) ? 1 : 0; in snmp_oid_equal() 754 snmp_get_mib_between(const u32_t *oid1, u8_t oid1_len, const u32_t *oid2, u8_t oid2_len) in snmp_get_mib_between() argument [all …]
|
/third_party/lwip/src/include/lwip/apps/ |
D | snmp_core.h | 298 …ne(struct snmp_obj_id* target, const u32_t *oid1, u8_t oid1_len, const u32_t *oid2, u8_t oid2_len); 301 u8_t snmp_oid_equal(const u32_t *oid1, u8_t oid1_len, const u32_t *oid2, u8_t oid2_len); 302 s8_t snmp_oid_compare(const u32_t *oid1, u8_t oid1_len, const u32_t *oid2, u8_t oid2_len);
|