modframe 92 net/can/gw.c } modframe; modframe 157 net/can/gw.c MODFUNC(mod_and_id, cf->can_id &= mod->modframe.and.can_id) modframe 158 net/can/gw.c MODFUNC(mod_and_len, cf->len &= mod->modframe.and.len) modframe 159 net/can/gw.c MODFUNC(mod_and_flags, cf->flags &= mod->modframe.and.flags) modframe 160 net/can/gw.c MODFUNC(mod_and_data, *(u64 *)cf->data &= *(u64 *)mod->modframe.and.data) modframe 161 net/can/gw.c MODFUNC(mod_or_id, cf->can_id |= mod->modframe.or.can_id) modframe 162 net/can/gw.c MODFUNC(mod_or_len, cf->len |= mod->modframe.or.len) modframe 163 net/can/gw.c MODFUNC(mod_or_flags, cf->flags |= mod->modframe.or.flags) modframe 164 net/can/gw.c MODFUNC(mod_or_data, *(u64 *)cf->data |= *(u64 *)mod->modframe.or.data) modframe 165 net/can/gw.c MODFUNC(mod_xor_id, cf->can_id ^= mod->modframe.xor.can_id) modframe 166 net/can/gw.c MODFUNC(mod_xor_len, cf->len ^= mod->modframe.xor.len) modframe 167 net/can/gw.c MODFUNC(mod_xor_flags, cf->flags ^= mod->modframe.xor.flags) modframe 168 net/can/gw.c MODFUNC(mod_xor_data, *(u64 *)cf->data ^= *(u64 *)mod->modframe.xor.data) modframe 169 net/can/gw.c MODFUNC(mod_set_id, cf->can_id = mod->modframe.set.can_id) modframe 170 net/can/gw.c MODFUNC(mod_set_len, cf->len = mod->modframe.set.len) modframe 171 net/can/gw.c MODFUNC(mod_set_flags, cf->flags = mod->modframe.set.flags) modframe 172 net/can/gw.c MODFUNC(mod_set_data, *(u64 *)cf->data = *(u64 *)mod->modframe.set.data) modframe 179 net/can/gw.c *(u64 *)(cf->data + i) &= *(u64 *)(mod->modframe.and.data + i); modframe 187 net/can/gw.c *(u64 *)(cf->data + i) |= *(u64 *)(mod->modframe.or.data + i); modframe 195 net/can/gw.c *(u64 *)(cf->data + i) ^= *(u64 *)(mod->modframe.xor.data + i); modframe 200 net/can/gw.c memcpy(cf->data, mod->modframe.set.data, CANFD_MAX_DLEN); modframe 589 net/can/gw.c memcpy(&mb.cf, &gwj->mod.modframe.and, sizeof(mb.cf)); modframe 596 net/can/gw.c memcpy(&mb.cf, &gwj->mod.modframe.or, sizeof(mb.cf)); modframe 603 net/can/gw.c memcpy(&mb.cf, &gwj->mod.modframe.xor, sizeof(mb.cf)); modframe 610 net/can/gw.c memcpy(&mb.cf, &gwj->mod.modframe.set, sizeof(mb.cf)); modframe 619 net/can/gw.c memcpy(&mb.cf, &gwj->mod.modframe.and, sizeof(mb.cf)); modframe 626 net/can/gw.c memcpy(&mb.cf, &gwj->mod.modframe.or, sizeof(mb.cf)); modframe 633 net/can/gw.c memcpy(&mb.cf, &gwj->mod.modframe.xor, sizeof(mb.cf)); modframe 640 net/can/gw.c memcpy(&mb.cf, &gwj->mod.modframe.set, sizeof(mb.cf)); modframe 762 net/can/gw.c canfdframecpy(&mod->modframe.and, &mb.cf); modframe 781 net/can/gw.c canfdframecpy(&mod->modframe.or, &mb.cf); modframe 800 net/can/gw.c canfdframecpy(&mod->modframe.xor, &mb.cf); modframe 819 net/can/gw.c canfdframecpy(&mod->modframe.set, &mb.cf); modframe 840 net/can/gw.c canframecpy(&mod->modframe.and, &mb.cf); modframe 856 net/can/gw.c canframecpy(&mod->modframe.or, &mb.cf); modframe 872 net/can/gw.c canframecpy(&mod->modframe.xor, &mb.cf); modframe 888 net/can/gw.c canframecpy(&mod->modframe.set, &mb.cf);