Lines Matching refs:fqname
661 /* Accepts fqname in the format shortname@domname only. */
663 const char *fqname,
674 if (fqname == NULL) {
683 separator = strrchr(fqname, '@');
684 if (separator == NULL || *(separator + 1) == '\0' || separator == fqname) {
701 shortname_len = strlen(fqname) - strlen(separator);
702 shortname = talloc_strndup(tmp_ctx, fqname, shortname_len);
717 /* Creates internal fqname in format shortname@domname.
724 char *fqname = NULL;
736 fqname = talloc_asprintf(mem_ctx, "%s@%s", shortname, lc_dom_name);
739 return fqname;