Home | History | Annotate | Download | only in x509

Lines Matching defs:in

8  * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
31 * nor may "OpenSSL" appear in their names without prior written
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
84 ASN1_TIME *in;
88 in = x->crl->lastUpdate;
89 if (in != tm) {
90 in = M_ASN1_TIME_dup(tm);
91 if (in != NULL) {
93 x->crl->lastUpdate = in;
96 return (in != NULL);
101 ASN1_TIME *in;
105 in = x->crl->nextUpdate;
106 if (in != tm) {
107 in = M_ASN1_TIME_dup(tm);
108 if (in != NULL) {
110 x->crl->nextUpdate = in;
113 return (in != NULL);
121 * sort the data so it will be written in serial number order
140 ASN1_TIME *in;
144 in = x->revocationDate;
145 if (in != tm) {
146 in = M_ASN1_TIME_dup(tm);
147 if (in != NULL) {
149 x->revocationDate = in;
152 return (in != NULL);
157 ASN1_INTEGER *in;
161 in = x->serialNumber;
162 if (in != serial) {
163 in = M_ASN1_INTEGER_dup(serial);
164 if (in != NULL) {
166 x->serialNumber = in;
169 return (in != NULL);