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