• Home
  • Raw
  • Download

Lines Matching refs:t

281 static int parse_probe_vars(char *arg, const struct fetch_type *t,  in parse_probe_vars()  argument
532 const struct fetch_type *t, in __parse_bitfield_probe_arg() argument
558 code->lshift = BYTES_TO_BITS(t->size) - (bw + bo); in __parse_bitfield_probe_arg()
559 code->rshift = BYTES_TO_BITS(t->size) - bw; in __parse_bitfield_probe_arg()
560 code->basesize = t->size; in __parse_bitfield_probe_arg()
562 return (BYTES_TO_BITS(t->size) < (bw + bo)) ? -EINVAL : 0; in __parse_bitfield_probe_arg()
570 char *t, *t2, *t3; in traceprobe_parse_probe_arg_body() local
594 t = strchr(arg, ':'); in traceprobe_parse_probe_arg_body()
595 if (t) { in traceprobe_parse_probe_arg_body()
596 *t = '\0'; in traceprobe_parse_probe_arg_body()
597 t2 = strchr(++t, '['); in traceprobe_parse_probe_arg_body()
633 if (parg->count || (t && strcmp(t, "string"))) in traceprobe_parse_probe_arg_body()
637 parg->type = find_fetch_type(t); in traceprobe_parse_probe_arg_body()
639 trace_probe_log_err(offset + (t ? (t - arg) : 0), BAD_TYPE); in traceprobe_parse_probe_arg_body()
672 trace_probe_log_err(offset + (t ? (t - arg) : 0), in traceprobe_parse_probe_arg_body()
680 trace_probe_log_err(offset + (t ? (t - arg) : 0), in traceprobe_parse_probe_arg_body()
730 if (t != NULL) { in traceprobe_parse_probe_arg_body()
731 ret = __parse_bitfield_probe_arg(t, parg->type, &code); in traceprobe_parse_probe_arg_body()
733 trace_probe_log_err(offset + t - arg, BAD_BITFIELD); in traceprobe_parse_probe_arg_body()
743 trace_probe_log_err(offset + (t ? (t - arg) : 0), in traceprobe_parse_probe_arg_body()