Lines Matching refs:ctx
1211 struct traceprobe_parse_context *ctx) in trace_fprobe_create_internal() argument
1302 ctx->flags |= TPARG_FL_RETURN; in trace_fprobe_create_internal()
1304 ctx->flags |= TPARG_FL_FENTRY; in trace_fprobe_create_internal()
1306 ctx->funcname = NULL; in trace_fprobe_create_internal()
1311 ctx->flags |= TPARG_FL_TPOINT; in trace_fprobe_create_internal()
1318 ctx->funcname = kallsyms_lookup((unsigned long)tpoint->probestub, in trace_fprobe_create_internal()
1322 if (!ctx->funcname) in trace_fprobe_create_internal()
1323 ctx->funcname = symbol; in trace_fprobe_create_internal()
1330 abuf, MAX_BTF_ARGS_LEN, ctx); in trace_fprobe_create_internal()
1359 ctx->offset = 0; in trace_fprobe_create_internal()
1360 ret = traceprobe_parse_probe_arg(&tf->tp, i, argv[i], ctx); in trace_fprobe_create_internal()
1400 struct traceprobe_parse_context *ctx __free(traceprobe_parse_context) = NULL; in trace_fprobe_create_cb()
1403 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL); in trace_fprobe_create_cb()
1404 if (!ctx) in trace_fprobe_create_cb()
1407 ctx->flags = TPARG_FL_KERNEL | TPARG_FL_FPROBE; in trace_fprobe_create_cb()
1410 ret = trace_fprobe_create_internal(argc, argv, ctx); in trace_fprobe_create_cb()