Home | History | Annotate | Download | only in apps

Lines Matching defs:mem

2409 	BIO *mem;
2412 mem = BIO_new(BIO_s_mem());
2413 if (!mem)
2424 if (BIO_write(mem, tbuf, len) != len)
2426 BIO_free(mem);
2434 ret = BIO_get_mem_data(mem, (char **)out);
2435 BIO_set_flags(mem, BIO_FLAGS_MEM_RDONLY);
2436 BIO_free(mem);