Lines Matching refs:field_labels
39 if (!strcmp(ctx->field_labels[i]->name, field_name)) *field_index = i; in CeedQFunctionContextGetFieldIndex()
70 CeedCall(CeedCalloc(1, &ctx->field_labels)); in CeedQFunctionContextRegisterGeneric()
73 CeedCall(CeedRealloc(2 * ctx->max_fields, &ctx->field_labels)); in CeedQFunctionContextRegisterGeneric()
76 CeedCall(CeedCalloc(1, &ctx->field_labels[ctx->num_fields])); in CeedQFunctionContextRegisterGeneric()
92 CeedCall(CeedStringAllocCopy(field_name, (char **)&ctx->field_labels[ctx->num_fields]->name)); in CeedQFunctionContextRegisterGeneric()
93 …CeedCall(CeedStringAllocCopy(field_description, (char **)&ctx->field_labels[ctx->num_fields]->desc… in CeedQFunctionContextRegisterGeneric()
94 ctx->field_labels[ctx->num_fields]->type = field_type; in CeedQFunctionContextRegisterGeneric()
95 ctx->field_labels[ctx->num_fields]->offset = field_offset; in CeedQFunctionContextRegisterGeneric()
96 ctx->field_labels[ctx->num_fields]->size = field_size * num_values; in CeedQFunctionContextRegisterGeneric()
97 ctx->field_labels[ctx->num_fields]->num_values = num_values; in CeedQFunctionContextRegisterGeneric()
290 *field_label = ctx->field_labels[field_index]; in CeedQFunctionContextGetFieldLabel()
866 …llFieldLabels(CeedQFunctionContext ctx, const CeedContextFieldLabel **field_labels, CeedInt *num_f… in CeedQFunctionContextGetAllFieldLabels() argument
867 *field_labels = ctx->field_labels; in CeedQFunctionContextGetAllFieldLabels()
965 …beled %s field: %s\n", tabs, CeedContextFieldTypes[ctx->field_labels[i]->type], ctx->field_labels[… in CeedQFunctionContextView()
1008 CeedCall(CeedFree(&(*ctx)->field_labels[i]->name)); in CeedQFunctionContextDestroy()
1009 CeedCall(CeedFree(&(*ctx)->field_labels[i]->description)); in CeedQFunctionContextDestroy()
1010 CeedCall(CeedFree(&(*ctx)->field_labels[i])); in CeedQFunctionContextDestroy()
1012 CeedCall(CeedFree(&(*ctx)->field_labels)); in CeedQFunctionContextDestroy()