Home | History | Annotate | Download | only in apps

Lines Matching defs:mem

2416 	BIO *mem;
2419 mem = BIO_new(BIO_s_mem());
2420 if (!mem)
2431 if (BIO_write(mem, tbuf, len) != len)
2433 BIO_free(mem);
2441 ret = BIO_get_mem_data(mem, (char **)out);
2442 BIO_set_flags(mem, BIO_FLAGS_MEM_RDONLY);
2443 BIO_free(mem);