Lines Matching refs:ctx
18 CeedQFunctionContext ctx; in main() local
29 CeedQFunctionContextCreate(ceed, &ctx); in main()
30 CeedQFunctionContextSetData(ctx, CEED_MEM_HOST, CEED_USE_POINTER, sizeof(TestContext), &ctx_data); in main()
32 CeedQFunctionContextRegisterDouble(ctx, "time", offsetof(TestContext, time), 1, "current time"); in main()
33 …CeedQFunctionContextRegisterInt32(ctx, "count", offsetof(TestContext, count), 2, "some sort of cou… in main()
34 …CeedQFunctionContextRegisterBoolean(ctx, "is set", offsetof(TestContext, is_set), 1, "some boolean… in main()
38 CeedQFunctionContextGetAllFieldLabels(ctx, &field_labels, &num_fields); in main()
75 CeedQFunctionContextGetFieldLabel(ctx, "time", &time_label); in main()
78 CeedQFunctionContextSetDouble(ctx, time_label, &value_time); in main()
81 CeedQFunctionContextGetFieldLabel(ctx, "count", &count_label); in main()
84 CeedQFunctionContextSetInt32(ctx, count_label, (int *)&values_count); in main()
88 CeedQFunctionContextGetFieldLabel(ctx, "is set", &is_set_label); in main()
91 CeedQFunctionContextSetBoolean(ctx, is_set_label, &value_is_set); in main()
94 CeedQFunctionContextDestroy(&ctx); in main()