Searched refs:match (Results 26 - 50 of 335) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/sun_fc/common/
H A DHandlePort.h58 bool match(uint64_t portWWN);
59 bool match(int index);
H A DHandleNPIVPort.cc102 * @return FALSE if the argument does not match this port
106 bool HandleNPIVPort::match(uint64_t portWWN) { function in class:HandleNPIVPort
107 Trace log("HandleNPIVPort::match(wwn)");
116 * @return FALSE if the argument does not match this port
120 bool HandleNPIVPort::match(int index) { function in class:HandleNPIVPort
121 Trace log("HandleNPIVPort::match(index)");
/illumos-gate/usr/src/cmd/tbl/
H A Dt1.c103 if (match("-me", *sargv))
108 if (match("-ms", *sargv))
113 if (match("-mm", *sargv))
118 if (match("-TX", *sargv))
H A Dts.c19 match(char *s1, char *s2) function
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/keytab/
H A Dkt_findrealm.c29 * the components of a principal (princ) but match on any realm. When a
40 krb5_boolean match; local
55 match = krb5_principal_compare(context, ent.principal, princ);
60 if (match) {
/illumos-gate/usr/src/lib/libast/common/comp/
H A Dfnmatch.c58 regmatch_t match; local
67 reflags = regexec(&re, subject, 1, &match, 0);
69 if (!reflags && (reflags = subject[match.rm_eo]))
H A Dregcmp.c190 regmatch_t match[SUB + 1]; local
199 if (regexec(&re->re, subject, SUB + 1, match, 0))
205 k = match[i].rm_eo - match[i].rm_so;
206 strncpy(sub[n], subject + match[i].rm_so, k);
209 __loc1 = (char*)subject + match[0].rm_so;
210 return (char*)subject + match[0].rm_eo;
/illumos-gate/usr/src/cmd/sed/
H A Dprocess.c81 regmatch_t *match; variable
389 if (lastempty || match[0].rm_so != match[0].rm_eo) {
391 re_off = match[0].rm_so;
398 /* Move past this match. */
399 if (match[0].rm_so != match[0].rm_eo) {
400 s += match[0].rm_eo;
401 slen -= match[0].rm_eo;
404 if (match[
[all...]
H A Dextern.h40 extern regmatch_t *match;
/illumos-gate/usr/src/tools/ctf/cvt/
H A Doutput.c152 * A fuzzy match is where we have a local symbol matching the name of a
156 * A weak fuzzy match is when a weak symbol was resolved and matched to
160 matching_iidesc(iidesc_t *iidesc, iidesc_match_t *match) argument
162 if (streq(iidesc->ii_name, match->iim_name) == 0)
168 if (match->iim_bind == STB_GLOBAL) {
169 match->iim_ret = iidesc;
171 } else if (match->iim_fuzzy && match->iim_ret == NULL) {
172 match->iim_ret = iidesc;
173 /* continue to look for strong match */
191 find_iidesc(tdata_t *td, iidesc_match_t *match) argument
338 iidesc_match_t match; local
[all...]
H A Dfixup_tdescs.c160 struct match { struct
166 matching_iidesc(iidesc_t *iidesc, struct match *match) argument
168 if (!streq(iidesc->ii_name, match->m_name))
174 match->m_ret = iidesc->ii_dtype;
181 struct match match = { NULL, name }; local
182 iter_iidescs_by_name(td, name, (int (*)())matching_iidesc, &match);
183 return (match.m_ret);
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dgetopt.c134 int match; /* nonzero if opt is matching part of optstring */ local
146 match = 1;
148 match = (*ip++ == *op++ && match);
149 if (match && *ip == ')' &&
H A Dgetopt_long.c304 * Returns -1 if short_too is set and the option does not match long_options.
316 int match = 0; local
319 match = -1;
336 continue; /* no match */
345 /* exact match */
346 match = i;
351 * a partial match of a single character.
356 if (match == -1) /* partial match */
357 match
[all...]
/illumos-gate/usr/src/lib/libc/port/sys/
H A Depoll.c25 * Events that match their epoll(7) equivalents.
28 #error value of EPOLLIN does not match value of POLLIN
32 #error value of EPOLLPRI does not match value of POLLPRI
36 #error value of EPOLLOUT does not match value of POLLOUT
40 #error value of EPOLLRDNORM does not match value of POLLRDNORM
44 #error value of EPOLLRDBAND does not match value of POLLRDBAND
48 #error value of EPOLLERR does not match value of POLLERR
52 #error value of EPOLLHUP does not match value of POLLHUP
/illumos-gate/usr/src/lib/libpcp/common/
H A Dpcp_utils.c72 * match the extracted service name for the function to succeed.
73 * The service name is returned in match (if non-NULL), and the function
77 get_vldc_svc_name(char *dev_path, char *service, char **match) argument
101 if (match)
102 *match = strdup(s);
109 } else if (match) {
110 *match = strdup(s);
126 * match the extracted service name for the function to succeed.
127 * The service name is returned in match (if non-NULL), and the function
131 get_glvc_svc_name(char *dev_path, char *service, char **match) argument
[all...]
/illumos-gate/usr/src/boot/sys/boot/common/
H A Dmerge_help.awk25 match($0, " T[[:graph:]]+");
27 match($0, " S[[:graph:]]+");
30 match($0, " D[[:graph:]][[:print:]]*$");
/illumos-gate/usr/src/lib/libgss/
H A Dg_userok.c50 int match = 0; local
79 &match);
83 if (match)
/illumos-gate/usr/src/ucbcmd/from/
H A Dfrom.c23 static int match(char *, char *);
89 (sender == NULL || match(&lbuf[4], sender))) {
99 match(char *line, char *str) function
/illumos-gate/usr/src/lib/libsum/common/
H A Dsumlib.c45 const char* match; member in struct:Method_s
59 const char* match; member in struct:Map_s
236 * simple alternation prefix match
240 match(register const char* s, register const char* p) function
281 if (match(name, maps[n].match))
287 if (match(name, methods[n].match))
369 n += sfprintf(sp, "[+%s?%s]", methods[i].match, methods[i].description);
374 n += sfprintf(sp, "[+%s?%s Shorthand for \b%s\b.]", maps[i].match, map
[all...]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_clone/
H A Dzfs_clone_010_pos.ksh104 (for match in ${clones[@]};do
105 [[ $match != $unexpected_clone ]] && \
111 (for match in ${clones[@]};do
112 [[ $match == $expected_clone ]] && \
113 [[ $match != $unexpected_clone ]] \
119 (for match in ${clones[@]};do
120 [[ $match == $expected_clone ]] && \
128 (for match in ${clones[@]};do
129 [[ $match == $expected_clone ]] && exit 0; \
/illumos-gate/usr/src/lib/libadm/common/
H A Dckkeywd.c41 match(char *strval, char *set[]) function
110 valid = !match(input, keyword);
/illumos-gate/usr/src/cmd/lp/lib/filters/
H A Dregex.c41 ** match() - TEST MATCH OF TEMPLATE/PATTERN WITH PARAMETER
46 match ( function
51 match (re, value)
60 * was ^...$, to explicitly match the beginning and end of line.
62 * checking where the match left off takes care of the $.
/illumos-gate/usr/src/lib/krb5/kadm5/srv/
H A Dsvr_iters.c81 * shell-style glob would match. If glob does not contain an "@"
152 int match; local
154 match = (step(name, data->expbuf) != 0);
157 match = (regexec(&data->preg, name, 0, NULL, 0) == 0);
160 match = (re_exec(name) != 0);
162 if (match) {
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DServiceStoreInMemory.java131 private Vector attrTags = null; // tags to match against records
163 * collector for the collecting records if scopes match.
329 boolean match = false;
335 match = true;
339 return match;
380 boolean match = false;
385 match = match | rec.setReturn(returns);
388 return match;
412 boolean match
[all...]
/illumos-gate/usr/src/lib/libast/common/disc/
H A Dsfdcmore.c48 int match; /* match length, 0 if none */ member in struct:__anon2611
49 char pattern[128]; /* match pattern */
70 more->match = 0;
171 if (more->match)
173 match:
180 else if (*s == r && (e - s) >= more->match && !strncmp(s, more->pattern, more->match))
185 more->match = 0;
227 if (more->match
[all...]

Completed in 100 milliseconds

1234567891011>>