Lines Matching refs:ok

224     int ok = -1;  in OSSL_PARAM_print_to_bio()  local
231 ok = -1; in OSSL_PARAM_print_to_bio()
232 ok = BIO_printf(bio, "%s: ", p->key); in OSSL_PARAM_print_to_bio()
234 if (ok == -1) in OSSL_PARAM_print_to_bio()
250 ok = BN_print(bio, bn); in OSSL_PARAM_print_to_bio()
252 ok = BIO_printf(bio, "error getting value\n"); in OSSL_PARAM_print_to_bio()
255 ok = BIO_printf(bio, "%llu\n", (unsigned long long int)u); in OSSL_PARAM_print_to_bio()
257 ok = BIO_printf(bio, "error getting value\n"); in OSSL_PARAM_print_to_bio()
263 ok = BN_print(bio, bn); in OSSL_PARAM_print_to_bio()
265 ok = BIO_printf(bio, "error getting value\n"); in OSSL_PARAM_print_to_bio()
268 ok = BIO_printf(bio, "%lld\n", (long long int)i); in OSSL_PARAM_print_to_bio()
270 ok = BIO_printf(bio, "error getting value\n"); in OSSL_PARAM_print_to_bio()
274 ok = BIO_dump(bio, p->data, p->data_size); in OSSL_PARAM_print_to_bio()
277 ok = BIO_dump(bio, (char *)p->data, p->data_size); in OSSL_PARAM_print_to_bio()
281 ok = BIO_dump(bio, (char *)p->data, p->data_size); in OSSL_PARAM_print_to_bio()
289 ok = BIO_printf(bio, "%f\n", d); in OSSL_PARAM_print_to_bio()
291 ok = BIO_printf(bio, "error getting value\n"); in OSSL_PARAM_print_to_bio()
294 ok = BIO_printf(bio, "unknown type (%u) of %zu bytes\n", in OSSL_PARAM_print_to_bio()
298 if (ok == -1) in OSSL_PARAM_print_to_bio()
303 return ok == -1 ? 0 : 1; in OSSL_PARAM_print_to_bio()
316 int ok = 0; in OSSL_PARAM_allocate_from_text() local
328 ok = construct_from_text(to, paramdef, value, value_n, ishex, in OSSL_PARAM_allocate_from_text()
331 if (!ok) in OSSL_PARAM_allocate_from_text()
333 return ok; in OSSL_PARAM_allocate_from_text()