/freebsd-src/libexec/getty/ |
H A D | gettytab.5 | 70 .Bl -column Name Type /usr/bin/login 72 .It "ac str unused expect-send chat script for modem answer" 73 .It "al str unused user to auto-login instead of prompting" 76 .It "c0 num unused tty control flags to write messages" 77 .It "c1 num unused tty control flags to read login name" 78 .It "c2 num unused tty control flags to leave terminal as" 83 .It "co bool false console - add" 86 .It "ct num 10 chat timeout for" 91 .It "dc num 0 chat debug bitmask" 92 .It "de num 0 delay secs and flush input before writing first prompt" [all …]
|
/freebsd-src/sys/contrib/device-tree/Bindings/leds/backlight/ |
H A D | qcom-wled.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/leds/backlight/qcom-wled.yaml# 5 $schema: http://devicetree.org/meta-schema [all...] |
/freebsd-src/contrib/ofed/opensm/opensm/ |
H A D | osm_qos_parser_l.l | 3 * Copyright (c) 2004-2006 Voltaire, Inc. All rights reserved. 4 * Copyright (c) 2002-2008 Mellanox Technologies LTD. All rights reserved. 5 * Copyright (c) 1996-2003 Intel Corporation. All rights reserved. 17 * - Redistributions of source code must retain the above 21 * - Redistributions in binary form must reproduce the above 77 #define START_USE {in_description = TRUE;} /* list of strings including whitespace (… 78 #define START_PORT_GUID {in_list_of_hex_num_ranges = TRUE;} /* comma-separated list of hex num… 79 …START_PORT_NAME {in_list_of_strings = TRUE;} /* comma-separated list of following strings: ..… 84 #define START_NODE_TYPE {in_node_type = TRUE;} /* comma-separated list of node types (ROU… 85 #define START_SL2VL_TABLE {in_list_of_numbers = TRUE;} /* comma-separated list of hex or dec numb… [all …]
|
/freebsd-src/sys/contrib/device-tree/Bindings/usb/ |
H A D | atmel-usb.txt | 6 - compatible: Should be "atmel,at91rm9200-ohci" for USB controllers 8 - reg: Address and length of the register set for the device 9 - interrupts: Should contain ohci interrupt 10 - clocks: Should reference the peripheral, host and system clocks 11 - clock-names: Should contain three strings 15 - num-ports: Number of ports. 16 - atmel,vbus-gpio: If present, specifies a gpio that needs to be 18 - atmel,oc-gpio: If present, specifies a gpio that needs to be 22 compatible = "atmel,at91rm9200-ohci", "usb-ohci"; 25 clock-names = "ohci_clk", "hclk", "uhpck"; [all …]
|
/freebsd-src/contrib/libarchive/libarchive/ |
H A D | archive_util.c | 1 /*- 2 * Copyright (c) 2009-2012,2014 Michihiro NAKAJIMA 3 * Copyright (c) 2003-2007 Tim Kientzle 105 return (a->archive_error_number); in archive_errno() 112 if (a->error != NULL && *a->error != '\0') in archive_error_string() 113 return (a->error); in archive_error_string() 121 return (a->file_count); in archive_file_count() 127 return (a->archive_format); in archive_format() 133 return (a->archive_format_nam in archive_format_name() 236 static const wchar_t num[] = { __archive_mktempx() local 518 static const char num[] = { __archive_mktempx() local 634 archive_utility_string_sort_helper(char ** strings,unsigned int n) archive_utility_string_sort_helper() argument 696 archive_utility_string_sort(char ** strings) archive_utility_string_sort() argument [all...] |
/freebsd-src/secure/usr.bin/openssl/man/ |
H A D | openssl-speed.1 | 18 .\" Set up some character translations and predefined strings. \*(-- will 24 .tr \(*W- 25 .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' 27 . ds - [all...] |
H A D | openssl-prime.1 | 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\| 45 .\" Escape single quotes in literal strings from groff's Unicode transform. 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" [all …]
|
H A D | openssl-genrsa.1 | 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\| 45 .\" Escape single quotes in literal strings from groff's Unicode transform. 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" [all …]
|
/freebsd-src/contrib/lib9p/pytest/ |
H A D | sequencer.py | 26 Base class for en/de-coders, which are put into sequencers. 28 All have a name and arbitrary user-supplied auxiliary data 42 convert strings to bytes and vice versa, as reversibly as 44 a no-op since the string type *is* the bytes type (<type 45 'unicode'>) is the unicode-ized string type). 50 These are partly for internal use (all strings get converted 51 to UTF-8 byte sequences when coding a _string_ type) and partly 61 return byte_sequence.decode('utf-8', 'surrogateescape') 66 return unicode_sequence.encode('utf-8', 'surrogateescape') 75 return string.encode('utf-8', 'surrogateescape') [all …]
|
/freebsd-src/contrib/ofed/opensm/include/opensm/ |
H A D | osm_qos_policy.h | 2 * Copyright (c) 2004-2009 Voltaire, Inc. All rights reserved. 3 * Copyright (c) 2002-2012 Mellanox Technologies LTD. All rights reserved. 4 * Copyright (c) 1996-2003 Intel Corporation. All rights reserved. 16 * - Redistributions of source code must retain the above 20 * - Redistributions in binary form must reproduce the above 84 cl_list_t group_list; /* list of group names (strings) */ 85 cl_list_t across_list; /* list of 'across' group names (strings) */ 86 cl_list_t vlarb_high_list; /* list of num pairs (n:m,...), 32-bit values */ 87 cl_list_t vlarb_low_list; /* list of num pairs (n:m,...), 32-bit values */ 95 cl_list_t group_list; /* list of strings (port group names) */ [all …]
|
/freebsd-src/contrib/ncurses/ncurses/tinfo/ |
H A D | alloc_ttype.c | 2 * Copyright 2018-2022,2023 Thomas E. Dickey * 3 * Copyright 1999-2016,2017 Free Software Foundation, Inc. * 31 * Author: Thomas E. Dickey <dickey@clark.net> 1999-on * 35 * align_ttype.c -- functions for TERMTYPE 61 na--; in merge_names() 64 nb--; in merge_names() 68 na--, nb--; in merge_names() 71 while (na-- > 0) { in merge_names() 74 while (nb-- > 0) { in merge_names() 77 DEBUG(4, ("merge_names -> %d", n)); in merge_names() [all …]
|
/freebsd-src/sys/dev/xen/xenstore/ |
H A D | xenstore.c | 4 * Low-level kernel interface to the XenStore. 52 #include <xen/xen-os.h> 85 * guest either via the xen_start_info structure for a fully para- 116 /*------- 270 extract_strings(const char * strings,const char ** dest,u_int len) extract_strings() argument 272 u_int num; extract_strings() local 302 split(char * strings,u_int len,u_int * num) split() argument 1272 xs_directory(struct xs_transaction t,const char * dir,const char * node,u_int * num,const char *** result) xs_directory() argument 1275 char *strings; xs_directory() local [all...] |
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | StringExtras.h | 1 //===- llvm/ADT/StringExtras.h - Useful string functions --------* 47 toStringRefArray(const char * const * Strings) toStringRefArray() argument 285 to_float(const Twine & T,N & Num,N (* StrTo)(const char *,char **)) to_float() argument 297 to_float(const Twine & T,float & Num) to_float() argument 301 to_float(const Twine & T,double & Num) to_float() argument 305 to_float(const Twine & T,long double & Num) to_float() argument [all...] |
/freebsd-src/secure/lib/libcrypto/man/man3/ |
H A D | RAND_egd.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\| 45 .\" Escape single quotes in literal strings from groff's Unicode transform. 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" [all …]
|
H A D | OPENSSL_instrument_bus.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\| 45 .\" Escape single quotes in literal strings from groff's Unicode transform. 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" [all …]
|
H A D | EC_POINT_add.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\| 45 .\" Escape single quotes in literal strings from groff's Unicode transform. 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" [all …]
|
H A D | OPENSSL_secure_malloc.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\| 45 .\" Escape single quotes in literal strings from groff's Unicode transform. 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" [all …]
|
H A D | RAND_bytes.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\| 45 .\" Escape single quotes in literal strings from groff's Unicode transform. 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" [all …]
|
H A D | OPENSSL_malloc.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\| 45 .\" Escape single quotes in literal strings from groff's Unicode transform. 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" [all …]
|
H A D | RAND_set_rand_method.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\| 45 .\" Escape single quotes in literal strings from groff's Unicode transform. 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" [all …]
|
H A D | RAND_add.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\| 45 .\" Escape single quotes in literal strings from groff's Unicode transform. 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" [all …]
|
H A D | OSSL_trace_get_category_num.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\| 45 .\" Escape single quotes in literal strings from groff's Unicode transform. 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" [all …]
|
/freebsd-src/contrib/libedit/ |
H A D | filecomplete.c | 3 /*- 58 * does tilde expansion of strings of type ``~user/foo'' 86 len = (size_t)(pos - txt + 1); in fn_tilde_expand() 90 (void)strlcpy(temp, txt + 1, len - 1); in fn_tilde_expand() 120 len = strlen(pass->pw_dir) + 1 + strlen(txt) + 1; in fn_tilde_expand() 124 (void)snprintf(temp, len, "%s/%s", pass->pw_dir, txt); in fn_tilde_expand() 207 wchar_t *temp = el->el_line.buffer; in escape_filename() 213 while (temp != el->el_line.cursor) { in escape_filename() 219 (temp == el->el_line.buffer || temp[-1] != '\\')) in escape_filename() 349 len = (size_t)(pos - text); /* including last slash */ in fn_filename_completion_function() [all …]
|
/freebsd-src/contrib/lib9p/ |
H A D | pack.c | 29 * Based on libixp code: ©2007-2010 Kris Maglione <maglione.k at Gmail> 66 * just len itself, converted to signed), or -1 if we ran out of space. 68 * Note that if we return -1, subsequent l9p_iov_io() calls with 69 * the same (and not-reset) msg and len > 0 will also return -1. 83 if (msg->lm_cursor_iov >= msg->lm_niov) in l9p_iov_io() 84 return (-1); in l9p_iov_io() 89 size_t idx = msg->lm_cursor_iov; in l9p_iov_io() 90 size_t space = msg->lm_iov[idx].iov_len - msg->lm_cursor_offset; in l9p_iov_io() 93 if (msg->lm_mode == L9P_PACK) { in l9p_iov_io() 94 memcpy((char *)msg->lm_iov[idx].iov_base + in l9p_iov_io() [all …]
|
/freebsd-src/sys/contrib/device-tree/Bindings/spi/ |
H A D | omap-spi.txt | 4 - compatible : 5 - "ti,am654-mcspi" for AM654. 6 - "ti,omap2-mcspi" for OMAP2 & OMAP3. 7 - "ti,omap4-mcspi" for OMAP4+. 8 - ti,spi-num-cs : Number of chipselect supported by the instance. 9 - ti,hwmods: Name of the hwmod associated to the McSPI 10 - ti,pindir-d0-out-d1-in: Select the D0 pin as output and D1 as 15 - dmas: List of DMA specifiers with the controller specific format 18 - dma-names: List of DMA request names. These strings correspond 28 #address-cells = <1>; [all …]
|