Home
last modified time | relevance | path

Searched refs:patterns (Results 1 – 25 of 46) sorted by relevance

12

/onnv-gate/usr/src/cmd/ssh/sshd/
H A Dauth-options.c178 char *patterns = xmalloc(strlen(opts) + 1); in auth_parse_options() local
187 patterns[i++] = '"'; in auth_parse_options()
190 patterns[i++] = *opts++; in auth_parse_options()
197 xfree(patterns); in auth_parse_options()
200 patterns[i] = 0; in auth_parse_options()
203 patterns) != 1) { in auth_parse_options()
204 xfree(patterns); in auth_parse_options()
215 xfree(patterns); in auth_parse_options()
223 char *patterns = xmalloc(strlen(opts) + 1); in auth_parse_options() local
232 patterns[i++] = '"'; in auth_parse_options()
[all …]
/onnv-gate/usr/src/cmd/lp/filter/postscript/postdmd/
H A Dpostdmd.c155 int patterns; /* 16 bit patterns per scan line */ variable
537 total = scanlines * patterns; in bitmap()
539 bbox[0] = MAX(bbox[0], patterns*16); /* for BoundingBox comment */ in bitmap()
549 fprintf(fp_out, "%d %d bitmap\n", patterns * 16, scanlines); in bitmap()
554 if ( patcount % patterns == 0 ) in bitmap()
559 … fprintf(stderr, "patterns = %d, scanlines = %d, patcount = %d\n", patterns, scanlines, patcount); in bitmap()
599 patterns = (cx - ox + 15) / 16; in dimensions()
601 } else patterns = getint(); in dimensions()
603 if ( scanlines <= 0 || patterns <= 0 ) /* done - don't do the malloc() */ in dimensions()
609 if ( (rptr = raster = (char *) malloc(patterns * 2)) == NULL ) in dimensions()
[all …]
H A DREADME27 By default 6 byte patterns are used, but any number can be selected with the -b
28 option. 6 byte patterns are a tradeoff that achieves a good (but not necessarily
40 bytes patterns count
42 where bytes and count are decimal integers and patterns is a series of hex digits.
/onnv-gate/usr/src/cmd/ssh/libssh/common/
H A Dmatch.c187 const char *patterns) in match_host_and_ip() argument
192 if ((mip = match_hostname(ipaddr, patterns, strlen(patterns))) == -1) in match_host_and_ip()
195 if ((mhost = match_hostname(host, patterns, strlen(patterns))) == -1) in match_host_and_ip()
/onnv-gate/usr/src/cmd/grep_xpg4/
H A Dgrep.c70 static PATTERN *patterns; variable
309 if (patterns == NULL && !fflag) { in main()
473 pp->next = patterns; in addpattern()
474 patterns = pp; in addpattern()
498 for (npatterns = 0, pp = patterns; pp != NULL; pp = pp->next) { in fixpatterns()
603 (npatterns == 1) && (strlen(patterns->pattern) != 0); in fixpatterns()
690 if (patterns == NULL) in grep()
693 pp = patterns; in grep()
866 pp = patterns; /* to make it happen */ in grep()
915 for (pp = patterns; pp; pp = pp->next) { in grep()
[all …]
/onnv-gate/usr/src/cmd/sgs/rtld/common/
H A Dmalloc.c82 const ulong_t patterns[] = { variable
93 ASSERT(*membgn != patterns[pattern]); in scribble()
94 *membgn++ = patterns[pattern]; in scribble()
/onnv-gate/usr/src/cmd/lp/filter/postscript/postmd/
H A DREADME25 for patterns. Although I haven't been anywhere close, I expect a 600x600 matrix
44 By default 6 byte patterns are used, but any number can be selected with the -b
45 option. 6 byte patterns are a tradeoff that achieves a good (but not necessarily
/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/
H A Dproto.h132 int file_compare(char *patterns, char *file);
133 int remote_compare(char *patterns);
H A Dextensions.c2069 int file_compare(char *patterns, char *file) argument
2077 strncpy(buf, patterns, sizeof(buf) - 1);
2095 int remote_compare(char *patterns) argument
2103 strncpy(buf, patterns, sizeof(buf) - 1);
/onnv-gate/usr/src/cmd/tcpd/
H A Dhosts_access.c.org183 /* list_match - match a request against a list of patterns with exceptions */
256 * patterns are specific to host names or to host addresses; all other
257 * patterns are satisfied when either the address OR the name match.
H A DCHANGES117 username patterns.
191 - daemon@host patterns trigger on clients that connect to a specific
449 of the wild card patterns supported by the access control files.
H A Dtcpdmatch.c.org213 * Perhaps they are testing special client hostname patterns that aren't
H A DREADME373 control rules require them to do so (via user@host client patterns, see
429 With the wrapper software, `daemon@host' access control patterns can be
538 real time and can associate arbitrary actions with patterns; its
/onnv-gate/usr/src/lib/libshell/common/tests/
H A Dnameref.sh358 command typeset -n n=v.${k//['./']/_} 2> /dev/null || err_exit 'patterns with quotes not handled co…
/onnv-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Exacct/
H A Dextract_defines21 # Map of module names to files and lists + patterns of macros to declare.
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/pod/
H A Dperlre.pod80 The patterns used in Perl pattern matching derive from supplied in
146 Because patterns are processed as double quoted strings, the following
351 several patterns that you want to match against consequent substrings
400 extended patterns (see below), for example to assign a submatch to a
419 use C<$&>, C<$`> or C<$'>, then patterns I<without> capturing
483 particularly useful for dynamic patterns, such as those read in from a
626 custom of using run-time determined strings as patterns. For example:
1091 =head2 Repeated patterns matching zero-length substring
1173 patterns using combining operators C<ST>, C<S|T>, C<S*> etc
H A Dperlfaq6.pod60 While we normally think of patterns as being delimited with C</>
123 =head2 How can I pull out lines between two patterns that are themselves on different lines?
416 patterns in Regexp::Common. The module Text::Balanced provides a
522 That's because Perl has to recompile all those patterns for each of
H A Dperlretut.pod22 examples are the patterns typed into a search engine to find web pages
23 and the patterns used to list files in a directory, e.g., C<ls *.txt>
24 or C<dir *.*>. In Perl, the patterns described by regular expressions
1287 patterns.
1830 program that matches multiple patterns:
1862 B<extended patterns>. These are extensions to the traditional regular
2015 The last few extended patterns in this tutorial are experimental as of
2086 that allows one to choose which patterns are to be matched, based on
/onnv-gate/usr/src/lib/watchmalloc/common/
H A Dmalloc.c86 static uint64_t patterns[2] = { variable
94 uint64_t pattern = patterns[pat]; in copy_pattern()
/onnv-gate/usr/src/lib/libshell/common/
H A Dsh.memo1180 patterns which contains back slashes within command substitution.
1559 The other parameter expansion modifiers use shell patterns
1561 A description of shell patterns is contained below.
1822 patterns for matching file names as well as for matching strings.
1830 These characters are used to form patterns that
1885 is a list of one or more patterns separated by a
1903 matches any pattern in the list of patterns enclosed in
1908 patterns,
1911 requires a match of one or more of any of the given patterns.
1918 matches anything except any of the given patterns.
[all …]
H A DRELEASE317 08-10-24 The lexer now accepts all RE characters for patterns prefixed
573 08-02-15 A bug in ${var/pattern/string} for patterns of the form ?(*) and +(*)
776 07-01-26 A bug in which ~(E) in patterns containing \ that are not inside ()
851 shell patterns has been documented.
963 05-06-21 A bug in which nested patterns of the form {m,n}(pat) would cause
972 05-05-23 An extension to shell patterns that allows matching of nested
1178 03-07-15 A parsing error for patterns of the form {...}(...) when
1456 01-10-03 Yet another optimizer bug in which shell patterns were
1551 01-05-20 The character class [:word:] has been added to patterns.
1619 01-04-09 A bug in which invalid patterns, for example, ) by itself,
[all …]
H A DRELEASE93140 o. Backreferencing sub-expressions in patterns and replacement
211 patterns with ${x/pattern/replace}.
/onnv-gate/usr/src/cmd/filesync/
H A DREADME257 routines to maintain a list of names or patterns for
/onnv-gate/usr/src/cmd/lp/filter/postscript/
H A DREADME250 on PostScript printers. May help if you're looking for patterns in large
/onnv-gate/usr/src/lib/libast/common/
H A DRELEASE234 06-12-20 features/libpath.sh: generalize sol.* LIBPATH patterns
276 06-10-01 path/pathshell.c: localize the shell path patterns and accept ksh93
982 glob: fix GLOB_NOCHECK to avoid stat() and properly trim patterns
1491 add comp/fakelink.h to synthesize a few symlink text patterns

12