Lines Matching refs:domain
73 bindtextdomain(const char *domain, const char *binding)
79 res = _real_bindtextdomain_u(domain, binding, TP_BINDING);
85 bind_textdomain_codeset(const char *domain, const char *codeset)
91 res = _real_bindtextdomain_u(domain, codeset, TP_CODESET);
97 * textdomain() sets or queries the name of the current domain of
101 textdomain(const char *domain)
108 res = _textdomain_u(domain, tmp_domain);
119 * for domain and LC_MESSAGES passed for category.
137 * In dcgettext() call, domain is valid only for this call.
140 dgettext(const char *domain, const char *msg_id)
147 res = _real_gettext_u(domain, msg_id, NULL, 0, LC_MESSAGES, 0, NULL);
154 dgettext_l(const char *domain, const char *msg_id, locale_t loc)
161 res = _real_gettext_u(domain, msg_id, NULL, 0, LC_MESSAGES, 0, loc);
168 dcgettext(const char *domain, const char *msg_id, const int category)
175 res = _real_gettext_u(domain, msg_id, NULL, 0, category, 0, NULL);
196 dngettext(const char *domain, const char *msgid1, const char *msgid2,
204 res = _real_gettext_u(domain, msgid1, msgid2, n, LC_MESSAGES, 1, NULL);
211 dcngettext(const char *domain, const char *msgid1, const char *msgid2,
219 res = _real_gettext_u(domain, msgid1, msgid2, n, category, 1, NULL);