| /third_party/pcre2/pcre2/.github/workflows/ |
| D | cifuzz.yml | 5 runs-on: ubuntu-latest 7 - name: Build Fuzzers 9 uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master 11 oss-fuzz-project-name: 'pcre2' 12 dry-run: false 13 - name: Run Fuzzers 14 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master 16 oss-fuzz-project-name: 'pcre2' 17 fuzz-seconds: 300 18 dry-run: false [all …]
|
| /third_party/nghttp2/.github/workflows/ |
| D | fuzz.yml | 3 permissions: read-all 6 runs-on: ubuntu-latest 8 - name: LLVM workaround 10 # https://github.com/actions/runner-images/issues/9491#issuecomment-1989718917 12 # high-entropy ASLR in much newer kernels that GitHub runners are 15 - name: Build Fuzzers 16 uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master 18 oss-fuzz-project-name: 'nghttp2' 19 dry-run: false 20 - name: Run Fuzzers [all …]
|
| /third_party/python/Lib/test/ |
| D | test_timeout.py | 73 self.assertRaises(ValueError, self.sock.settimeout, -1) 74 self.assertRaises(ValueError, self.sock.settimeout, -1) 75 self.assertRaises(ValueError, self.sock.settimeout, -1.0) 106 # When fuzz was at 1.0, I (tim) routinely saw bogus failures on Win2K 109 fuzz = 2.0 variable in TimeoutTestCase 123 within `timeout` + self.fuzz seconds. 132 delta = time.monotonic() - t1 137 self.assertLess(delta, timeout + self.fuzz) 138 self.assertGreater(delta, timeout - 1.0) 151 @unittest.skipIf(True, 'need to replace these hosts; see bpo-35518') [all …]
|
| /third_party/json/tests/thirdparty/Fuzzer/ |
| D | FuzzerFlags.def | 1 //===- 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 | _libinput | 5 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/src/ap/ |
| D | sta_info.c | 3 * 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 …]
|
| D | wpa_auth.c | 3 * 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/libinput/tools/ |
| D | libinput-record.man | 1 .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 …]
|
| D | libinput-replay.py | 3 # -*- Mode: python; coding: utf-8; indent-tabs-mode: nil -*- */ 42 "modules and re-run this tool." 95 # The list of properties we add to the recording, see libinput-record.c 132 fuzz=values[2], 201 offset = time.time() - device["__first_event_offset"] 222 if evtime - now > 150 / 1e6: # 150 µs error margin 223 time.sleep(evtime - now - 150 / 1e6) 307 "[libinput-replay {name}]\n" 328 overrides = Path("/etc/libinput/local-overrides.quirks") 368 metavar="recorded-file.yaml", [all …]
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
| D | sta_info.c | 3 * Copyright (c) 2002-2017, Jouni Malinen <j@w1.fi> 76 for (sta = hapd->sta_list; sta; sta = sta->next) { in ap_for_each_sta() 89 s = hapd->sta_hash[STA_HASH(sta)]; in ap_get_sta() 90 while (s != NULL && os_memcmp(s->addr, sta, 6) != 0) in ap_get_sta() 91 s = s->hnext; in ap_get_sta() 101 for (sta = hapd->sta_list; sta; sta = sta->next) { in ap_get_sta_p2p() 104 if (sta->p2p_ie == NULL) in ap_get_sta_p2p() 107 p2p_dev_addr = p2p_get_go_dev_addr(sta->p2p_ie); in ap_get_sta_p2p() 124 if (hapd->sta_list == sta) { in ap_sta_list_del() 125 hapd->sta_list = sta->next; in ap_sta_list_del() [all …]
|
| D | wpa_auth.c | 3 * Copyright (c) 2004-2022, Jouni Malinen <j@w1.fi> 109 if (sm->mld_assoc_link_id >= 0) in wpa_auth_get_aa() 110 return sm->wpa_auth->mld_addr; in wpa_auth_get_aa() 112 return sm->wpa_auth->addr; in wpa_auth_get_aa() 119 if (sm->mld_assoc_link_id >= 0) in wpa_auth_get_spa() 120 return sm->peer_mld_addr; in wpa_auth_get_spa() 122 return sm->addr; in wpa_auth_get_spa() 132 if (!sm->wpa_auth) in wpa_gkeydone_sta() 135 sm->wpa_auth->group->GKeyDoneStations--; in wpa_gkeydone_sta() 136 sm->GUpdateStationKeys = false; in wpa_gkeydone_sta() [all …]
|
| /third_party/skia/third_party/externals/freetype/docs/oldlogs/ |
| D | ChangeLog.210 | 1 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/ |
| D | libevdev-uinput.c | 1 // SPDX-License-Identifier: MIT 18 #include "libevdev-int.h" 19 #include "libevdev-uinput-int.h" 20 #include "libevdev-uinput.h" 21 #include "libevdev-util.h" 39 uinput_dev->name = strdup(name); in alloc_uinput_device() 40 uinput_dev->fd = -1; in alloc_uinput_device() 75 if (rc == -1) in set_evbits() 83 if (max == -1) in set_evbits() 96 rc = -1; in set_evbits() [all …]
|
| /third_party/grpc/doc/ |
| D | interop-test-descriptions.md | 6 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/curl/ |
| D | CHANGES | 13 - RELEASE-NOTES: synced 17 - THANKS: new contributors from 8.5.0 21 - cd2nroff: use perl 'strict' and 'warnings' 23 - Use strict and warnings pragmas. 25 - If open() fails then show the reason. 27 - Set STDIN io layer :crlf so that input is properly read on Windows. 29 - When STDIN is used as input, the filename $f is now set to "STDIN". 38 - cd2nroff: fix duplicate output issue 40 Assisted-by: Jay Satiro 41 Fixes https://github.com/curl/curl-www/issues/321 [all …]
|
| /third_party/openssl/ |
| D | INSTALL.md | 11 - [Prerequisites](#prerequisites) 12 - [Notational Conventions](#notational-conventions) 13 - [Quick Installation Guide](#quick-installation-guide) 14 - [Building OpenSSL](#building-openssl) 15 - [Installing OpenSSL](#installing-openssl) 16 - [Configuration Options](#configuration-options) 17 - [API Level](#api-level) 18 - [Cross Compile Prefix](#cross-compile-prefix) 19 - [Build Type](#build-type) 20 - [Directories](#directories) [all …]
|
| D | CHANGES.md | 4 This is a high-level summary of the most important changes. 11 ---------------- 13 - [OpenSSL 3.0](#openssl-30) 14 - [OpenSSL 1.1.1](#openssl-111) 15 - [OpenSSL 1.1.0](#openssl-110) 16 - [OpenSSL 1.0.2](#openssl-102) 17 - [OpenSSL 1.0.1](#openssl-101) 18 - [OpenSSL 1.0.0](#openssl-100) 19 - [OpenSSL 0.9.x](#openssl-09x) 22 ----------- [all …]
|
| /third_party/elfutils/ |
| D | NEWS | 12 readelf: Support readelf -Ds, --use-dynamic --symbol. 21 -wal management during scanning using the 22 --scan-checkpoint option. 28 configure: eu-nm, eu-addr2line and eu-stack can provide demangled symbols 29 when linked with libstdc++. Use --disable-demangler to disable. 31 A new option --enable-sanitize-memory has been added for msan 40 elfcompress: -t, --type= now support zstd if libelf has been build with 47 readelf: Add -D, --use-dynamic option. 49 debuginfod-client: Add $DEBUGINFOD_HEADERS_FILE setting to supply outgoing 52 debuginfod: Add --disable-source-scan option. [all …]
|
| /third_party/mbedtls/ |
| D | ChangeLog | 3 = Mbed TLS 3.6.0 branch released 2024-03-28 42 * Support Armv8-A Crypto Extension acceleration for SHA-256 43 when compiling for Thumb (T32) or 32-bit Arm (A32). 44 * AES-NI is now supported in Windows builds with clang and clang-cl. 50 This affects both the low-level modules and the high-level APIs 53 * Support use of Armv8-A Cryptographic Extensions for hardware acclerated 54 AES when compiling for Thumb (T32) or 32-bit Arm (A32). 56 library without the corresponding built-in implementation. Generally 58 or they'll both be built in. However, for CCM and GCM the built-in 61 docs/driver-only-builds.md for full details and current limitations. [all …]
|
| /third_party/elfutils/config/ |
| D | elfutils.spec.in | 1 # -*- rpm-spec-*- 7 Source: ftp://sourceware.org/pub/elfutils/%{version}/elfutils-%{version}.tar.bz2 10 Requires: elfutils-libelf = %{version}-%{release} 11 Requires: elfutils-libs = %{version}-%{release} 13 Requires: elfutils-debuginfod-client = %{version}-%{release} 17 BuildRequires: gcc-c++ 24 BuildRequires: zlib-devel 25 BuildRequires: bzip2-devel 26 BuildRequires: xz-devel 27 BuildRequires: libzstd-devel [all …]
|
| /third_party/libinput/patch/diff_libinput_mmi/libinput/ |
| D | libinput_0000.diff | 1 Copyright (C) 2021-2024 Huawei Device Co., Ltd. 6 http://www.apache.org/licenses/LICENSE-2.0 14 diff -Naur old/export_include/libinput.h new/export_include/libinput.h 15 --- old/export_include/libinput.h 2025-07-01 16:56:48.821091242 +0800 16 +++ new/export_include/libinput.h 2025-07-01 17:02:58.057132281 +0800 17 @@ -196,6 +196,23 @@ 41 @@ -321,6 +338,49 @@ 91 @@ -393,6 +453,17 @@ 100 + int32_t fuzz; 109 @@ -702,6 +773,7 @@ [all …]
|
| /third_party/lwip/ |
| D | CHANGELOG | 7 * [Enter new changes just after this line - do not remove this line] 11 2025-06-03: Simon Goldschmidt 12 * ip4_frag/ip6_frag: fix potential NULL-pointer access on memory errors 14 (STABLE-2.2.1): 18 2023-10-11: Faidon Liambotis 21 2023-09-29: Jiri Findejs 26 2024-02-19: Simon Goldschmidt 29 2024-01-09: Simon Goldschmidt 30 * snmp v3, ppp: prevent possible timing attacks by using a constant-runtime-memcmp when 33 2023-01-04: Simon Goldschmidt [all …]
|
| /third_party/toybox/www/ |
| D | index.html | 2 <!--#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 …]
|
| D | news.html | 2 <!--#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/mesa3d/docs/relnotes/ |
| D | 21.1.0.rst | 1 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 …]
|