Searched defs:match (Results 26 - 50 of 248) sorted by relevance

12345678910

/illumos-gate/usr/src/cmd/vi/misc/
H A Dmkstr.c117 if (match("error(")) {
128 match(ocp) function
/illumos-gate/usr/src/cmd/ypcmd/revnetgroup/
H A Dgetgroup.c62 static char *match();
118 if ((val = match(group)) == NULL) {
219 * scans cp, looking for a match with any character
220 * in match. Returns pointer to place in cp that matched
221 * (or NULL if no match)
224 any(cp, match)
226 char *match;
231 for (mp = match; *mp; mp++)
242 * The equivalent of yp_match. Returns the match, or NULL if there is none.
245 match(grou function
[all...]
/illumos-gate/usr/src/cmd/tip/aculib/
H A Dventel.c139 gobble(char match) argument
159 } while (c != '\n' && c != match);
161 return (c == match);
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_onexit.c175 zfs_onexit_action_node_t *match; local
181 match = (zfs_onexit_action_node_t *)(uintptr_t)action_handle;
184 if (match == ap)
/illumos-gate/usr/src/lib/sun_fc/common/
H A DHandlePort.cc95 * @return FALSE if the argument does not match this port
98 bool HandlePort::match(uint64_t portWWN) { function in class:HandlePort
99 Trace log("HandlePort::match(wwn)");
108 * @return FALSE if the argument does not match this port
111 bool HandlePort::match(int index) { function in class:HandlePort
112 Trace log("HandlePort::match(index)");
/illumos-gate/usr/src/lib/mpapi/libmpscsi_vhci/common/
H A DMP_GetAssociatedPathOidList.c102 "got a match");
128 " - no match found, error exit");
205 int match = 0; local
308 match = 0;
322 match = 1;
331 if (match) {
334 " - got a match");
H A DMP_GetMPLuOidListFromTPG.c109 " - found a match");
128 * no match is found.
141 int match = 0; local
231 match = 0;
245 match = 1;
253 if (match) {
256 " - got a match");
295 * to see if the IDs match.
403 /* search for the number of multipath logical units that match */
/illumos-gate/usr/src/lib/libwrap/
H A Dhosts_access.c11 * network numbers) and daemon process names. When a match is found the
138 /* table_match - match table entries with (daemon, client) pair */
148 int match = NO; local
161 while (match == NO && xgets(sv_list, sizeof(sv_list), fp) != 0) {
173 match = list_match(sv_list, request, server_match)
180 if (match) {
194 return (match);
197 /* list_match - match a request against a list of patterns with exceptions */
209 * a match, look for an "EXCEPT" list and recurse to determine whether
210 * the match i
[all...]
/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/lib/libpp/common/
H A Dppexpr.c105 * strcmp/match predicate evaluation
109 compare(char* pred, char* args, int match) argument
127 if (!match)
/illumos-gate/usr/src/cmd/keyserv/
H A Dupdate.c62 static int match(char *line, char *name);
286 if (err < 0 && match(line, name)) {
339 match(char *line, char *name) function
/illumos-gate/usr/src/cmd/tnf/prex/
H A Dexpr.c217 boolean_t match; member in struct:matchargs
228 args.match = B_FALSE;
233 return (args.match);
260 args_p->match = B_TRUE;
/illumos-gate/usr/src/cmd/ttymon/
H A Dsttyparse.c58 static int match; variable
81 match = 0;
109 if (match)
135 if (match)
182 for (match = 0, i = 0; speeds[i].string; i++) {
189 if (!match)
195 for (match = 0, i = 0; speeds[i].string; i++) {
202 if (!match)
207 for (match = 0, i = 0; speeds[i].string; i++) {
303 if (!match) {
[all...]
/illumos-gate/usr/src/tools/ctf/cvt/
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);
H A Diidesc.c178 iitype_t match = (iitype_t)private; local
180 return (ii->ii_type == match);
/illumos-gate/usr/src/lib/libast/amd64/include/ast/
H A Dccode.h52 const char* match; /* strmatch() pattern */ member in struct:Ccmap_s
/illumos-gate/usr/src/lib/libast/common/comp/
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/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...]
/illumos-gate/usr/src/lib/libast/common/include/
H A Dccode.h43 const char* match; /* strmatch() pattern */ member in struct:Ccmap_s
/illumos-gate/usr/src/lib/libast/common/regex/
H A Dregrexec.c36 regrexec(const regex_t* p, const char* s, size_t len, size_t nmatch, regmatch_t* match, regflags_t flags, int sep, void* handle, regrecord_t record) argument
109 if (complete || (env->rex = ((r - l) > 128) ? e : e->next) && !(n = regnexec(p, (char*)l, r - l, nmatch, match, flags)))
/illumos-gate/usr/src/lib/libast/i386/include/ast/
H A Dccode.h52 const char* match; /* strmatch() pattern */ member in struct:Ccmap_s
/illumos-gate/usr/src/lib/libast/sparc/include/ast/
H A Dccode.h52 const char* match; /* strmatch() pattern */ member in struct:Ccmap_s
/illumos-gate/usr/src/lib/libast/sparcv9/include/ast/
H A Dccode.h52 const char* match; /* strmatch() pattern */ member in struct:Ccmap_s
/illumos-gate/usr/src/uts/sun4u/sys/
H A Dmc.h112 uint64_t match; /* Physic Address is located at this bank. */ member in struct:mc_bank
/illumos-gate/usr/src/cmd/lvm/metassist/common/
H A Dvolume_nvpair.c78 nvpair_t *match = local
81 if (match == NULL) {
84 error = nvpair_value_uint16(match, val);
152 nvpair_t *match = local
155 if (match == NULL) {
158 error = nvpair_value_uint32(match, val);
226 nvpair_t *match = local
229 if (match == NULL) {
232 error = nvpair_value_uint64(match, val);
372 nvpair_t *match local
450 nvpair_t *match = local
534 nvpair_t *match = local
618 nvpair_t *match = local
[all...]

Completed in 168 milliseconds

12345678910