Lines Matching refs:chg_item
169 struct chg_list *chg_item;
292 chg_item = (struct chg_list *)
295 chg_item)) {
296 add_new_change_list_item(chg_item);
298 destroy_data((char *)chg_item);
779 parse_change_spec(full_input, input, pageno, chg_item)
783 struct chg_list *chg_item;
790 chg_item->pageno = pageno;
791 chg_item->next = NULL;
794 chg_item->byteno = (int)strtol(input, &p, 0);
799 if (chg_item->byteno < 2) {
801 chg_item->byteno);
806 chg_item->mode = CHG_MODE_UNDEFINED;
809 chg_item->mode = CHG_MODE_ABS;
813 chg_item->mode = CHG_MODE_SET;
818 chg_item->mode = CHG_MODE_CLR;
822 if (chg_item->mode == CHG_MODE_UNDEFINED) {
835 chg_item->value = (int)strtol(input, &p, 0);
845 chg_item->value = ~chg_item->value;
847 chg_item->value &= 0xff;
854 add_new_change_list_item(chg_item)
855 struct chg_list *chg_item;
860 change_list = chg_item;
864 cp->next = chg_item;
866 chg_item->next = NULL;