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