Lines Matching refs:tmpstore
373 keystore_t *tmpstore;
375 tmpstore = new_keystore();
377 tmpstore->dirty = B_FALSE;
378 tmpstore->new = B_FALSE;
379 tmpstore->path = xstrdup(keystore_file);
381 if (!resolve_paths(err, keystore_file, app, flags, tmpstore)) {
389 if (!verify_keystore_integrity(err, tmpstore)) {
397 if (!lock_keystore(err, flags, tmpstore)) {
405 if (!read_keystore(err, tmpstore, cb)) {
412 *result = tmpstore;
413 tmpstore = NULL;
416 if (tmpstore != NULL)
417 free_keystore(tmpstore);
436 keystore_t *tmpstore;
438 if ((tmpstore = (keystore_t *)malloc(sizeof (keystore_t))) == NULL) {
441 tmpstore->dirty = B_FALSE;
442 tmpstore->new = B_FALSE;
443 tmpstore->path = NULL;
444 tmpstore->passphrase = NULL;
445 tmpstore->cafd = -1;
446 tmpstore->cacerts = NULL;
447 tmpstore->capath = NULL;
448 tmpstore->clcerts = NULL;
449 tmpstore->clpath = NULL;
450 tmpstore->pkeys = NULL;
451 tmpstore->keypath = NULL;
453 return (tmpstore);