HomeSort by relevance Sort by last modified time
    Searched defs:bio_st (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/openssl/openssl/crypto/bio/
bio.h 231 typedef struct bio_st BIO;
285 long (*BIO_get_callback(const BIO *b)) (struct bio_st *,int,const char *,int, long,long);
287 long (*callback)(struct bio_st *,int,const char *,int, long,long));
294 typedef void bio_info_cb(struct bio_st *, int, const char *, int, long, long);
310 struct bio_st struct
314 long (*callback)(struct bio_st *,int,const char *,int, long,long);
323 struct bio_st *next_bio; /* used by filter BIOs */
324 struct bio_st *prev_bio; /* used by filter BIOs */
647 long BIO_callback_ctrl(BIO *b, int cmd, void (*fp)(struct bio_st *, int, const char *, int, long, long));
    [all...]
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
bio.h 231 typedef struct bio_st BIO;
285 long (*BIO_get_callback(const BIO *b)) (struct bio_st *,int,const char *,int, long,long);
287 long (*callback)(struct bio_st *,int,const char *,int, long,long));
294 typedef void bio_info_cb(struct bio_st *, int, const char *, int, long, long);
310 struct bio_st struct
314 long (*callback)(struct bio_st *,int,const char *,int, long,long);
323 struct bio_st *next_bio; /* used by filter BIOs */
324 struct bio_st *prev_bio; /* used by filter BIOs */
647 long BIO_callback_ctrl(BIO *b, int cmd, void (*fp)(struct bio_st *, int, const char *, int, long, long));
    [all...]
  /external/openssl/crypto/bio/
bio.h 231 typedef struct bio_st BIO;
285 long (*BIO_get_callback(const BIO *b)) (struct bio_st *,int,const char *,int, long,long);
287 long (*callback)(struct bio_st *,int,const char *,int, long,long));
294 typedef void bio_info_cb(struct bio_st *, int, const char *, int, long, long);
310 struct bio_st struct
314 long (*callback)(struct bio_st *,int,const char *,int, long,long);
323 struct bio_st *next_bio; /* used by filter BIOs */
324 struct bio_st *prev_bio; /* used by filter BIOs */
647 long BIO_callback_ctrl(BIO *b, int cmd, void (*fp)(struct bio_st *, int, const char *, int, long, long));
    [all...]
  /external/openssl/include/openssl/
bio.h 231 typedef struct bio_st BIO;
285 long (*BIO_get_callback(const BIO *b)) (struct bio_st *,int,const char *,int, long,long);
287 long (*callback)(struct bio_st *,int,const char *,int, long,long));
294 typedef void bio_info_cb(struct bio_st *, int, const char *, int, long, long);
310 struct bio_st struct
314 long (*callback)(struct bio_st *,int,const char *,int, long,long);
323 struct bio_st *next_bio; /* used by filter BIOs */
324 struct bio_st *prev_bio; /* used by filter BIOs */
647 long BIO_callback_ctrl(BIO *b, int cmd, void (*fp)(struct bio_st *, int, const char *, int, long, long));
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py 269 class bio_st(Structure): class in inherits:Structure
271 BIO = bio_st
272 bio_info_cb = CFUNCTYPE(None, POINTER(bio_st), c_int, STRING, c_int, c_long, c_long)
302 bio_st._fields_ = [
304 ('callback', CFUNCTYPE(c_long, POINTER(bio_st), c_int, STRING, c_int, c_long, c_long)),
312 ('next_bio', POINTER(bio_st)),
313 ('prev_bio', POINTER(bio_st)),
319 assert sizeof(bio_st) == 64, sizeof(bio_st)
320 assert alignment(bio_st) == 4, alignment(bio_st
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py 269 class bio_st(Structure): class in inherits:Structure
271 BIO = bio_st
272 bio_info_cb = CFUNCTYPE(None, POINTER(bio_st), c_int, STRING, c_int, c_long, c_long)
302 bio_st._fields_ = [
304 ('callback', CFUNCTYPE(c_long, POINTER(bio_st), c_int, STRING, c_int, c_long, c_long)),
312 ('next_bio', POINTER(bio_st)),
313 ('prev_bio', POINTER(bio_st)),
319 assert sizeof(bio_st) == 64, sizeof(bio_st)
320 assert alignment(bio_st) == 4, alignment(bio_st
    [all...]

Completed in 2252 milliseconds