Lines Matching refs:res

75 	char	*res;  in bindtextdomain()  local
79 res = _real_bindtextdomain_u(domain, binding, TP_BINDING); in bindtextdomain()
81 return (res); in bindtextdomain()
87 char *res; in bind_textdomain_codeset() local
91 res = _real_bindtextdomain_u(domain, codeset, TP_CODESET); in bind_textdomain_codeset()
93 return (res); in bind_textdomain_codeset()
103 char *res; in textdomain() local
108 res = _textdomain_u(domain, tmp_domain); in textdomain()
109 if (res == NULL) { in textdomain()
124 char *res; in gettext() local
129 res = _real_gettext_u(NULL, msg_id, NULL, 0, LC_MESSAGES, 0, NULL); in gettext()
132 return (res); in gettext()
142 char *res; in dgettext() local
147 res = _real_gettext_u(domain, msg_id, NULL, 0, LC_MESSAGES, 0, NULL); in dgettext()
150 return (res); in dgettext()
156 char *res; in dgettext_l() local
161 res = _real_gettext_u(domain, msg_id, NULL, 0, LC_MESSAGES, 0, loc); in dgettext_l()
164 return (res); in dgettext_l()
170 char *res; in dcgettext() local
175 res = _real_gettext_u(domain, msg_id, NULL, 0, category, 0, NULL); in dcgettext()
178 return (res); in dcgettext()
184 char *res; in ngettext() local
189 res = _real_gettext_u(NULL, msgid1, msgid2, n, LC_MESSAGES, 1, NULL); in ngettext()
192 return (res); in ngettext()
199 char *res; in dngettext() local
204 res = _real_gettext_u(domain, msgid1, msgid2, n, LC_MESSAGES, 1, NULL); in dngettext()
207 return (res); in dngettext()
214 char *res; in dcngettext() local
219 res = _real_gettext_u(domain, msgid1, msgid2, n, category, 1, NULL); in dcngettext()
222 return (res); in dcngettext()