/freebsd-src/contrib/llvm-project/lldb/include/lldb/Host/ |
H A D | Editline.h | 1 //===-- Editline.h -------- [all...] |
/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
H A D | Markup.cpp | 1 //===- lib/DebugInfo/Symbolize/Markup.cpp ------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 25 // "\033[30m" -- "\033[37m" 26 static const char SGRSyntaxStr[] = "\033\\[([0-1]|3[0-7])m"; 32 return Str.take_front(Pos - Str.begin()); in takeTo() 35 Str = Str.drop_front(Pos - Str.begin()); in advanceTo() 38 void MarkupParser::parseLine(StringRef Line) { in parseLine() argument 42 this->Line = Line; in parseLine() [all …]
|
/freebsd-src/crypto/openssl/util/ |
H A D | check-format.pl | 3 # Copyright 2020-2024 The OpenSSL Project Authors. All Rights Reserved. 4 # Copyright Siemens AG 2019-2022 11 # check-format.pl 12 # - check formatting of C source according to OpenSSL coding style 15 # check-format.pl [-l|--sloppy-len] [- [all...] |
H A D | check-format-test-positives.c | 2 * Copyright 2007-2023 The OpenSSL Project Authors. All Rights Reserved. 3 * Copyright Siemens AG 2015-2022 12 * This demonstrates/tests cases where check-format.pl should report issues. 14 * delimiters and parenthesis-like symbols, e.g., on unexpected/unclosed braces. 18 * The '@'s after '*' are used for self-tests: they mark lines containing 20 * while handling the given line, but in case of delayed checks there is a 21 * following digit indicating the number of reports expected for this line. 26 /*@ intra-line carriage return character: 28 /*@ non-printable ASCII character: */ 29 /*@ non-ASCII character: ä */ [all …]
|
H A D | check-format-test-negatives.c | 2 * Copyright 2007-2024 The OpenSSL Project Authors. All Rights Reserved. 3 * Copyright Siemens AG 2015-2022 12 * A collection of test cases where check-format.pl should not report issues. 26 /* allow extra SPC in single-line comment */ 28 * allow extra SPC in regular multi-line comment 30 /*- 31 * allow extra SPC in format-tagge [all...] |
/freebsd-src/sbin/init/ |
H A D | init.8 | 51 and if this succeeds, begins multi-user operation. 54 commences single-user operation by giving 55 the super-user a shell on the console. 60 prevent the system from going multi-user and to instead execute 61 a single-user shell without starting the normal daemons. 63 later be made to go to multi-user by exiting the 64 single-use [all...] |
/freebsd-src/contrib/bmake/unit-tests/ |
H A D | directive-info.mk | 1 # $NetBSD: directive-info.mk,v 1.11 2023/06/01 20:56:35 rillig Exp $ 5 # Until parse.c 1.502 from 2020-12-19, a missing argument to the directive 7 # from 2020-12-19, the correct "Missing argument" is produced. 24 .information message # Accepted before 2020-12-13 01:07:54. 35 # expect+1: Unknown directive "info-message" 36 .info-message # This is an unknown directive. 37 # expect+1: no-target: no-source 38 .info no-target: no-source # This is a .info directive, not a dependency. 41 # Since at least 2002-01-01 and before parse.c 1.639 from 2022-01-08, the line 43 # number of completely read lines. For the following multi-line directive, [all …]
|
H A D | opt-debug-parse.mk | 1 # $NetBSD: opt-debug-parse.mk,v 1.8 2023/06/01 20:56:35 rillig Exp $ 3 # Tests for the -dp command line option, which adds debug logging about 6 .MAKEFLAGS: -dp 10 # Before parse.c 1.639 from 2022-01-08, PrintStackTrace and other diagnostics 11 # printed a wrong line number, using the last line before the loop body, while 12 # it should rather be the line number where the .for loop starts. 14 # Before parse.c 1.643 from 2022-01-08, PrintStackTrace tried to be too clever 15 # by merging stack trace entries, printing confusing line numbers as a result. 20 # expect+1: trace with multi-line .for loop head 21 .info trace with multi-line .for loop head [all …]
|
H A D | opt-debug-parse.exp | 1 Parsing line 16: .for var in value 2 Parse_PushInput: .for loop in opt-debug-parse.mk, line 16 3 SetFilenameVars: ${.PARSEDIR} = <some-dir> ${.PARSEFILE} = `opt-debug-parse.mk' 4 Parsing line 21: .info trace with multi-line .for loop head 5 make: "opt-debug-parse.mk" line 21: trace with multi-line .for loop head 6 in .for loop from opt-debug-parse.mk:16 with var = value 7 ParseEOF: returning to file opt-debug-parse.mk, line 23 8 SetFilenameVars: ${.PARSEDIR} = <some-dir> ${.PARSEFILE} = `opt-debug-parse.mk' 9 Parsing line 26: .include "/dev/null" 10 Parse_PushInput: file /dev/null, line 1 [all …]
|
H A D | sh-multi-line.mk | 1 # $NetBSD: sh-multi-line.mk,v 1.2 2020/08/16 14:25:16 rillig Exp $ 3 # Tests for multi-line shell commands, to ensure that the line breaks
|
H A D | directive-info.exp | 1 make: "directive-info.mk" line 12: begin .info tests 2 make: "directive-info.mk" line 14: Unknown directive "inf" 3 make: "directive-info.mk" line 16: Missing argument for ".info" 4 make: "directive-info.mk" line 18: message 5 make: "directive-info.mk" line 2 [all...] |
/freebsd-src/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/ |
H A D | Markup.h | 1 //===- Markup.h -------------------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 14 //===----------------------------------------------------------------------===// 55 /// Parses an individual \p Line of input. 62 /// Note that some elements may span multiple lines. If a line ends with the 66 /// corresponding to the lines of the multi-line element. 67 void parseLine(StringRef Line); 72 /// in-progress multi-line element) and may cause nextNode() to return 89 std::optional<MarkupNode> parseElement(StringRef Line); [all …]
|
/freebsd-src/contrib/xz/src/xz/ |
H A D | xz.1 | 2 .\" SPDX-License-Identifier: 0BSD 7 .TH XZ 1 "2024-04-08" "Tukaani" "XZ Utils" 10 xz, unxz, xzcat, lzma, unlzma, lzcat \- Compress or decompress .xz and .lzma files 42 .RB ( "xz \-d" 52 is a general-purpose data compression tool with 53 command line syntax similar to 93 .B \-\-stdout 97 .B \- 188 .B \-\-keep 204 .B \-\-verbose [all …]
|
/freebsd-src/crypto/openssl/doc/man3/ |
H A D | X509_NAME_print_ex.pod | 6 X509_NAME_oneline - X509_NAME printing routines 22 Each line (for multiline formats) is indented by I<indent> spaces. The 29 This supports multi-valued RDNs and escapes B</> and B<+> characters in values. 35 X509_NAME_print() prints out I<name> to I<bp> indenting each line by I<obase> 42 produce a non standard output form, they don't handle multi-character fields and 61 components and separate values in the same RDN for a multi-valued RDN. 62 Multi-valued RDNs are currently very rare 98 B<XN_FLAG_ONELINE> is a more readable one line format which is the same as: 117 Otherwise, it returns -1 on error or other values on success. 125 Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved.
|
/freebsd-src/sys/contrib/device-tree/Bindings/mtd/ |
H A D | fsl-upm-nand.txt | 4 - compatible : "fsl,upm-nand". 5 - reg : should specify localbus chip select and size used for the chip. 6 - fsl,upm-addr-offset : UPM pattern offset for the address latch. 7 - fsl,upm-cmd-offset : UPM pattern offset for the command latch. 10 - fs [all...] |
/freebsd-src/share/man/man5/ |
H A D | sysctl.conf.5 | 34 file is read in when the system goes into multi-user mode to set default 41 .Bd -literal -offset indent 47 at the beginning of a line. 48 Comments can also exist at the end of a line, 56 additional module-specific settings can be applied 60 .Bl -tag -width /etc/rc.d/sysctl_lastload -compact 65 early on in the process of transitioning to multi-user mode. 70 shortly before the system reaches the multi-user mode. 75 Machine-specific settings for sites with a common 84 .Bd -literal -offset indent
|
/freebsd-src/sys/dev/sound/pci/ |
H A D | envy24ht.h | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 30 /* -------------------------------------------------------------------- */ 37 #define ENVY24HT_PCIR_MT 0x14 /* Multi-Track I/O Base Address */ 45 #define ENVY24HT_CCS_IMASK_PMT 0x10 /* Professional Multi-track */ 65 #define ENVY24HT_CCSM_SCFG_MPU 0x20 /* 0(not implemented)/1(1) MPU-401 UART */ 66 #define ENVY24HT_CCSM_SCFG_ADC 0x0c /* 1-2 stereo ADC connected, S/PDIF receiver connected */ 67 #define ENVY24HT_CCSM_SCFG_DAC 0x03 /* 1-4 stereo DAC connected */ 69 #define ENVY24HT_CCS_ACL 0x05 /* AC-Link Configuration Register */ 70 #define ENVY24HT_CCSM_ACL_MTC 0x80 /* Multi-track converter type: 0:AC'97 1:I2S */ [all …]
|
/freebsd-src/crypto/openssl/apps/lib/ |
H A D | http_server.c | 2 * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved. 15 * value 2 is to make sure no function defined in POSIX-2 is left undefined. 43 int multi = 0; /* run multiple responder processes */ variable 66 if (multi) { in log_message() 95 for (i = 0; i < multi; ++i) in killall() 111 * Loop spawning up to `multi` child processes, only child processes return 129 kidpids = app_malloc(multi * sizeof(*kidpids), "child PID array"); in spawn_loop() 130 for (i = 0; i < multi; ++i) in spawn_loop() 143 while (termsig == 0 && procs >= multi) { in spawn_loop() 144 if ((fpid = waitpid(-1, &status, 0)) > 0) { in spawn_loop() [all …]
|
/freebsd-src/share/man/man4/ |
H A D | hmt.4 | 1 .\" Copyright (c) 2014-2020 Vladimir Kondratyev <wulf@FreeBSD.org> 30 .Nd MS Windows 7/8/10 - compatible HID multi-touch device driver 34 .Bd -ragged -offset indent 43 module at boot time, place the following line in 45 .Bd -literal -offset indent 51 driver provides support for the MS Windows 7/8/10 - compatible HID 52 multi-touch devices found in many laptops. 54 To get multi-touch device working in 55 .Xr X 7 Pq Pa ports/x11/xorg-docs , 57 .Pa ports/x11-drivers/xf86-input-evdev . [all …]
|
H A D | wmt.4 | 1 .\" Copyright (c) 2014-2017 Vladimir Kondratyev <wulf@FreeBSD.org> 30 .Nd MS Windows 7/8/10 - compatible USB HID multi-touch device driver 34 .Bd -ragged -offset indent 42 module at boot time, place the following line in 44 .Bd -literal -offset indent 50 driver provides support for the MS Windows 7/8/10 - compatible USB HID 51 multi-touch devices found in many laptops. 53 To get multi-touch device working in 54 .Xr X 7 Pq Pa ports/x11/xorg-docs , 56 .Pa ports/x11-drivers/xf86-input-evdev . [all …]
|
/freebsd-src/lib/libpmc/pmu-events/arch/x86/cascadelakex/ |
H A D | uncore-other.json | 10 …"BriefDescription": "LLC misses - Uncacheable reads (from cpu) . Derived from unc_cha_tor_inserts.… 20 "BriefDescription": "LLC misses - Uncacheable reads (from cpu) ", 70 …"BriefDescription": "Streaming stores (full cache line). Derived from unc_cha_tor_inserts.ia_miss", 81 "BriefDescription": "Streaming stores (full cache line)", 92 …"BriefDescription": "Streaming stores (partial cache line). Derived from unc_cha_tor_inserts.ia_mi… 103 "BriefDescription": "Streaming stores (partial cache line)", 164 "ScaleUnit": "7.11E-06Bytes", 174 "ScaleUnit": "7.11E-06Bytes", 355 "BriefDescription": "Multi-socket cacheline Directory state lookups; Snoop Not Needed", 360 …"PublicDescription": "Counts transactions that looked into the multi-socket cacheline Directory st… [all …]
|
/freebsd-src/sys/contrib/device-tree/src/arm/aspeed/ |
H A D | aspeed-bmc-facebook-greatlakes.dts | 1 // SPDX-License-Identifier: GPL-2.0-or-later 4 /dts-v1/; 5 #include "aspeed-g6.dtsi" 6 #include <dt-bindings/gpio/aspeed-gpio.h> 7 #include <dt-binding [all...] |
/freebsd-src/secure/lib/libcrypto/man/man3/ |
H A D | X509_NAME_print_ex.3 | 18 .\" Set up some character translations and predefined strings. \*(-- will 24 .tr \(*W- 27 . ds -- \(*W- 29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch 30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch 37 . ds -- \|\(em\| 71 .\" Fear. Run. Save yourself. No user-serviceable parts. 81 . ds #H ((1u-(\\\\n(.fu%2u))*.13m) 97 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" 98 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' [all …]
|
/freebsd-src/sys/contrib/device-tree/Bindings/mfd/ |
H A D | retu.txt | 1 * Device tree bindings for Nokia Retu and Tahvo multi-function device 3 Retu and Tahvo are a multi-function devices found on Nokia Internet 9 - compatible: "nokia,retu" or "nokia,tahvo" 10 - reg: Specifies the CBUS slave address of the ASIC chip 11 - interrupts: The interrupt line the device is connected to 16 compatible = "i2c-cbus-gpio"; 20 interrupt-parent = <&gpio4>;
|
/freebsd-src/contrib/kyua/utils/cmdline/ |
H A D | parser_test.cpp | 48 #include <atf-c++.hpp> 87 /// Checks that the user-provided option is valid. 96 throw cmdline::option_argument_value_error(F("--%s") % long_name(), in validate() 100 /// Converts the user-provided argument to our native integer type. 142 ATF_REQUIRE(oldout != -1); in mock_stdfds() 144 ATF_REQUIRE(olderr != -1); in mock_stdfds() 147 ATF_REQUIRE(fd != -1); in mock_stdfds() 148 ATF_REQUIRE(::dup2(fd, STDOUT_FILENO) != -1); in mock_stdfds() 149 ATF_REQUIRE(::dup2(fd, STDERR_FILENO) != -1); in mock_stdfds() 163 ATF_REQUIRE(::dup2(oldfds.first, STDOUT_FILENO) != -1); in restore_stdfds() [all …]
|