Home
last modified time | relevance | path

Searched +full:fuzz +full:- +full:seconds (Results 1 – 25 of 30) sorted by relevance

12

/third_party/nghttp2/.github/workflows/
Dfuzz.yml5 runs-on: ubuntu-latest
7 - name: Build Fuzzers
8 uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
10 oss-fuzz-project-name: 'nghttp2'
11 dry-run: false
12 - name: Run Fuzzers
13 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
15 oss-fuzz-project-name: 'nghttp2'
16 fuzz-seconds: 600
17 dry-run: false
[all …]
/third_party/curl/.github/workflows/
Dfuzz.yml8 - master
9 - '*/ci'
12 - master
16 runs-on: ubuntu-latest
18 - name: Build Fuzzers
19 uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
21 oss-fuzz-project-name: 'curl'
22 dry-run: false
24 - name: Run Fuzzers
25 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
[all …]
/third_party/python/Lib/test/
Dtest_timeout.py76 self.assertRaises(ValueError, self.sock.settimeout, -1)
77 self.assertRaises(ValueError, self.sock.settimeout, -1)
78 self.assertRaises(ValueError, self.sock.settimeout, -1.0)
109 # When fuzz was at 1.0, I (tim) routinely saw bogus failures on Win2K
112 fuzz = 2.0 variable in TimeoutTestCase
126 within `timeout` + self.fuzz seconds.
135 delta = time.monotonic() - t1
140 self.assertLess(delta, timeout + self.fuzz)
141 self.assertGreater(delta, timeout - 1.0)
154 @unittest.skipIf(True, 'need to replace these hosts; see bpo-35518')
[all …]
/third_party/json/test/thirdparty/Fuzzer/
DFuzzerFlags.def1 //===- FuzzerFlags.def - Run-time flags -------------------------*- C++ -* ===//
8 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
15 FUZZER_FLAG_INT(runs, -1,
16 "Number of individual test runs (-1 for infinite runs).")
28 "Timeout in seconds (if positive). "
29 "If one unit runs more than this number of seconds the process will abort.")
35 "time in seconds to run the fuzzer.")
37 FUZZER_FLAG_INT(merge, 0, "If 1, the 2-nd, 3-rd, etc corpora will be "
38 "merged into the 1-st corpus. Only interesting units will be taken. "
[all …]
/third_party/libinput/completion/zsh/
D_libinput5 local -a commands
7 "list-devices:List all devices recognized by libinput"
8 "debug-events:Print all events as seen by libinput"
9 "debug-gui:Show a GUI to visualize libinput's events"
10 "debug-tablet:Show tablet axis and button values"
17 _describe -t commands 'command' commands
23 local -a seats
24 seats=${(f)"$(loginctl --no-legend --no-pager list-seats 2>/dev/null)"}
25 if [[ -z $seats ]]; then
27 compadd "$@" - seat0
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
Dsta_info.c3 * Copyright (c) 2002-2017, Jouni Malinen <j@w1.fi>
60 for (sta = hapd->sta_list; sta; sta = sta->next) { in ap_for_each_sta()
73 s = hapd->sta_hash[STA_HASH(sta)]; in ap_get_sta()
74 while (s != NULL && os_memcmp(s->addr, sta, 6) != 0) in ap_get_sta()
75 s = s->hnext; in ap_get_sta()
85 for (sta = hapd->sta_list; sta; sta = sta->next) { in ap_get_sta_p2p()
88 if (sta->p2p_ie == NULL) in ap_get_sta_p2p()
91 p2p_dev_addr = p2p_get_go_dev_addr(sta->p2p_ie); in ap_get_sta_p2p()
108 if (hapd->sta_list == sta) { in ap_sta_list_del()
109 hapd->sta_list = sta->next; in ap_sta_list_del()
[all …]
Dwpa_auth.c3 * Copyright (c) 2004-2019, Jouni Malinen <j@w1.fi>
38 #define STATE_MACHINE_ADDR sm->addr
85 if (wpa_auth->cb->mic_failure_report) in wpa_auth_mic_failure_report()
86 return wpa_auth->cb->mic_failure_report(wpa_auth->cb_ctx, addr); in wpa_auth_mic_failure_report()
94 if (wpa_auth->cb->psk_failure_report) in wpa_auth_psk_failure_report()
95 wpa_auth->cb->psk_failure_report(wpa_auth->cb_ctx, addr); in wpa_auth_psk_failure_report()
103 if (wpa_auth->cb->set_eapol) in wpa_auth_set_eapol()
104 wpa_auth->cb->set_eapol(wpa_auth->cb_ctx, addr, var, value); in wpa_auth_set_eapol()
111 if (!wpa_auth->cb->get_eapol) in wpa_auth_get_eapol()
112 return -1; in wpa_auth_get_eapol()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
Dsta_info.c3 * Copyright (c) 2002-2017, Jouni Malinen <j@w1.fi>
62 for (sta = hapd->sta_list; sta; sta = sta->next) { in ap_for_each_sta()
75 s = hapd->sta_hash[STA_HASH(sta)]; in ap_get_sta()
76 while (s != NULL && os_memcmp(s->addr, sta, 6) != 0) in ap_get_sta()
77 s = s->hnext; in ap_get_sta()
87 for (sta = hapd->sta_list; sta; sta = sta->next) { in ap_get_sta_p2p()
90 if (sta->p2p_ie == NULL) in ap_get_sta_p2p()
93 p2p_dev_addr = p2p_get_go_dev_addr(sta->p2p_ie); in ap_get_sta_p2p()
110 if (hapd->sta_list == sta) { in ap_sta_list_del()
111 hapd->sta_list = sta->next; in ap_sta_list_del()
[all …]
Dwpa_auth.c3 * Copyright (c) 2004-2019, Jouni Malinen <j@w1.fi>
36 #define STATE_MACHINE_ADDR sm->addr
82 if (wpa_auth->cb->mic_failure_report) in wpa_auth_mic_failure_report()
83 return wpa_auth->cb->mic_failure_report(wpa_auth->cb_ctx, addr); in wpa_auth_mic_failure_report()
91 if (wpa_auth->cb->psk_failure_report) in wpa_auth_psk_failure_report()
92 wpa_auth->cb->psk_failure_report(wpa_auth->cb_ctx, addr); in wpa_auth_psk_failure_report()
100 if (wpa_auth->cb->set_eapol) in wpa_auth_set_eapol()
101 wpa_auth->cb->set_eapol(wpa_auth->cb_ctx, addr, var, value); in wpa_auth_set_eapol()
108 if (wpa_auth->cb->get_eapol == NULL) in wpa_auth_get_eapol()
109 return -1; in wpa_auth_get_eapol()
[all …]
/third_party/boost/libs/timer/test/
Dcpu_timer_test.cpp1 // boost timer_test.cpp --------------------------------------------------------------//
159 BOOST_TEST_EQ(format(times, -1), in format_test()
198 cout << " std::time() elapsed is " << (stop_time - start_time) * 1.0L << " seconds\n"; in std_c_consistency_test()
199 cout << " cpu_timer wall elapsed is " << t.elapsed().wall / 1000000000.0L << " seconds\n"; in std_c_consistency_test()
205 // These tests allow lots of fuzz to reduce false positives in std_c_consistency_test()
206 BOOST_TEST(t.elapsed().wall / 1000000000.0L > (stop_time - start_time) * 0.75L); in std_c_consistency_test()
207 BOOST_TEST(t.elapsed().wall / 1000000000.0L < (stop_time - start_time) * 1.25L); in std_c_consistency_test()
215 //--------------------------------------------------------------------------------------//
219 cout << "---------- timer_test ----------\n"; in cpp_main()
/third_party/libinput/tools/
Dlibinput-record.man1 .TH libinput-record "1"
3 libinput\-record \- record kernel events
20 .B libinput record --all all-devices.yml
22 .B libinput record /dev/input/event3 /dev/input/event4 tp-and-keyboard.yml
32 .B \-\-help
35 .B \-\-all
39 This option requires \fB\-\-output-file\fR and no device
42 .B \-\-autorestart=s
45 seconds of device inactivity. This option requires that a
46 \fB\-\-output-file\fR is specified. The output filename is used as prefix,
[all …]
/third_party/flutter/skia/third_party/externals/freetype/
DChangeLog1 2019-07-04 Werner Lemberg <wl@gnu.org>
9 2019-07-04 Chris Liddell <chris.liddell@artifex.com>
20 However, out-of-spec fonts also use SEAC glyphs for ligatures (like
30 2019-07-01 Werner Lemberg <wl@gnu.org>
36 Tag sources with `VER-2-10-1'.
49 builds/wince/vc2005-ce/freetype.vcproj,
50 builds/wince/vc2005-ce/index.html,
51 builds/wince/vc2008-ce/freetype.vcproj,
52 builds/wince/vc2008-ce/index.html: s/2.10.0/2.10.1/, s/2100/2101/.
61 2019-06-26 Alexei Podtelezhnikov <apodtele@gmail.com>
[all …]
/third_party/freetype/
DChangeLog1 2020-10-20 Werner Lemberg <wl@gnu.org>
7 Tag sources with `VER-2-10-4'.
15 builds/wince/vc2005-ce/index.html,
16 builds/wince/vc2008-ce/index.html, docs/freetype-config.1:
24 2020-10-19 Werner Lemberg <wl@gnu.org>
28 This is CVE-2020-15999.
32 2020-10-17 Alexei Podtelezhnikov <apodtele@gmail.com>
36 2020-10-17 Alexei Podtelezhnikov <apodtele@gmail.com>
40 2020-10-10 Werner Lemberg <wl@gnu.org>
46 Tag sources with `VER-2-10-3'.
[all …]
/third_party/skia/third_party/externals/freetype/docs/oldlogs/
DChangeLog.2101 2021-07-18 Werner Lemberg <wl@gnu.org>
7 Tag sources with `VER-2-11-0'.
15 builds/wince/vc2005-ce/index.html,
16 builds/wince/vc2008-ce/index.html, docs/freetype-config.1:
26 * builds/toplevel.mk (dist): Ignore more git-related files.
28 2021-07-17 David Turner <david@freetype.org>
32 The code assumed that if `__SSE2__` is defined, then 64-bit integer
37 64-bit integer types are not available.
41 2021-07-16 Alex Richardson <Alexander.Richardson@cl.cam.ac.uk>
45 * tests/issue-1063/main.c (main): I am building with a build
[all …]
/third_party/libevdev/libevdev/
Dlibevdev-uinput.c35 #include "libevdev-int.h"
36 #include "libevdev-uinput-int.h"
37 #include "libevdev-uinput.h"
38 #include "libevdev-util.h"
56 uinput_dev->name = strdup(name); in alloc_uinput_device()
57 uinput_dev->fd = -1; in alloc_uinput_device()
92 if (rc == -1) in set_evbits()
100 if (max == -1) in set_evbits()
113 rc = -1; in set_evbits()
123 if (rc == -1) in set_evbits()
[all …]
/third_party/node/deps/cares/
DCHANGES1 Changelog for the c-ares project. Generated with git2changes.pl
6 - missed version
8 - 1.18.1 release prep
10 - ares_getaddrinfo() was returning the wrong size for ai_addrlen
19 - Windows: autotools force linking to iphlpapi
22 - [Gregor Jasny brought this change]
33 - replace Travis badge with Cirrus-CI badge
35 - c-ares 1.18.0 release prep
38 - [Jérôme Duval brought this change]
47 - valgrind: fix reported invalid read
[all …]
/third_party/ltp/include/
Dtst_fuzzy_sync.h1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Copyright (c) 2017-2018 Richard Palethorpe <rpalethorpe@suse.com>
7 * Fuzzy Synchronisation - abbreviated to fzsync
19 * In each thread you need a simple while- or for-loop which the tst_fzsync_*
47 * one by iteration count. The user can use the -i parameter to run the test
56 * For a usage example see testcases/cve/cve-2016-7117.c or just run
170 * Defaults to 0.5 (~150 seconds with default timeout).
197 pair->param = (pair->param ? pair->param : def); \
198 if (pair->param < low) \
200 if (pair->param > hi) \
[all …]
/third_party/grpc/doc/
Dinterop-test-descriptions.md6 and the [gRPC over HTTP/2 v2 protocol](./PROTOCOL-HTTP2.md).
9 ------
12 provided the test case it is expected to run as a command-line parameter. Names
16 * --server_host=HOSTNAME
18 * --server_host_override=HOSTNAME
20 :authority header. If unspecified, the value of --server_host will be
22 * --server_port=PORT
24 * --test_case=TESTCASE
26 * --use_tls=BOOLEAN
28 * --use_test_ca=BOOLEAN
[all …]
/third_party/chromium/patch/
D0001-cve.patch1 diff --git a/src/DEPS b/src/DEPS
3 --- a/src/DEPS
5 @@ -253,7 +253,7 @@ vars = {
6 # Three lines of non-changing comments so that
9 - 'angle_revision': '29b222a3c07c541cafa459ae6886134da3493a4b',
11 # Three lines of non-changing comments so that
14 @@ -292,7 +292,7 @@ vars = {
15 # Three lines of non-changing comments so that
18 - 'freetype_revision': '034e5dbf92ea3a7ea7c9322e47a3a50ff23f7b55',
20 # Three lines of non-changing comments so that
[all …]
/third_party/python/Misc/NEWS.d/
D3.7.0a1.rst2 .. date: 2017-09-05-15-26-30
4 .. release date: 2017-09-19
13 .. date: 2017-08-23-17-02-55
17 Add fuzz tests for float(str), int(str), unicode(str); for oss-fuzz.
22 .. date: 2017-08-16-16-35-59
49 vulnerabilities including: CVE-2017-9233 (External entity infinite loop
50 DoS), CVE-2016-9063 (Integer overflow, re-fix), CVE-2016-0718 (Fix
51 regression bugs from 2.2.0's fix to CVE-2016-0718) and CVE-2012-0876
52 (Counter hash flooding with SipHash). Note: the CVE-2016-5300 (Use
53 os-specific entropy sources like getrandom) doesn't impact Python, since Python
[all …]
/third_party/openssl/
DCHANGES5 This is a high-level summary of the most important changes.
13 David Benjamin for discovering this issue. (CVE-2023-0466)
23 David Benjamin for discovering this issue. (CVE-2023-0286)
43 *) Fixed the linux-mips64 Configure target which was missing the
48 *) Fixed a strict aliasing problem in bn_nist. Clang-14 optimisation was
56 *) Fixed a regression introduced in 1.1.1o for re-signing certificates with
70 implementation prior to commit 2621751 ("aes/asm/aesv8-armx.pl: avoid
71 32-bit lane assignment in CTR mode") for 64bit targets only, since it is
72 reportedly 2-17% slower and the silicon errata only affects 32bit targets.
82 *) AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised
[all …]
/third_party/toybox/www/
Dnews.html2 <!--#include file="header.html" -->
5 into a single BSD-licensed executable that's simple, small, fast,
6 reasonably standards-compliant, and powerful enough to turn Android into
11 <a name="30-11-2021" /><a href="#30-11-2021"><hr><h2><b>November 30, 2021</b></h2></a>
15 <p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
17 <p><a href=downloads/toybox-0.8.6.tar.gz>Toybox 0.8.6</a>
21 bootable under QEMU (using vanilla linux-5.15).</p>
26 …c support for the <a href=http://lists.landley.net/pipermail/toybox-landley.net/2021-August/012497…
28 <a href=https://lists.nongnu.org/archive/html/qemu-devel/2021-07/msg06430.html>quite yet</a>.)</p>
37 Elliott added <b>date -s</b>, <b>pmap -p</b>, <b>tail -F -s</b>, <b>kill -0</b>,
[all …]
Dindex.html2 <!--#include file="header.html" -->
5 into a single BSD-licensed executable that's simple, small, fast,
6 reasonably standards-compliant, and powerful enough to turn Android into
11 <a name="30-11-2021" /><a href="#30-11-2021"><hr><h2><b>November 30, 2021</b></h2></a>
15 <p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
17 <p><a href=downloads/toybox-0.8.6.tar.gz>Toybox 0.8.6</a>
21 bootable under QEMU (using vanilla linux-5.15).</p>
26 …c support for the <a href=http://lists.landley.net/pipermail/toybox-landley.net/2021-August/012497…
28 <a href=https://lists.nongnu.org/archive/html/qemu-devel/2021-07/msg06430.html>quite yet</a>.)</p>
37 Elliott added <b>date -s</b>, <b>pmap -p</b>, <b>tail -F -s</b>, <b>kill -0</b>,
[all …]
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_cc_functions.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
4 * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
5 * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.
6 * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved.
37 __FBSDID("$FreeBSD: head/sys/netinet/sctp_cc_functions.c 359405 2020-03-28 20:25:45Z tuexen $");
64 if ((assoc->max_cwnd > 0) && in sctp_enforce_cwnd_limit()
65 (net->cwnd > assoc->max_cwnd) && in sctp_enforce_cwnd_limit()
66 (net->cwnd > (net->mtu - sizeof(struct sctphdr)))) { in sctp_enforce_cwnd_limit()
67 net->cwnd = assoc->max_cwnd ; in sctp_enforce_cwnd_limit()
[all …]
/third_party/mesa3d/docs/relnotes/
D21.1.0.rst1 Mesa 21.1.0 Release Notes / 2021-05-05
20 ---------------
24 0128f10e22970d3aed3d1034003731f94623015cd9797c07151417649c1b1ff8 mesa-21.1.0.tar.xz
28 ------------
30 - VK_KHR_workgroup_memory_explicit_layout on Intel, RADV
32 - DRM format modifiers for AMD.
34 - VK_KHR_zero_initialize_workgroup_memory on Intel, RADV
36 - Zink exposes GL 4.6 and ES 3.1
38 - GL_EXT_depth_bounds_test on softpipe, zink
40 - GL_EXT_texture_filter_minmax on nvc0 (gm200+)
[all …]

12