Home | History | Annotate | Download | only in apps

Lines Matching defs:mem

2412 	BIO *mem;
2415 mem = BIO_new(BIO_s_mem());
2416 if (!mem)
2427 if (BIO_write(mem, tbuf, len) != len)
2429 BIO_free(mem);
2437 ret = BIO_get_mem_data(mem, (char **)out);
2438 BIO_set_flags(mem, BIO_FLAGS_MEM_RDONLY);
2439 BIO_free(mem);