Lines Matching refs:t
272 static int parse_probe_vars(char *arg, const struct fetch_type *t, in parse_probe_vars() argument
509 const struct fetch_type *t, in __parse_bitfield_probe_arg() argument
535 code->lshift = BYTES_TO_BITS(t->size) - (bw + bo); in __parse_bitfield_probe_arg()
536 code->rshift = BYTES_TO_BITS(t->size) - bw; in __parse_bitfield_probe_arg()
537 code->basesize = t->size; in __parse_bitfield_probe_arg()
539 return (BYTES_TO_BITS(t->size) < (bw + bo)) ? -EINVAL : 0; in __parse_bitfield_probe_arg()
547 char *t, *t2, *t3; in traceprobe_parse_probe_arg_body() local
563 t = strchr(arg, ':'); in traceprobe_parse_probe_arg_body()
564 if (t) { in traceprobe_parse_probe_arg_body()
565 *t = '\0'; in traceprobe_parse_probe_arg_body()
566 t2 = strchr(++t, '['); in traceprobe_parse_probe_arg_body()
600 if (parg->count || (t && strcmp(t, "string"))) in traceprobe_parse_probe_arg_body()
604 parg->type = find_fetch_type(t); in traceprobe_parse_probe_arg_body()
606 trace_probe_log_err(offset + (t ? (t - arg) : 0), BAD_TYPE); in traceprobe_parse_probe_arg_body()
637 trace_probe_log_err(offset + (t ? (t - arg) : 0), in traceprobe_parse_probe_arg_body()
683 if (t != NULL) { in traceprobe_parse_probe_arg_body()
684 ret = __parse_bitfield_probe_arg(t, parg->type, &code); in traceprobe_parse_probe_arg_body()
686 trace_probe_log_err(offset + t - arg, BAD_BITFIELD); in traceprobe_parse_probe_arg_body()
695 trace_probe_log_err(offset + (t ? (t - arg) : 0), in traceprobe_parse_probe_arg_body()