Home
last modified time | relevance | path

Searched refs:__tokencap_out_file (Results 1 – 3 of 3) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/afl/src/libtokencap/
H A Dlibtokencap.so.c44 static FILE* __tokencap_out_file; variable
105 if (len < MIN_AUTO_EXTRA || len > MAX_AUTO_EXTRA || !__tokencap_out_file) in __tokencap_dump()
133 fprintf(__tokencap_out_file, "\"%s\"\n", buf); in __tokencap_dump()
301 if (fn) __tokencap_out_file = fopen(fn, "a"); in __tokencap_init()
302 if (!__tokencap_out_file) __tokencap_out_file = stderr; in __tokencap_init()
/dports/security/afl/afl-2.52b/libtokencap/
H A Dlibtokencap.so.c44 static FILE* __tokencap_out_file; variable
105 if (len < MIN_AUTO_EXTRA || len > MAX_AUTO_EXTRA || !__tokencap_out_file) in __tokencap_dump()
133 fprintf(__tokencap_out_file, "\"%s\"\n", buf); in __tokencap_dump()
301 if (fn) __tokencap_out_file = fopen(fn, "a"); in __tokencap_init()
302 if (!__tokencap_out_file) __tokencap_out_file = stderr; in __tokencap_init()
/dports/security/afl++/AFLplusplus-3.14c/utils/libtokencap/
H A Dlibtokencap.so.c86 static int __tokencap_out_file = -1; variable
315 if (len < MIN_AUTO_EXTRA || len > MAX_AUTO_EXTRA || __tokencap_out_file == -1)
342 int wrt_ok = (1 == write(__tokencap_out_file, "\"", 1));
343 wrt_ok &= (pos == write(__tokencap_out_file, buf, pos));
344 wrt_ok &= (2 == write(__tokencap_out_file, "\"\n", 2));
770 if (fn) __tokencap_out_file = open(fn, O_RDWR | O_CREAT | O_APPEND, 0655);
771 if (__tokencap_out_file == -1) __tokencap_out_file = STDERR_FILENO;
791 if (__tokencap_out_file != STDERR_FILENO) close(__tokencap_out_file);