Lines Matching defs:last_item
731 mib_item_t *last_item = NULL;
775 for (last_item = first_item; last_item;
776 last_item = last_item->next_item)
779 last_item->group,
780 last_item->mib_id,
781 last_item->length);
830 if (last_item != NULL)
831 last_item->next_item = temp;
834 last_item = temp;
835 last_item->next_item = NULL;
836 last_item->group = req->level;
837 last_item->mib_id = req->name;
838 last_item->length = req->len;
839 last_item->valp = malloc((int)req->len);
840 if (last_item->valp == NULL)
845 j, last_item->group, last_item->mib_id,
846 last_item->length);
848 databuf.maxlen = last_item->length;
849 databuf.buf = (char *)last_item->valp;