Lines Matching defs:to

7  * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
78 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
782 /* We sort of have to do it this way because it is sort of nice
783 * to read the header first and check it, then
784 * try to read the certificate */
837 BIO_printf(err,"unable to load certificate\n");
919 BIO_printf(err,"unable to load %s\n", key_descrip);
989 BIO_printf(err,"unable to load %s\n", key_descrip);
1101 BIO_printf(err,"unable to load certificates\n");
1335 /* Try to load an engine in a shareable library */
1498 BIO_printf(bio_err,"unable to load number from %s\n",
1505 BIO_printf(bio_err,"error converting number from bin to BIGNUM\n");
1566 BIO_printf(bio_err,"error converting serial to ASN.1 format\n");
1624 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1630 "unable to rename %s to %s\n",
1637 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1643 "unable to rename %s to %s\n",
1698 BIO_printf(bio_err,"unable to open '%s'\n",dbfile);
1827 BIO_printf(bio_err,"unable to open '%s'\n", dbfile);
1842 BIO_printf(bio_err,"unable to open '%s'\n", buf[2]);
1914 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1920 "unable to rename %s to %s\n",
1927 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1933 "unable to rename %s to %s\n",
1951 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1957 "unable to rename %s to %s\n",
1966 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1972 "unable to rename %s to %s\n",
2024 * subject is expected to be in the format /type0=value0/type1=value1/type2=...
2029 size_t buflen = strlen(subject)+1; /* to copy the types and values into. due to escaping, the copy can only become shorter */
2064 if (*sp == '\\') /* is there anything to escape in the type...? */
2161 int WIN32_rename(const char *from, const char *to)
2164 /* Windows rename gives an error if 'to' exists, so delete it
2167 if((remove(to) != 0) && (errno != ENOENT))
2170 return rename(from, to);
2172 /* convert strings to UNICODE */
2179 wto = malloc((strlen(to)+1)*2);
2184 for (i=0; i<(int)strlen(to)+1; i++)
2185 wto[i] = (short)to[i];