Lines Matching refs:last_item
84 mib_item_t *last_item = nilp(mib_item_t); in mibget() local
119 for (last_item = first_item; last_item; in mibget()
120 last_item = last_item->next_item) in mibget()
122 last_item->group, in mibget()
123 last_item->mib_id, in mibget()
124 last_item->length); in mibget()
170 if (last_item) in mibget()
171 last_item->next_item = temp; in mibget()
174 last_item = temp; in mibget()
175 last_item->next_item = nilp(mib_item_t); in mibget()
176 last_item->group = req->level; in mibget()
177 last_item->mib_id = req->name; in mibget()
178 last_item->length = req->len; in mibget()
179 last_item->valp = (char *)malloc(req->len); in mibget()
183 j, last_item->group, last_item->mib_id, in mibget()
184 last_item->length); in mibget()
186 databuf.maxlen = last_item->length; in mibget()
187 databuf.buf = last_item->valp; in mibget()