/third_party/ltp/testcases/kernel/io/direct_io/ |
H A D | diotest5.c | 92 (struct iovec *)valloc(sizeof(struct iovec) * nvector)) == NULL) { in runtest() 93 tst_resm(TFAIL, "valloc() buf1 failed: %s", strerror(errno)); in runtest() 97 (struct iovec *)valloc(sizeof(struct iovec) * nvector)) == NULL) { in runtest() 98 tst_resm(TFAIL, "valloc buf2 failed: %s", strerror(errno)); in runtest() 102 if ((iovp->iov_base = valloc(bufsize)) == NULL) { in runtest() 103 tst_resm(TFAIL, "valloc for iovp->iov_base: %s", in runtest() 110 if ((iovp->iov_base = valloc(bufsize)) == NULL) { in runtest() 111 tst_resm(TFAIL, "valloc, iov2 for iovp->iov_base: %s", in runtest()
|
H A D | diotest3.c | 100 if ((buf1 = valloc(bufsize)) == 0) { in runtest() 101 tst_resm(TFAIL | TERRNO, "valloc for buf1 failed"); in runtest() 104 if ((buf2 = valloc(bufsize)) == 0) { in runtest() 105 tst_resm(TFAIL | TERRNO, "valloc for buf2 failed"); in runtest()
|
H A D | diotest2.c | 88 if ((buf1 = valloc(bufsize)) == 0) { in runtest() 89 tst_resm(TFAIL, "valloc() buf1 failed: %s", strerror(errno)); in runtest() 92 if ((buf2 = valloc(bufsize)) == 0) { in runtest() 93 tst_resm(TFAIL, "valloc() buf2 failed: %s", strerror(errno)); in runtest()
|
H A D | diotest6.c | 104 iov_r[i].iov_base = valloc(bufsize); in runtest() 106 tst_resm(TBROK | TERRNO, "valloc error iov_r[%d]", i); in runtest() 112 iov_w[i].iov_base = valloc(bufsize); in runtest() 114 tst_resm(TBROK | TERRNO, "valloc error iov_w[%d]", i); in runtest()
|
H A D | diotest1.c | 133 buf = valloc(bufsize); in main() 136 tst_brkm(TFAIL | TERRNO, cleanup, "valloc() failed"); in main()
|
H A D | diotest4.c | 224 if ((buf0 = valloc(bufsize)) == NULL) { in main() 225 tst_brkm(TBROK, cleanup, "valloc() buf0 failed: %s", in main() 236 if ((buf2 = valloc(bufsize)) == NULL) { in main() 237 tst_brkm(TBROK, cleanup, "valloc() buf2 failed: %s", in main()
|
/third_party/musl/src/legacy/ |
H A D | valloc.c | 5 void *valloc(size_t size) in valloc() function
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | malloc.h | 16 void *valloc (size_t);
|
H A D | stdlib.h | 143 void *valloc (size_t);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | malloc.h | 16 void *valloc (size_t);
|
H A D | stdlib.h | 143 void *valloc (size_t);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | malloc.h | 16 void *valloc (size_t);
|
/third_party/musl/porting/linux/user/src/hook/ |
H A D | musl_malloc_dispatch.h | 45 MallocVallocType valloc; member
|
/third_party/musl/src/hook/linux/ |
H A D | musl_malloc_dispatch.h | 67 MallocVallocType valloc; member
|
/third_party/musl/porting/linux/user/include/ |
H A D | malloc.h | 20 void *valloc (size_t);
|
H A D | stdlib.h | 148 void *valloc (size_t);
|
/third_party/musl/include/ |
H A D | malloc.h | 19 void *valloc (size_t);
|
H A D | stdlib.h | 149 void *valloc (size_t);
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | stdlib.h | 142 void *valloc (size_t);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | stdlib.h | 145 void *valloc (size_t);
|
/third_party/ltp/testcases/kernel/mem/mem/ |
H A D | mem02.c | 27 >KEYS: < calloc, malloc, free, realloc, valloc 34 < In the case of valloc, allocate memory and free it (do this for 35 < several iterations). Check if valloc returns unaligned pointers. 36 < If valloc causes a SIGSEGV, that means a failure has occured. 192 * Check out for valloc failures in main() 211 memptr = valloc(size); in main() 214 * Check to see if valloc returns unaligned data. in main() 227 tst_resm(TPASS, "valloc - valloc of rand() size of memory succeeded " in main() 237 * on_mem_fault() is a signal handler used by the valloc tes [all...] |
/third_party/rust/crates/libc/src/unix/bsd/apple/b64/x86_64/ |
H A D | mod.rs | 126 pub valloc: ::Option<unsafe extern "C" fn(
|
/third_party/rust/crates/libc/src/unix/haiku/ |
H A D | mod.rs | 1677 pub fn valloc(numBytes: ::size_t) -> *mut ::c_void; in valloc() functions
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 6482 extern void *valloc (size_t __size) throw () __attribute__ ((__malloc__)) ; [all...] |