Searched defs:bio_method_st (Results 1 – 3 of 3) sorted by relevance
| /third_party/openssl/include/internal/ |
| D | bio.h | 12 struct bio_method_st { struct 13 int type; 14 char *name; 15 int (*bwrite) (BIO *, const char *, size_t, size_t *); 16 int (*bwrite_old) (BIO *, const char *, int); 17 int (*bread) (BIO *, char *, size_t, size_t *); 18 int (*bread_old) (BIO *, char *, int); 19 int (*bputs) (BIO *, const char *); 20 int (*bgets) (BIO *, char *, int); 21 long (*ctrl) (BIO *, int, long, void *); [all …]
|
| /third_party/boringssl/src/include/openssl/ |
| D | bio.h | 804 struct bio_method_st { struct 805 int type; 806 const char *name; 807 int (*bwrite)(BIO *, const char *, int); 808 int (*bread)(BIO *, char *, int); 810 int (*bputs)(BIO *, const char *); 811 int (*bgets)(BIO *, char *, int); 812 long (*ctrl)(BIO *, int, long, void *); 813 int (*create)(BIO *); 814 int (*destroy)(BIO *); [all …]
|
| /third_party/python/Lib/lib2to3/tests/data/ |
| D | infinite_recursion.py | 273 class bio_method_st(Structure): class
|