Lines Matching defs:match
72 * 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)
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)
158 * is a match
163 if ((ret == true) && (match != NULL)) {
164 *match = calloc(len + 1, 1);
165 if (*match)
166 (void) strncpy(*match, devname, len);