Lines Matching defs:dot
115 const char *dot;
125 dot = strchr(template, '.');
126 if (dot != NULL) {
127 p = strchr(dot + 1, '.');
134 if (dot == template) {
166 if (dot != NULL && dot[1] != '\0' && dot[1] != '!') {
168 parsed->attr_name = talloc_strdup(parsed, dot + 1);
170 parsed->attr_name = talloc_strndup(parsed, dot + 1,
171 (excl - dot - 1));
180 if (dot != NULL) {
181 parsed->name = talloc_strndup(parsed, template, (dot - template));