Lines Matching refs:CeedCall

64   CeedCall(CeedQFunctionContextGetFieldIndex(ctx, field_name, &field_index));  in CeedQFunctionContextRegisterGeneric()
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()
93CeedCall(CeedStringAllocCopy(field_description, (char **)&ctx->field_labels[ctx->num_fields]->desc… in CeedQFunctionContextRegisterGeneric()
113 CeedCall(ctx->DataDestroy(ctx)); in CeedQFunctionContextDestroyData()
118CeedCall(CeedQFunctionContextGetDataDestroy(ctx, &data_destroy_mem_type, &data_destroy_function)); in CeedQFunctionContextDestroyData()
122 CeedCall(CeedQFunctionContextGetData(ctx, data_destroy_mem_type, &data)); in CeedQFunctionContextDestroyData()
123 CeedCall(data_destroy_function(data)); in CeedQFunctionContextDestroyData()
124 CeedCall(CeedQFunctionContextRestoreData(ctx, &data)); in CeedQFunctionContextDestroyData()
141 CeedCall(CeedQFunctionContextView((CeedQFunctionContext)ctx, stream)); in CeedQFunctionContextView_Object()
155 CeedCall(CeedQFunctionContextDestroy((CeedQFunctionContext *)ctx)); in CeedQFunctionContextDestroy_Object()
178 CeedCall(CeedObjectGetCeed((CeedObject)ctx, ceed)); in CeedQFunctionContextGetCeed()
206 CeedCall(ctx->HasValidData(ctx, has_valid_data)); in CeedQFunctionContextHasValidData()
224 CeedCall(ctx->HasBorrowedDataOfType(ctx, mem_type, has_borrowed_data_of_type)); in CeedQFunctionContextHasBorrowedDataOfType()
287 CeedCall(CeedQFunctionContextGetFieldIndex(ctx, field_name, &field_index)); in CeedQFunctionContextGetFieldLabel()
318 CeedCall(CeedQFunctionContextGetDataRead(ctx, CEED_MEM_HOST, &data)); in CeedQFunctionContextSetGeneric()
320 CeedCall(CeedQFunctionContextRestoreDataRead(ctx, &data)); in CeedQFunctionContextSetGeneric()
322 CeedCall(CeedQFunctionContextGetData(ctx, CEED_MEM_HOST, &data)); in CeedQFunctionContextSetGeneric()
324 CeedCall(CeedQFunctionContextRestoreData(ctx, &data)); in CeedQFunctionContextSetGeneric()
351 CeedCall(CeedQFunctionContextGetDataRead(ctx, CEED_MEM_HOST, &data)); in CeedQFunctionContextGetGenericRead()
386 CeedCall(CeedQFunctionContextRestoreDataRead(ctx, values)); in CeedQFunctionContextRestoreGenericRead()
403 CeedCall(CeedQFunctionContextSetGeneric(ctx, field_label, CEED_CONTEXT_FIELD_DOUBLE, values)); in CeedQFunctionContextSetDouble()
421CeedCall(CeedQFunctionContextGetGenericRead(ctx, field_label, CEED_CONTEXT_FIELD_DOUBLE, num_value… in CeedQFunctionContextGetDoubleRead()
438CeedCall(CeedQFunctionContextRestoreGenericRead(ctx, field_label, CEED_CONTEXT_FIELD_DOUBLE, value… in CeedQFunctionContextRestoreDoubleRead()
455 CeedCall(CeedQFunctionContextSetGeneric(ctx, field_label, CEED_CONTEXT_FIELD_INT32, values)); in CeedQFunctionContextSetInt32()
473CeedCall(CeedQFunctionContextGetGenericRead(ctx, field_label, CEED_CONTEXT_FIELD_INT32, num_values… in CeedQFunctionContextGetInt32Read()
490CeedCall(CeedQFunctionContextRestoreGenericRead(ctx, field_label, CEED_CONTEXT_FIELD_INT32, values… in CeedQFunctionContextRestoreInt32Read()
507 CeedCall(CeedQFunctionContextSetGeneric(ctx, field_label, CEED_CONTEXT_FIELD_BOOL, values)); in CeedQFunctionContextSetBoolean()
525CeedCall(CeedQFunctionContextGetGenericRead(ctx, field_label, CEED_CONTEXT_FIELD_BOOL, num_values,… in CeedQFunctionContextGetBooleanRead()
542CeedCall(CeedQFunctionContextRestoreGenericRead(ctx, field_label, CEED_CONTEXT_FIELD_BOOL, values)… in CeedQFunctionContextRestoreBooleanRead()
573 CeedCall(CeedObjectReference((CeedObject)ctx)); in CeedQFunctionContextReference()
599 CeedCall(CeedGetObjectDelegate(ceed, &delegate, "Context")); in CeedQFunctionContextCreate()
601 CeedCall(CeedQFunctionContextCreate(delegate, ctx)); in CeedQFunctionContextCreate()
602 CeedCall(CeedDestroy(&delegate)); in CeedQFunctionContextCreate()
606 CeedCall(CeedCalloc(1, ctx)); in CeedQFunctionContextCreate()
607CeedCall(CeedObjectCreate(ceed, CeedQFunctionContextView_Object, CeedQFunctionContextDestroy_Objec… in CeedQFunctionContextCreate()
608 CeedCall(ceed->QFunctionContextCreate(*ctx)); in CeedQFunctionContextCreate()
628 CeedCall(CeedQFunctionContextReference(ctx)); in CeedQFunctionContextReferenceCopy()
629 CeedCall(CeedQFunctionContextDestroy(ctx_copy)); in CeedQFunctionContextReferenceCopy()
655 CeedCall(CeedQFunctionContextDestroyData(ctx)); in CeedQFunctionContextSetData()
657 CeedCall(ctx->SetData(ctx, mem_type, copy_mode, data)); in CeedQFunctionContextSetData()
680 CeedCall(CeedQFunctionContextHasValidData(ctx, &has_valid_data)); in CeedQFunctionContextTakeData()
687 CeedCall(CeedQFunctionContextHasBorrowedDataOfType(ctx, mem_type, &has_borrowed_data_of_type)); in CeedQFunctionContextTakeData()
691 CeedCall(ctx->TakeData(ctx, mem_type, &temp_data)); in CeedQFunctionContextTakeData()
722 CeedCall(CeedQFunctionContextHasValidData(ctx, &has_valid_data)); in CeedQFunctionContextGetData()
725 CeedCall(ctx->GetData(ctx, mem_type, data)); in CeedQFunctionContextGetData()
755 CeedCall(CeedQFunctionContextHasValidData(ctx, &has_valid_data)); in CeedQFunctionContextGetDataRead()
758 CeedCall(ctx->GetDataRead(ctx, mem_type, data)); in CeedQFunctionContextGetDataRead()
776 if (ctx->RestoreData) CeedCall(ctx->RestoreData(ctx)); in CeedQFunctionContextRestoreData()
796 if (ctx->num_readers == 0 && ctx->RestoreDataRead) CeedCall(ctx->RestoreDataRead(ctx)); in CeedQFunctionContextRestoreDataRead()
922 CeedCall(CeedObjectSetNumViewTabs((CeedObject)ctx, num_tabs)); in CeedQFunctionContextSetNumViewTabs()
937 CeedCall(CeedObjectGetNumViewTabs((CeedObject)ctx, num_tabs)); in CeedQFunctionContextGetNumViewTabs()
957 CeedCall(CeedQFunctionContextGetNumViewTabs(ctx, &num_tabs)); in CeedQFunctionContextView()
958 CeedCall(CeedCalloc(CEED_TAB_WIDTH * num_tabs + 1, &tabs)); in CeedQFunctionContextView()
967 CeedCall(CeedFree(&tabs)); in CeedQFunctionContextView()
1005 CeedCall(CeedQFunctionContextDestroyData(*ctx)); in CeedQFunctionContextDestroy()
1006 if ((*ctx)->Destroy) CeedCall((*ctx)->Destroy(*ctx)); in CeedQFunctionContextDestroy()
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()
1013 CeedCall(CeedObjectDestroy_Private(&(*ctx)->obj)); in CeedQFunctionContextDestroy()
1014 CeedCall(CeedFree(ctx)); in CeedQFunctionContextDestroy()