Lines Matching refs:t
308 static u32 btf_type_int(const struct btf_type *t) in btf_type_int() argument
310 return *(u32 *)(t + 1); in btf_type_int()
877 static int parse_probe_vars(char *orig_arg, const struct fetch_type *t, in NOKPROBE_SYMBOL()
1191 const struct fetch_type *t, in __parse_bitfield_probe_arg() argument
1217 code->lshift = BYTES_TO_BITS(t->size) - (bw + bo); in __parse_bitfield_probe_arg()
1218 code->rshift = BYTES_TO_BITS(t->size) - bw; in __parse_bitfield_probe_arg()
1219 code->basesize = t->size; in __parse_bitfield_probe_arg()
1221 return (BYTES_TO_BITS(t->size) < (bw + bo)) ? -EINVAL : 0; in __parse_bitfield_probe_arg()
1230 char *t, *t2, *t3; in traceprobe_parse_probe_arg_body() local
1254 t = strchr(arg, ':'); in traceprobe_parse_probe_arg_body()
1255 if (t) { in traceprobe_parse_probe_arg_body()
1256 *t = '\0'; in traceprobe_parse_probe_arg_body()
1257 t2 = strchr(++t, '['); in traceprobe_parse_probe_arg_body()
1294 if (parg->count || (t && strcmp(t, "string"))) { in traceprobe_parse_probe_arg_body()
1295 trace_probe_log_err(ctx->offset + (t ? (t - arg) : 0), in traceprobe_parse_probe_arg_body()
1301 parg->type = find_fetch_type(t, ctx->flags); in traceprobe_parse_probe_arg_body()
1303 trace_probe_log_err(ctx->offset + (t ? (t - arg) : 0), BAD_TYPE); in traceprobe_parse_probe_arg_body()
1321 if (!t) { in traceprobe_parse_probe_arg_body()
1323 } else if (strstr(t, "string")) { in traceprobe_parse_probe_arg_body()
1324 ret = check_prepare_btf_string_fetch(t, &code, ctx); in traceprobe_parse_probe_arg_body()
1350 trace_probe_log_err(ctx->offset + (t ? (t - arg) : 0), in traceprobe_parse_probe_arg_body()
1358 trace_probe_log_err(ctx->offset + (t ? (t - arg) : 0), in traceprobe_parse_probe_arg_body()
1408 if (t != NULL) { in traceprobe_parse_probe_arg_body()
1409 ret = __parse_bitfield_probe_arg(t, parg->type, &code); in traceprobe_parse_probe_arg_body()
1411 trace_probe_log_err(ctx->offset + t - arg, BAD_BITFIELD); in traceprobe_parse_probe_arg_body()
1426 trace_probe_log_err(ctx->offset + (t ? (t - arg) : 0), in traceprobe_parse_probe_arg_body()