Lines Matching refs:operation
101 /* Nominal case with an operation cloned after setup */
110 /* Nominal case with an operation cloned between updates */
119 /* Nominal case with an operation cloned before finish */
146 /* Nominal case again after an error in a cloned operation */
173 mbedtls_psa_hash_operation_t operation;
174 memset(&operation, 0, sizeof(operation));
186 TEST_EQUAL(mbedtls_psa_hash_setup(&operation, alg),
188 TEST_EQUAL(mbedtls_psa_hash_finish(&operation,
195 memset(&operation, 0, sizeof(operation));
196 TEST_EQUAL(mbedtls_psa_hash_setup(&operation, alg),
198 TEST_EQUAL(mbedtls_psa_hash_update(&operation, NULL, 0),
200 TEST_EQUAL(mbedtls_psa_hash_finish(&operation,
207 mbedtls_psa_hash_abort(&operation);