Lines Matching refs:last_item
3068 mib_item_t *last_item = NULL; in mibget() local
3104 for (last_item = first_item; last_item != NULL; in mibget()
3105 last_item = last_item->next_item) { in mibget()
3107 ++i, last_item->group, in mibget()
3108 last_item->mib_id, in mibget()
3109 last_item->length); in mibget()
3158 if (last_item != NULL) in mibget()
3159 last_item->next_item = temp; in mibget()
3162 last_item = temp; in mibget()
3163 last_item->next_item = NULL; in mibget()
3164 last_item->group = req->level; in mibget()
3165 last_item->mib_id = req->name; in mibget()
3166 last_item->length = req->len; in mibget()
3167 last_item->valp = malloc(req->len); in mibget()
3171 j, last_item->group, last_item->mib_id, in mibget()
3172 last_item->length); in mibget()
3175 databuf.maxlen = last_item->length; in mibget()
3176 databuf.buf = (char *)last_item->valp; in mibget()
3195 last_item = first_item; in mibget()
3197 free(last_item); in mibget()