HomeSort by relevance Sort by last modified time
    Searched full:domainname (Results 1 - 25 of 188) sorted by null

1 2 3 4 5 6 7 8

  /external/e2fsprogs/intl/
intl-compat.c 69 dgettext (const char *domainname, const char *msgid)
71 return libintl_dgettext (domainname, msgid);
77 dcgettext (const char *domainname, const char *msgid, int category)
79 return libintl_dcgettext (domainname, msgid, category);
93 dngettext (const char *domainname,
96 return libintl_dngettext (domainname, msgid1, msgid2, n);
102 dcngettext (const char *domainname,
106 return libintl_dcngettext (domainname, msgid1, msgid2, n, category);
112 textdomain (const char *domainname)
114 return libintl_textdomain (domainname);
    [all...]
textdomain.c 76 /* Set the current default message catalog to DOMAINNAME.
77 If DOMAINNAME is null, return the current default.
78 If DOMAINNAME is "", reset to the default of "messages". */
80 TEXTDOMAIN (const char *domainname)
86 if (domainname == NULL)
94 if (domainname[0] == '\0'
95 || strcmp (domainname, _nl_default_default_domain) == 0)
100 else if (strcmp (domainname, old_domain) == 0)
110 new_domain = strdup (domainname);
112 size_t len = strlen (domainname) + 1
    [all...]
libgettext.h 97 /* Look up MSGID in the DOMAINNAME message catalog for the current
103 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
111 /* Set the current default message catalog to DOMAINNAME.
112 If DOMAINNAME is null, return the current default.
113 If DOMAINNAME is "", reset to the default of "messages". */
117 /* Specify that the DOMAINNAME message catalog will be found
134 # define dgettext(Domainname, Msgid) \
135 dcgettext (Domainname, Msgid, LC_MESSAGES)
143 # define dcgettext(Domainname, Msgid, Category) \
154 dcgettext__ (Domainname, Msgid, Category);
    [all...]
bindtextdom.c 90 to be used for the DOMAINNAME message catalog.
96 set_binding_values (const char *domainname,
103 if (domainname == NULL || domainname[0] == '\0')
118 int compare = strcmp (domainname, binding->domainname);
223 size_t len = strlen (domainname) + 1;
225 (struct binding *) malloc (offsetof (struct binding, domainname) + len);
230 memcpy (new_binding->domainname, domainname, len)
    [all...]
dcgettext.c 44 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
47 DCGETTEXT (const char *domainname, const char *msgid, int category)
49 return DCIGETTEXT (domainname, msgid, NULL, 0, 0, category);
dcngettext.c 44 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
47 DCNGETTEXT (const char *domainname,
51 return DCIGETTEXT (domainname, msgid1, msgid2, 1, n, category);
dgettext.c 47 /* Look up MSGID in the DOMAINNAME message catalog of the current
50 DGETTEXT (const char *domainname, const char *msgid)
52 return DCGETTEXT (domainname, msgid, LC_MESSAGES);
dngettext.c 47 /* Look up MSGID in the DOMAINNAME message catalog of the current
50 DNGETTEXT (const char *domainname,
53 return DCNGETTEXT (domainname, msgid1, msgid2, n, LC_MESSAGES);
  /ndk/sources/host-tools/sed-4.2.1/lib/
gettext.h 71 # define dgettext(Domainname, Msgid) ((void) (Domainname), gettext (Msgid))
73 # define dcgettext(Domainname, Msgid, Category) \
74 ((void) (Category), dgettext (Domainname, Msgid))
81 # define dngettext(Domainname, Msgid1, Msgid2, N) \
82 ((void) (Domainname), ngettext (Msgid1, Msgid2, N))
84 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
85 ((void) (Category), dngettext(Domainname, Msgid1, Msgid2, N))
87 # define textdomain(Domainname) ((const char *) (Domainname))
    [all...]
  /ndk/sources/host-tools/make-3.81/
gettext.h 35 # define dgettext(Domainname, Msgid) ((const char *) (Msgid))
36 # define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid))
39 # define dngettext(Domainname, Msgid1, Msgid2, N) \
41 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
43 # define textdomain(Domainname) ((const char *) (Domainname))
44 # define bindtextdomain(Domainname, Dirname) ((const char *) (Dirname))
45 # define bind_textdomain_codeset(Domainname, Codeset) ((const char *) (Codeset))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
libintl.h 43 /* Look up MSGID in the DOMAINNAME message catalog for the current
50 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
80 /* Set the current default message catalog to DOMAINNAME.
81 If DOMAINNAME is null, return the current default.
82 If DOMAINNAME is "", reset to the default of "messages". */
85 /* Specify that the DOMAINNAME message catalog will be found
91 DOMAINNAME message catalog will be returned. */
112 # define dgettext(domainname, msgid) \
113 dcgettext (domainname, msgid, LC_MESSAGES)
117 # define dngettext(domainname, msgid1, msgid2, n)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
libintl.h 43 /* Look up MSGID in the DOMAINNAME message catalog for the current
50 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
80 /* Set the current default message catalog to DOMAINNAME.
81 If DOMAINNAME is null, return the current default.
82 If DOMAINNAME is "", reset to the default of "messages". */
85 /* Specify that the DOMAINNAME message catalog will be found
91 DOMAINNAME message catalog will be returned. */
112 # define dgettext(domainname, msgid) \
113 dcgettext (domainname, msgid, LC_MESSAGES)
117 # define dngettext(domainname, msgid1, msgid2, n)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
libintl.h 43 /* Look up MSGID in the DOMAINNAME message catalog for the current
50 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
80 /* Set the current default message catalog to DOMAINNAME.
81 If DOMAINNAME is null, return the current default.
82 If DOMAINNAME is "", reset to the default of "messages". */
85 /* Specify that the DOMAINNAME message catalog will be found
91 DOMAINNAME message catalog will be returned. */
112 # define dgettext(domainname, msgid) \
113 dcgettext (domainname, msgid, LC_MESSAGES)
117 # define dngettext(domainname, msgid1, msgid2, n)
    [all...]
  /external/dhcpcd/dhcpcd-hooks/
50-ypbind 39 if [ $? = 0 -o "$nd" != "$(domainname)" ]; then
40 domainname "$nd"
52 # otherwise it will just stall as we cannot set domainname
58 elif [ "$nd" != "$(domainname)" ]; then
59 domainname "$nd"
  /external/bison/lib/
gettext.h 55 # define dgettext(Domainname, Msgid) ((const char *) (Msgid))
56 # define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid))
59 # define dngettext(Domainname, Msgid1, Msgid2, N) \
61 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
63 # define textdomain(Domainname) ((const char *) (Domainname))
64 # define bindtextdomain(Domainname, Dirname) ((const char *) (Dirname))
65 # define bind_textdomain_codeset(Domainname, Codeset) ((const char *) (Codeset))
  /external/mdnsresponder/mDNSShared/
PlatformCommon.h 18 extern void ReadDDNSSettingsFromConfFile(mDNS *const m, const char *const filename, domainname *const hostname, domainname *const domain, mDNSBool *DomainDiscoveryDisabled);
uds_daemon.h 55 extern int CountExistingRegistrations(domainname *srv, mDNSIPPort port);
60 extern void machserver_automatic_browse_domain_changed(const domainname *d, mDNSBool add);
61 extern void machserver_automatic_registration_domain_changed(const domainname *d, mDNSBool add);
64 extern void external_start_browsing_for_service(mDNS *const m, const domainname *const type, DNS_TypeValues qtype);
65 extern void external_stop_browsing_for_service(mDNS *const m, const domainname *const type, DNS_TypeValues qtype);
68 extern void external_start_resolving_service(const domainname *const fqdn);
69 extern void external_stop_resolving_service(const domainname *const fqdn);
  /bootable/diskinstaller/
init.rc 19 domainname localdomain
  /external/kernel-headers/original/linux/
utsname.h 30 char domainname[65]; member in struct:new_utsname
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
utsname.h 30 char domainname[65]; member in struct:new_utsname
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
utsname.h 30 char domainname[65]; member in struct:new_utsname
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
utsname.h 30 char domainname[65]; member in struct:new_utsname
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
yp.h 76 typedef char *domainname; typedef
91 domainname domain;
99 domainname domain;
106 domainname domain;
232 domainname ypsetdom_domain;
247 extern bool_t *ypproc_domain_2 (domainname *, CLIENT *);
248 extern bool_t *ypproc_domain_2_svc (domainname *, struct svc_req *);
250 extern bool_t *ypproc_domain_nonack_2 (domainname *, CLIENT *);
251 extern bool_t *ypproc_domain_nonack_2_svc (domainname *, struct svc_req *);
277 extern ypresp_maplist *ypproc_maplist_2 (domainname *, CLIENT *)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
yp.h 76 typedef char *domainname; typedef
91 domainname domain;
99 domainname domain;
106 domainname domain;
232 domainname ypsetdom_domain;
247 extern bool_t *ypproc_domain_2 (domainname *, CLIENT *);
248 extern bool_t *ypproc_domain_2_svc (domainname *, struct svc_req *);
250 extern bool_t *ypproc_domain_nonack_2 (domainname *, CLIENT *);
251 extern bool_t *ypproc_domain_nonack_2_svc (domainname *, struct svc_req *);
277 extern ypresp_maplist *ypproc_maplist_2 (domainname *, CLIENT *)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
yp.h 76 typedef char *domainname; typedef
91 domainname domain;
99 domainname domain;
106 domainname domain;
232 domainname ypsetdom_domain;
247 extern bool_t *ypproc_domain_2 (domainname *, CLIENT *);
248 extern bool_t *ypproc_domain_2_svc (domainname *, struct svc_req *);
250 extern bool_t *ypproc_domain_nonack_2 (domainname *, CLIENT *);
251 extern bool_t *ypproc_domain_nonack_2_svc (domainname *, struct svc_req *);
277 extern ypresp_maplist *ypproc_maplist_2 (domainname *, CLIENT *)
    [all...]

Completed in 2074 milliseconds

1 2 3 4 5 6 7 8