Lines Matching refs:item
126 Routine Description: copies scan result structure to scan merge list item
149 Return Value: Pointer to scan merge item
170 Routine Description: Looks for scan merge item in scan results array
172 scan_ptr - pointer to scan merge item
175 Return Value: 1 - if item was found, 0 - otherwise
194 res_ptr - pointer to scan result item
195 Return Value: pointer to new scan result item, or NULL
237 SHLIST *item, *del_item;
243 item = shListGetFirstItem(head);
244 while( item != NULL ) {
245 scan_ptr = (scan_merge_t *)(item->data);
248 item = shListGetNextItem(head, item);
257 item = shListFindItem( head, res_ptr, scan_equal );
258 if( item ) {
263 scan_ptr = (scan_merge_t *)(item->data);
282 item = shListGetFirstItem( head ); /* Add/Remove missing items */
283 while( item != NULL ) {
285 scan_ptr = (scan_merge_t *)(item->data);
289 del_item = item;
307 item = shListGetNextItem(head, item);
316 Routine Description: Gets scan_result pointer to item by bssid
320 Return Value: pointer to scan_result item
325 SHLIST *item;
329 item = shListGetFirstItem(head);
330 if( item == NULL )
333 cur_res = (scan_result_t *)&(((scan_merge_t *)(item->data))->scanres);
339 item = shListGetNextItem(head, item);
340 } while( item != NULL );