Lines Matching refs:handler

139   PetscCall(PetscLogHandlerEventBegin(nested->handler, nested_event, o1, o2, o3, o4));  in PetscLogHandlerEventBegin_Nested()
170 PetscCall(PetscLogHandlerEventEnd(nested->handler, nested_event, o1, o2, o3, o4)); in PetscLogHandlerNestedEventEnd()
189 PetscCall(PetscLogHandlerEventSync(nested->handler, nested_event, comm)); in PetscLogHandlerEventSync_Nested()
201 PetscCall(PetscLogHandlerEventBegin(nested->handler, nested_event, NULL, NULL, NULL, NULL)); in PetscLogHandlerStagePush_Nested()
228 PetscCall(PetscLogHandlerCreate(comm, &nested->handler)); in PetscLogHandlerContextCreate_Nested()
229 PetscCall(PetscLogHandlerSetType(nested->handler, PETSCLOGHANDLERDEFAULT)); in PetscLogHandlerContextCreate_Nested()
230 PetscCall(PetscLogHandlerSetState(nested->handler, nested->state)); in PetscLogHandlerContextCreate_Nested()
233 PetscCall(PetscLogHandlerStagePush(nested->handler, root_stage)); in PetscLogHandlerContextCreate_Nested()
261 PetscCall(PetscLogHandlerObjectCreate(nested->handler, obj)); in PetscLogHandlerObjectCreate_Nested()
270 PetscCall(PetscLogHandlerObjectDestroy(nested->handler, obj)); in PetscLogHandlerObjectDestroy_Nested()
280 PetscCall(PetscLogHandlerStagePop(nested->handler, 0)); in PetscLogHandlerDestroy_Nested()
285 PetscCall(PetscLogHandlerDestroy(&nested->handler)); in PetscLogHandlerDestroy_Nested()
376 PetscCall(PetscLogHandlerGetEventPerfInfo(nested->handler, 0, event_id, &event_info)); in PetscLogNestedCreatePerfNodes()
388 static PetscErrorCode PetscLogHandlerView_Nested(PetscLogHandler handler, PetscViewer viewer) in PETSC_PRAGMA_DIAGNOSTIC_IGNORED_END()
390 PetscLogHandler_Nested nested = (PetscLogHandler_Nested)handler->data; in PETSC_PRAGMA_DIAGNOSTIC_IGNORED_END()
427 PETSC_INTERN PetscErrorCode PetscLogHandlerCreate_Nested(PetscLogHandler handler) in PetscLogHandlerCreate_Nested() argument
430 …dlerContextCreate_Nested(PetscObjectComm((PetscObject)handler), (PetscLogHandler_Nested *)&handler in PetscLogHandlerCreate_Nested()
431 handler->ops->destroy = PetscLogHandlerDestroy_Nested; in PetscLogHandlerCreate_Nested()
432 handler->ops->stagepush = PetscLogHandlerStagePush_Nested; in PetscLogHandlerCreate_Nested()
433 handler->ops->stagepop = PetscLogHandlerStagePop_Nested; in PetscLogHandlerCreate_Nested()
434 handler->ops->eventbegin = PetscLogHandlerEventBegin_Nested; in PetscLogHandlerCreate_Nested()
435 handler->ops->eventend = PetscLogHandlerEventEnd_Nested; in PetscLogHandlerCreate_Nested()
436 handler->ops->eventsync = PetscLogHandlerEventSync_Nested; in PetscLogHandlerCreate_Nested()
437 handler->ops->objectcreate = PetscLogHandlerObjectCreate_Nested; in PetscLogHandlerCreate_Nested()
438 handler->ops->objectdestroy = PetscLogHandlerObjectDestroy_Nested; in PetscLogHandlerCreate_Nested()
439 handler->ops->view = PetscLogHandlerView_Nested; in PetscLogHandlerCreate_Nested()