Lines Matching refs:end2
99 char *end2; in make_device() local
111 for (end2 = pos; in make_device()
112 end2<end && !isspace(*end2) && *end2!='#'; end2++); in make_device()
117 char *regex = strndup(pos, end2-pos); in make_device()
141 for(s = pos; s<end2 && *s!=':'; s++); in make_device()
142 if (s==end2) goto end_line; in make_device()
157 if (end2!=s2) { in make_device()
159 char *str = strndup(s, end2-s); in make_device()
182 if(pos < end2){ in make_device()
184 char *name = malloc(end2-pos+1); in make_device()
186 strncpy(name, pos, end2-pos+1); in make_device()
187 name[end2-pos] = '\0'; in make_device()
208 pos=end2; in make_device()