Lines Matching refs:step
691 enum processing_step step) in entry_processing_step() argument
711 if (step == PKCS11_FUNC_STEP_UPDATE_KEY) { in entry_processing_step()
726 if (step == PKCS11_FUNC_STEP_UPDATE_KEY) { in entry_processing_step()
745 function, step); in entry_processing_step()
750 rc = step_symm_operation(session, function, step, in entry_processing_step()
753 rc = step_asymm_operation(session, function, step, in entry_processing_step()
756 rc = step_digest_operation(session, step, obj, ptypes, params); in entry_processing_step()
760 if (rc == PKCS11_CKR_OK && (step == PKCS11_FUNC_STEP_UPDATE || in entry_processing_step()
761 step == PKCS11_FUNC_STEP_UPDATE_KEY)) { in entry_processing_step()
762 session->processing->step = PKCS11_FUNC_STEP_UPDATE; in entry_processing_step()
769 step == PKCS11_FUNC_STEP_ONESHOT) in entry_processing_step()
770 session->processing->step = PKCS11_FUNC_STEP_ONESHOT; in entry_processing_step()
772 if (rc == PKCS11_CKR_BUFFER_TOO_SMALL && step == PKCS11_FUNC_STEP_FINAL) in entry_processing_step()
773 session->processing->step = PKCS11_FUNC_STEP_FINAL; in entry_processing_step()
776 switch (step) { in entry_processing_step()