Home
last modified time | relevance | path

Searched refs:data_destroy_function (Results 1 – 3 of 3) sorted by relevance

/libCEED/backends/memcheck/
H A Dceed-memcheck-qfunctioncontext.c232 CeedQFunctionContextDataDestroyUser data_destroy_function; in CeedQFunctionContextDataDestroy_Memcheck() local
237 …llBackend(CeedQFunctionContextGetDataDestroy(ctx, &data_destroy_mem_type, &data_destroy_function)); in CeedQFunctionContextDataDestroy_Memcheck()
242 if (data_destroy_function) { in CeedQFunctionContextDataDestroy_Memcheck()
245 CeedCallBackend(data_destroy_function(is_borrowed ? impl->data_borrowed : impl->data_owned)); in CeedQFunctionContextDataDestroy_Memcheck()
/libCEED/interface/
H A Dceed-qfunctioncontext.c116 CeedQFunctionContextDataDestroyUser data_destroy_function; in CeedQFunctionContextDestroyData() local
118 … CeedCall(CeedQFunctionContextGetDataDestroy(ctx, &data_destroy_mem_type, &data_destroy_function)); in CeedQFunctionContextDestroyData()
119 if (data_destroy_function) { in CeedQFunctionContextDestroyData()
123 CeedCall(data_destroy_function(data)); in CeedQFunctionContextDestroyData()
559 if (f) *f = ctx->data_destroy_function; in CeedQFunctionContextGetDataDestroy()
985 ctx->data_destroy_function = f; in CeedQFunctionContextSetDataDestroy()
/libCEED/include/
H A Dceed-impl.h287 CeedQFunctionContextDataDestroyUser data_destroy_function; member