Lines Matching refs:last_item
453 mib_item_t *last_item = NULL; in mibget() local
489 for (last_item = first_item; last_item; in mibget()
490 last_item = last_item->next_item) in mibget()
492 last_item->group, in mibget()
493 last_item->mib_id, in mibget()
494 last_item->length); in mibget()
545 if (last_item) in mibget()
546 last_item->next_item = temp; in mibget()
549 last_item = temp; in mibget()
550 last_item->next_item = NULL; in mibget()
551 last_item->group = req->level; in mibget()
552 last_item->mib_id = req->name; in mibget()
553 last_item->length = req->len; in mibget()
554 last_item->valp = malloc(req->len); in mibget()
558 j, last_item->group, last_item->mib_id, in mibget()
559 last_item->length); in mibget()
561 databuf.maxlen = last_item->length; in mibget()
562 databuf.buf = last_item->valp; in mibget()
579 last_item = first_item; in mibget()
581 if (last_item->valp) { in mibget()
582 free(last_item->valp); in mibget()
584 free(last_item); in mibget()