Lines Matching refs:name

69 # define PEM_read_cb_fnsig(name, type, INTYPE, readname)                \  argument
70 type *PEM_##readname##_##name(INTYPE *out, type **x, \
72 # define PEM_read_cb_ex_fnsig(name, type, INTYPE, readname) \ argument
73 type *PEM_##readname##_##name##_ex(INTYPE *out, type **x, \
78 # define PEM_write_fnsig(name, type, OUTTYPE, writename) \ argument
79 int PEM_##writename##_##name(OUTTYPE *out, const type *x)
80 # define PEM_write_cb_fnsig(name, type, OUTTYPE, writename) \ argument
81 int PEM_##writename##_##name(OUTTYPE *out, const type *x, \
85 # define PEM_write_ex_fnsig(name, type, OUTTYPE, writename) \ argument
86 int PEM_##writename##_##name##_ex(OUTTYPE *out, const type *x, \
89 # define PEM_write_cb_ex_fnsig(name, type, OUTTYPE, writename) \ argument
90 int PEM_##writename##_##name##_ex(OUTTYPE *out, const type *x, \
99 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/ argument
100 # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/ argument
102 # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/ argument
104 # define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/ argument
106 # define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/ argument
110 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
111 type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u) \
117 # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
118 PEM_write_fnsig(name, type, FILE, write) \
125 # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \
126 IMPLEMENT_PEM_write_fp(name, type, str, asn1)
129 # define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) \
130 PEM_write_cb_fnsig(name, type, FILE, write) \
137 # define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) \
138 IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1)
142 # define IMPLEMENT_PEM_read_bio(name, type, str, asn1) \ argument
143 type *PEM_read_bio_##name(BIO *bp, type **x, \
150 # define IMPLEMENT_PEM_write_bio(name, type, str, asn1) \ argument
151 PEM_write_fnsig(name, type, BIO, write_bio) \
158 # define IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \ argument
159 IMPLEMENT_PEM_write_bio(name, type, str, asn1)
162 # define IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \ argument
163 PEM_write_cb_fnsig(name, type, BIO, write_bio) \
170 # define IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \ argument
171 IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1)
174 # define IMPLEMENT_PEM_write(name, type, str, asn1) \ argument
175 IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
176 IMPLEMENT_PEM_write_fp(name, type, str, asn1)
179 # define IMPLEMENT_PEM_write_const(name, type, str, asn1) \ argument
180 IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \
181 IMPLEMENT_PEM_write_fp_const(name, type, str, asn1)
184 # define IMPLEMENT_PEM_write_cb(name, type, str, asn1) \ argument
185 IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
186 IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1)
189 # define IMPLEMENT_PEM_write_cb_const(name, type, str, asn1) \ argument
190 IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \
191 IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1)
194 # define IMPLEMENT_PEM_read(name, type, str, asn1) \ argument
195 IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
196 IMPLEMENT_PEM_read_fp(name, type, str, asn1)
198 # define IMPLEMENT_PEM_rw(name, type, str, asn1) \ argument
199 IMPLEMENT_PEM_read(name, type, str, asn1) \
200 IMPLEMENT_PEM_write(name, type, str, asn1)
203 # define IMPLEMENT_PEM_rw_const(name, type, str, asn1) \ argument
204 IMPLEMENT_PEM_read(name, type, str, asn1) \
205 IMPLEMENT_PEM_write_const(name, type, str, asn1)
208 # define IMPLEMENT_PEM_rw_cb(name, type, str, asn1) \ argument
209 IMPLEMENT_PEM_read(name, type, str, asn1) \
210 IMPLEMENT_PEM_write_cb(name, type, str, asn1)
221 # define DECLARE_PEM_read_fp_attr(attr, name, type) /**/ argument
222 # define DECLARE_PEM_read_fp_ex_attr(attr, name, type) /**/ argument
223 # define DECLARE_PEM_write_fp_attr(attr, name, type) /**/ argument
224 # define DECLARE_PEM_write_fp_ex_attr(attr, name, type) /**/ argument
226 # define DECLARE_PEM_write_fp_const_attr(attr, name, type) /**/ argument
228 # define DECLARE_PEM_write_cb_fp_attr(attr, name, type) /**/ argument
229 # define DECLARE_PEM_write_cb_fp_ex_attr(attr, name, type) /**/ argument
233 # define DECLARE_PEM_read_fp_attr(attr, name, type) \
234 attr PEM_read_cb_fnsig(name, type, FILE, read);
235 # define DECLARE_PEM_read_fp_ex_attr(attr, name, type) \
236 attr PEM_read_cb_fnsig(name, type, FILE, read); \
237 attr PEM_read_cb_ex_fnsig(name, type, FILE, read);
239 # define DECLARE_PEM_write_fp_attr(attr, name, type) \
240 attr PEM_write_fnsig(name, type, FILE, write);
241 # define DECLARE_PEM_write_fp_ex_attr(attr, name, type) \
242 attr PEM_write_fnsig(name, type, FILE, write); \
243 attr PEM_write_ex_fnsig(name, type, FILE, write);
245 # define DECLARE_PEM_write_fp_const_attr(attr, name, type) \
246 attr PEM_write_fnsig(name, type, FILE, write);
248 # define DECLARE_PEM_write_cb_fp_attr(attr, name, type) \
249 attr PEM_write_cb_fnsig(name, type, FILE, write);
250 # define DECLARE_PEM_write_cb_fp_ex_attr(attr, name, type) \
251 attr PEM_write_cb_fnsig(name, type, FILE, write); \
252 attr PEM_write_cb_ex_fnsig(name, type, FILE, write);
256 # define DECLARE_PEM_read_fp(name, type) \ argument
257 DECLARE_PEM_read_fp_attr(extern, name, type)
258 # define DECLARE_PEM_write_fp(name, type) \ argument
259 DECLARE_PEM_write_fp_attr(extern, name, type)
261 # define DECLARE_PEM_write_fp_const(name, type) \ argument
262 DECLARE_PEM_write_fp_const_attr(extern, name, type)
264 # define DECLARE_PEM_write_cb_fp(name, type) \ argument
265 DECLARE_PEM_write_cb_fp_attr(extern, name, type)
267 # define DECLARE_PEM_read_bio_attr(attr, name, type) \ argument
268 attr PEM_read_cb_fnsig(name, type, BIO, read_bio);
269 # define DECLARE_PEM_read_bio_ex_attr(attr, name, type) \ argument
270 attr PEM_read_cb_fnsig(name, type, BIO, read_bio); \
271 attr PEM_read_cb_ex_fnsig(name, type, BIO, read_bio);
272 # define DECLARE_PEM_read_bio(name, type) \ argument
273 DECLARE_PEM_read_bio_attr(extern, name, type)
274 # define DECLARE_PEM_read_bio_ex(name, type) \ argument
275 DECLARE_PEM_read_bio_ex_attr(extern, name, type)
277 # define DECLARE_PEM_write_bio_attr(attr, name, type) \ argument
278 attr PEM_write_fnsig(name, type, BIO, write_bio);
279 # define DECLARE_PEM_write_bio_ex_attr(attr, name, type) \ argument
280 attr PEM_write_fnsig(name, type, BIO, write_bio); \
281 attr PEM_write_ex_fnsig(name, type, BIO, write_bio);
282 # define DECLARE_PEM_write_bio(name, type) \ argument
283 DECLARE_PEM_write_bio_attr(extern, name, type)
284 # define DECLARE_PEM_write_bio_ex(name, type) \ argument
285 DECLARE_PEM_write_bio_ex_attr(extern, name, type)
288 # define DECLARE_PEM_write_bio_const_attr(attr, name, type) \ argument
289 attr PEM_write_fnsig(name, type, BIO, write_bio);
290 # define DECLARE_PEM_write_bio_const(name, type) \ argument
291 DECLARE_PEM_write_bio_const_attr(extern, name, type)
294 # define DECLARE_PEM_write_cb_bio_attr(attr, name, type) \ argument
295 attr PEM_write_cb_fnsig(name, type, BIO, write_bio);
296 # define DECLARE_PEM_write_cb_bio_ex_attr(attr, name, type) \ argument
297 attr PEM_write_cb_fnsig(name, type, BIO, write_bio); \
298 attr PEM_write_cb_ex_fnsig(name, type, BIO, write_bio);
299 # define DECLARE_PEM_write_cb_bio(name, type) \ argument
300 DECLARE_PEM_write_cb_bio_attr(extern, name, type)
301 # define DECLARE_PEM_write_cb_ex_bio(name, type) \ argument
302 DECLARE_PEM_write_cb_bio_ex_attr(extern, name, type)
304 # define DECLARE_PEM_write_attr(attr, name, type) \ argument
305 DECLARE_PEM_write_bio_attr(attr, name, type) \
306 DECLARE_PEM_write_fp_attr(attr, name, type)
307 # define DECLARE_PEM_write_ex_attr(attr, name, type) \ argument
308 DECLARE_PEM_write_bio_ex_attr(attr, name, type) \
309 DECLARE_PEM_write_fp_ex_attr(attr, name, type)
310 # define DECLARE_PEM_write(name, type) \ argument
311 DECLARE_PEM_write_attr(extern, name, type)
312 # define DECLARE_PEM_write_ex(name, type) \ argument
313 DECLARE_PEM_write_ex_attr(extern, name, type)
315 # define DECLARE_PEM_write_const_attr(attr, name, type) \ argument
316 DECLARE_PEM_write_bio_const_attr(attr, name, type) \
317 DECLARE_PEM_write_fp_const_attr(attr, name, type)
318 # define DECLARE_PEM_write_const(name, type) \ argument
319 DECLARE_PEM_write_const_attr(extern, name, type)
321 # define DECLARE_PEM_write_cb_attr(attr, name, type) \ argument
322 DECLARE_PEM_write_cb_bio_attr(attr, name, type) \
323 DECLARE_PEM_write_cb_fp_attr(attr, name, type)
324 # define DECLARE_PEM_write_cb_ex_attr(attr, name, type) \ argument
325 DECLARE_PEM_write_cb_bio_ex_attr(attr, name, type) \
326 DECLARE_PEM_write_cb_fp_ex_attr(attr, name, type)
327 # define DECLARE_PEM_write_cb(name, type) \ argument
328 DECLARE_PEM_write_cb_attr(extern, name, type)
329 # define DECLARE_PEM_write_cb_ex(name, type) \ argument
330 DECLARE_PEM_write_cb_ex_attr(extern, name, type)
331 # define DECLARE_PEM_read_attr(attr, name, type) \ argument
332 DECLARE_PEM_read_bio_attr(attr, name, type) \
333 DECLARE_PEM_read_fp_attr(attr, name, type)
334 # define DECLARE_PEM_read_ex_attr(attr, name, type) \ argument
335 DECLARE_PEM_read_bio_ex_attr(attr, name, type) \
336 DECLARE_PEM_read_fp_ex_attr(attr, name, type)
337 # define DECLARE_PEM_read(name, type) \ argument
338 DECLARE_PEM_read_attr(extern, name, type)
339 # define DECLARE_PEM_read_ex(name, type) \ argument
340 DECLARE_PEM_read_ex_attr(extern, name, type)
341 # define DECLARE_PEM_rw_attr(attr, name, type) \ argument
342 DECLARE_PEM_read_attr(attr, name, type) \
343 DECLARE_PEM_write_attr(attr, name, type)
344 # define DECLARE_PEM_rw_ex_attr(attr, name, type) \ argument
345 DECLARE_PEM_read_ex_attr(attr, name, type) \
346 DECLARE_PEM_write_ex_attr(attr, name, type)
347 # define DECLARE_PEM_rw(name, type) \ argument
348 DECLARE_PEM_rw_attr(extern, name, type)
349 # define DECLARE_PEM_rw_ex(name, type) \ argument
350 DECLARE_PEM_rw_ex_attr(extern, name, type)
352 # define DECLARE_PEM_rw_const_attr(attr, name, type) \ argument
353 DECLARE_PEM_read_attr(attr, name, type) \
354 DECLARE_PEM_write_const_attr(attr, name, type)
355 # define DECLARE_PEM_rw_const(name, type) \ argument
356 DECLARE_PEM_rw_const_attr(extern, name, type)
358 # define DECLARE_PEM_rw_cb_attr(attr, name, type) \ argument
359 DECLARE_PEM_read_attr(attr, name, type) \
360 DECLARE_PEM_write_cb_attr(attr, name, type)
361 # define DECLARE_PEM_rw_cb_ex_attr(attr, name, type) \ argument
362 DECLARE_PEM_read_ex_attr(attr, name, type) \
363 DECLARE_PEM_write_cb_ex_attr(attr, name, type)
364 # define DECLARE_PEM_rw_cb(name, type) \ argument
365 DECLARE_PEM_rw_cb_attr(extern, name, type)
366 # define DECLARE_PEM_rw_cb_ex(name, type) \ argument
367 DECLARE_PEM_rw_cb_ex_attr(extern, name, type)
373 int PEM_read_bio(BIO *bp, char **name, char **header,
378 int PEM_read_bio_ex(BIO *bp, char **name, char **header,
381 const char *name, BIO *bp, pem_password_cb *cb,
383 int PEM_write_bio(BIO *bp, const char *name, const char *hdr,
386 const char *name, BIO *bp, pem_password_cb *cb,
388 void *PEM_ASN1_read_bio(d2i_of_void *d2i, const char *name, BIO *bp, void **x,
390 int PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp,
407 int PEM_read(FILE *fp, char **name, char **header,
409 int PEM_write(FILE *fp, const char *name, const char *hdr,
411 void *PEM_ASN1_read(d2i_of_void *d2i, const char *name, FILE *fp, void **x,
413 int PEM_ASN1_write(i2d_of_void *i2d, const char *name, FILE *fp,