/third_party/musl/libc-test/src/functionalext/fortify/ |
H A D | stdio.c | 51 FILE *fp = fmemopen(hello_world, sizeof(hello_world), "r"); in stdio_dynamic_chk_001() 182 FILE *fp = fmemopen(hello_world, sizeof(hello_world), "r"); in stdio_dynamic_chk_005() 202 FILE *fp = fmemopen(hello_world, sizeof(hello_world), "r"); in stdio_dynamic_chk_006() 236 FILE *fp = fmemopen(hello_world, sizeof(hello_world), "r"); in stdio_dynamic_chk_007()
|
/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
H A D | fread.c | 171 // 使用fmemopen获取FILE*指针 in fread_0600() 172 FILE *fp = fmemopen(myArray, sizeof(myArray), "r"); in fread_0600() 174 t_error("fmemopen failed"); in fread_0600() 239 // 使用fmemopen获取FILE*指针 in fread_0700() 240 FILE *fp = fmemopen(myArray, sizeof(myArray), "r"); in fread_0700() 242 t_error("fmemopen failed"); in fread_0700() 314 // 使用fmemopen获取FILE*指针 in fread_0800() 315 FILE *fp = fmemopen(myArray, sizeof(myArray), "r"); in fread_0800() 317 t_error("fmemopen failed"); in fread_0800()
|
/third_party/musl/libc-test/src/functional/ |
H A D | memstream.c | 57 TEST_E(f = fmemopen(buf, 10, "r+")); in main() 72 TEST_E(f = fmemopen(buf, 10, "a+")); in main()
|
/third_party/musl/libc-test/src/regression/ |
H A D | fgets-eof.c | 15 ASSERT((f = fmemopen(buf, sizeof buf, "r")) != 0); in main()
|
/third_party/musl/porting/liteos_a/user/src/legacy/ |
H A D | getusershell.c | 22 if (!f) f = fmemopen((void *)defshells, sizeof defshells - 1, "rb"); in setusershell()
|
/third_party/musl/src/legacy/ |
H A D | getusershell.c | 22 if (!f) f = fmemopen((void *)defshells, sizeof defshells - 1, "rb"); in setusershell()
|
/third_party/mesa3d/src/freedreno/ir3/tests/ |
H A D | disasm.c | 435 FILE *fdisasm = fmemopen(disasm_output, output_size, "w+"); in main() 437 fprintf(stderr, "failed to fmemopen\n"); in main() 489 fmemopen((void *)test->expected, strlen(test->expected), "r"); in main()
|
H A D | delay.c | 110 FILE *in = fmemopen((void *)asmstr, strlen(asmstr), "r"); in parse_asm()
|
/third_party/musl/porting/linux/user/src/stdio/ |
H A D | fmemopen.c | 82 FILE *fmemopen(void *restrict buf, size_t size, const char *restrict mode) in fmemopen() function
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | stdio.h | 135 FILE *fmemopen(void *__restrict, size_t, const char *__restrict);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | stdio.h | 137 FILE *fmemopen(void *__restrict, size_t, const char *__restrict);
|
/third_party/musl/src/stdio/ |
H A D | fmemopen.c | 97 FILE *fmemopen(void *restrict buf, size_t size, const char *restrict mode) in fmemopen() function
|
/third_party/musl/porting/linux/user/include/ |
H A D | stdio.h | 138 FILE *fmemopen(void *__restrict, size_t, const char *__restrict);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | stdio.h | 135 FILE *fmemopen(void *__restrict, size_t, const char *__restrict);
|
/third_party/musl/include/ |
H A D | stdio.h | 138 FILE *fmemopen(void *__restrict, size_t, const char *__restrict);
|
/third_party/musl/libc-test/src/api/ |
H A D | stdio.c | 46 {FILE*(*p)(void*restrict,size_t,const char*restrict) = fmemopen;} in f()
|
/third_party/toybox/toys/pending/ |
H A D | sh.c | 1216 FILE *ff = fmemopen(s, to-s, "r"); in subshell_imports() 1251 if (TT.command) f = fmemopen(TT.command, strlen(TT.command), "r"); in sh_main()
|
/third_party/rust/crates/libc/src/unix/ |
H A D | mod.rs | 1496 pub fn fmemopen(buf: *mut c_void, size: size_t, mode: *const c_char) -> *mut FILE; in fmemopen() functions
|
/third_party/libbpf/src/ |
H A D | libbpf.c | 2114 file = fmemopen((void *)config, strlen(config), "r");
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 2265 extern FILE *fmemopen (void *__s, size_t __len, const char *__modes) [all...] |