• Home
  • Raw
  • Download

Lines Matching refs:type

39 				PV_TYPE type, PI_HANDLER func);
41 PV_TYPE type, PI_HANDLER func);
43 PV_TYPE type, PI_HANDLER func);
45 PV_TYPE type, PI_HANDLER func);
48 PV_TYPE type, PI_HANDLER func);
50 PV_TYPE type, PI_HANDLER func);
79 PV_TYPE type, PI_HANDLER func) in irda_insert_no_value() argument
106 PV_TYPE type, PI_HANDLER func) in irda_extract_no_value() argument
127 PV_TYPE type, PI_HANDLER func) in irda_insert_integer() argument
134 p.pl = type & PV_MASK; /* The integer type codes the length as well */ in irda_insert_integer()
172 if (type & PV_BIG_ENDIAN) in irda_insert_integer()
179 if (type & PV_BIG_ENDIAN) in irda_insert_integer()
203 PV_TYPE type, PI_HANDLER func) in irda_extract_integer() argument
227 if (((type & PV_MASK) != PV_INTEGER) && ((type & PV_MASK) != p.pl)) { in irda_extract_integer()
229 __func__, type & PV_MASK, p.pl); in irda_extract_integer()
237 if((p.pl < (type & PV_MASK)) || (type & PV_BIG_ENDIAN)) { in irda_extract_integer()
242 extract_len = type & PV_MASK; in irda_extract_integer()
253 if (type & PV_BIG_ENDIAN) in irda_extract_integer()
260 if (type & PV_BIG_ENDIAN) in irda_extract_integer()
287 PV_TYPE type, PI_HANDLER func) in irda_extract_string() argument
332 PV_TYPE type, PI_HANDLER func) in irda_extract_octseq() argument
455 int type; in irda_param_insert() local
480 type = pi_minor_info->type; in irda_param_insert()
491 ret = (*pv_insert_table[type & PV_MASK])(self, buf+n, len, pi, type, in irda_param_insert()
510 int type; in irda_param_extract() local
535 type = pi_minor_info->type; in irda_param_extract()
538 pi_major, pi_minor, type); in irda_param_extract()
549 ret = (*pv_extract_table[type & PV_MASK])(self, buf+n, len, buf[n], in irda_param_extract()
550 type, pi_minor_info->func); in irda_param_extract()