Lines Matching refs:status
89 err_status_t status;
111 status = auth_type_alloc(at, &a, test_case->key_length_octets,
113 if (status)
114 return status;
117 status = auth_init(a, test_case->key);
118 if (status) {
120 return status;
125 status = auth_compute(a, test_case->data,
127 if (status) {
129 return status;
145 status = err_status_ok;
148 status = err_status_algo_fail;
152 if (status) {
158 status = auth_dealloc(a);
159 if (status)
160 return status;