Lines Matching defs:in
6 * Redistribution and use in source and binary forms, with or without
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
21 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
29 * nor may "OpenSSL" appear in their names without prior written
35 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
40 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
45 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
47 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
83 ASN1_TIME *in;
86 in=x->crl->lastUpdate;
87 if (in != tm)
89 in=M_ASN1_TIME_dup(tm);
90 if (in != NULL)
93 x->crl->lastUpdate=in;
96 return(in != NULL);
101 ASN1_TIME *in;
104 in=x->crl->nextUpdate;
105 if (in != tm)
107 in=M_ASN1_TIME_dup(tm);
108 if (in != NULL)
111 x->crl->nextUpdate=in;
114 return(in != NULL);
121 /* sort the data so it will be written in serial
140 ASN1_TIME *in;
143 in=x->revocationDate;
144 if (in != tm)
146 in=M_ASN1_TIME_dup(tm);
147 if (in != NULL)
150 x->revocationDate=in;
153 return(in != NULL);
158 ASN1_INTEGER *in;
161 in=x->serialNumber;
162 if (in != serial)
164 in=M_ASN1_INTEGER_dup(serial);
165 if (in != NULL)
168 x->serialNumber=in;
171 return(in != NULL);