Lines Matching defs:opcode
167 return fticket_in_header(ftick)->opcode;
254 fsess_is_impl(struct mount *mp, int opcode)
258 return ((data->isimpl & (1ULL << opcode)) != 0);
263 fsess_maybe_impl(struct mount *mp, int opcode)
267 return ((data->notimpl & (1ULL << opcode)) == 0);
272 fsess_not_impl(struct mount *mp, int opcode)
276 return ((data->notimpl & (1ULL << opcode)) != 0);
281 fsess_set_impl(struct mount *mp, int opcode)
285 data->isimpl |= (1ULL << opcode);
289 fsess_set_notimpl(struct mount *mp, int opcode)
293 data->notimpl |= (1ULL << opcode);