Searched refs:__err_code (Results 1 - 13 of 13) sorted by relevance

/external/stlport/src/
H A Dacquire_release.h27 _Locale_ctype* _STLP_CALL __acquire_ctype(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code);
28 _Locale_codecvt* _STLP_CALL __acquire_codecvt(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code);
29 _Locale_numeric* _STLP_CALL __acquire_numeric(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code);
30 _Locale_collate* _STLP_CALL __acquire_collate(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code);
31 _Locale_monetary* _STLP_CALL __acquire_monetary(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code);
32 _Locale_time* _STLP_CALL __acquire_time(const char* &name, char *buf, _Locale_name_hint*, int *__err_code);
33 _Locale_messages* _STLP_CALL __acquire_messages(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code);
H A Dlocale_catalog.cpp36 static void* _Loc_ctype_create(const char * s, _Locale_name_hint* hint, int *__err_code) argument
37 { return _Locale_ctype_create(s, hint, __err_code); }
38 static void* _Loc_codecvt_create(const char * s, _Locale_name_hint* hint, int *__err_code) argument
39 { return _Locale_codecvt_create(s, hint, __err_code); }
40 static void* _Loc_numeric_create(const char * s, _Locale_name_hint* hint, int *__err_code) argument
41 { return _Locale_numeric_create(s, hint, __err_code); }
42 static void* _Loc_time_create(const char * s, _Locale_name_hint* hint, int *__err_code) argument
43 { return _Locale_time_create(s, hint, __err_code); }
44 static void* _Loc_collate_create(const char * s, _Locale_name_hint* hint, int *__err_code) argument
45 { return _Locale_collate_create(s, hint, __err_code); }
46 _Loc_monetary_create(const char * s, _Locale_name_hint* hint, int *__err_code) argument
48 _Loc_messages_create(const char * s, _Locale_name_hint* hint, int *__err_code) argument
140 __acquire_category(const char* &name, char *buf, _Locale_name_hint* hint, loc_extract_name_func_t extract_name, loc_create_func_t create_obj, loc_default_name_func_t default_name, Category_Map ** M, int *__err_code) argument
236 __acquire_ctype(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code) argument
241 __acquire_codecvt(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code) argument
246 __acquire_numeric(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code) argument
251 __acquire_time(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code) argument
256 __acquire_collate(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code) argument
261 __acquire_monetary(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code) argument
266 __acquire_messages(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code) argument
[all...]
H A Dfacets_byname.cpp46 int __err_code; local
48 _M_ctype = _STLP_PRIV __acquire_ctype(name, buf, 0, &__err_code);
50 locale::_M_throw_on_creation_failure(__err_code, name, "ctype");
117 int __err_code; local
119 _M_ctype = _STLP_PRIV __acquire_ctype(name, buf, 0, &__err_code);
121 locale::_M_throw_on_creation_failure(__err_code, name, "ctype");
189 int __err_code; local
191 _M_collate = _STLP_PRIV __acquire_collate(name, buf, 0, &__err_code);
193 locale::_M_throw_on_creation_failure(__err_code, name, "collate");
236 int __err_code; local
295 int __err_code; local
435 int __err_code; local
476 int __err_code; local
867 int __err_code; local
911 int __err_code; local
960 int __err_code; local
1016 int __err_code; local
[all...]
H A Dlocale_impl.cpp169 int __err_code; local
170 _Locale_ctype *__lct = _STLP_PRIV __acquire_ctype(name, buf, hint, &__err_code);
172 locale::_M_throw_on_creation_failure(__err_code, name, "ctype");
190 _Locale_ctype *__lwct = _STLP_PRIV __acquire_ctype(name, buf, hint, &__err_code);
192 locale::_M_throw_on_creation_failure(__err_code, name, "ctype");
201 _Locale_codecvt *__lwcvt = _STLP_PRIV __acquire_codecvt(name, buf, hint, &__err_code);
252 int __err_code; local
253 _Locale_numeric *__lpunct = _STLP_PRIV __acquire_numeric(name, buf, hint, &__err_code);
255 locale::_M_throw_on_creation_failure(__err_code, name, "numpunct");
266 _Locale_numeric *__lwpunct = _STLP_PRIV __acquire_numeric(name, buf, hint, &__err_code);
312 int __err_code; local
367 int __err_code; local
437 int __err_code; local
528 int __err_code; local
[all...]
H A Dc_locale.h81 * using the __err_code pointer.
83 struct _Locale_ctype* _Locale_ctype_create(const char *, struct _Locale_name_hint*, int * /* __err_code */);
84 struct _Locale_codecvt* _Locale_codecvt_create(const char *, struct _Locale_name_hint*, int * /* __err_code */);
85 struct _Locale_numeric* _Locale_numeric_create(const char *, struct _Locale_name_hint*, int * /* __err_code */);
86 struct _Locale_time* _Locale_time_create(const char *, struct _Locale_name_hint*, int * /* __err_code */);
87 struct _Locale_collate* _Locale_collate_create(const char *, struct _Locale_name_hint*, int * /* __err_code */);
88 struct _Locale_monetary* _Locale_monetary_create(const char *, struct _Locale_name_hint*, int * /* __err_code */);
89 struct _Locale_messages* _Locale_messages_create(const char *, struct _Locale_name_hint*, int * /* __err_code */);
152 struct _Locale_name_hint* __hint, int *__err_code);
154 struct _Locale_name_hint* __hint, int *__err_code);
[all...]
H A Dlocale.cpp68 void _STLP_CALL locale::_M_throw_on_creation_failure(int __err_code, argument
71 switch (__err_code) {
196 int __err_code; local
198 L->name = string("LC_CTYPE=") + _Locale_extract_ctype_name((c & locale::ctype) ? ctype_name : name, buf, 0, &__err_code) + ";";
199 L->name += string("LC_TIME=") + _Locale_extract_time_name((c & locale::time) ? time_name : name, buf, 0, &__err_code) + ";";
200 L->name += string("LC_NUMERIC=") + _Locale_extract_numeric_name((c & locale::numeric) ? numeric_name : name, buf, 0, &__err_code) + ";";
201 L->name += string("LC_COLLATE=") + _Locale_extract_collate_name((c & locale::collate) ? collate_name : name, buf, 0, &__err_code) + ";";
202 L->name += string("LC_MONETARY=") + _Locale_extract_monetary_name((c & locale::monetary) ? monetary_name : name, buf, 0, &__err_code) + ";";
203 L->name += string("LC_MESSAGES=") + _Locale_extract_messages_name((c & locale::messages) ? messages_name : name, buf, 0, &__err_code);
H A Dmessages.cpp105 int __err_code; local
107 _M_message_obj = _STLP_PRIV __acquire_messages(name, buf, 0, &__err_code);
109 locale::_M_throw_on_creation_failure(__err_code, name, "messages");
H A Dtime_facets.cpp510 int __err_code; local
512 _Locale_time *__time = __acquire_time(__name, buf, 0, &__err_code);
514 locale::_M_throw_on_creation_failure(__err_code, __name, "time");
535 int __err_code; local
537 _Locale_time *__time = __acquire_time(__name, buf, 0, &__err_code);
539 locale::_M_throw_on_creation_failure(__err_code, __name, "time");
/external/stlport/src/c_locale_dummy/
H A Dc_locale_dummy.c78 void* _Locale_create(const char* name, int *__err_code) { argument
81 *__err_code = _STLP_LOC_NO_PLATFORM_SUPPORT; return 0;
85 struct _Locale_name_hint* hint, int *__err_code)
86 { return (struct _Locale_ctype*)_Locale_create(name, __err_code); }
89 struct _Locale_name_hint* hint, int *__err_code)
90 { return (struct _Locale_codecvt*)_Locale_create(name, __err_code); }
93 struct _Locale_name_hint* hint, int *__err_code)
94 { return (struct _Locale_numeric*)_Locale_create(name, __err_code); }
97 struct _Locale_name_hint* hint, int *__err_code)
98 { return (struct _Locale_time*)_Locale_create(name, __err_code); }
84 _Locale_ctype_create(const char *name, struct _Locale_name_hint* hint, int *__err_code) argument
88 _Locale_codecvt_create(const char *name, struct _Locale_name_hint* hint, int *__err_code) argument
92 _Locale_numeric_create(const char *name, struct _Locale_name_hint* hint, int *__err_code) argument
96 _Locale_time_create(const char *name, struct _Locale_name_hint* hint, int *__err_code) argument
100 _Locale_collate_create(const char *name, struct _Locale_name_hint* hint, int *__err_code) argument
104 _Locale_monetary_create(const char *name, struct _Locale_name_hint* hint, int *__err_code) argument
108 _Locale_messages_create(const char *name, struct _Locale_name_hint* hint, int *__err_code) argument
148 _Locale_extract_name(const char* name, int *__err_code) argument
156 _Locale_extract_ctype_name(const char *name, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
160 _Locale_extract_numeric_name(const char *name, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
164 _Locale_extract_time_name(const char*name, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
168 _Locale_extract_collate_name(const char *name, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
172 _Locale_extract_monetary_name(const char *name, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
176 _Locale_extract_messages_name(const char *name, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
[all...]
/external/stlport/src/c_locale_glibc/
H A Dc_locale_glibc2.c60 int *__err_code) {
61 *__err_code = _STLP_LOC_UNKNOWN_NAME;
66 int *__err_code) {
70 *__err_code = _STLP_LOC_NO_PLATFORM_SUPPORT; return 0;
74 int *__err_code) {
75 *__err_code = _STLP_LOC_UNKNOWN_NAME;
80 int *__err_code) {
81 *__err_code = _STLP_LOC_UNKNOWN_NAME;
86 int *__err_code) {
87 *__err_code
59 _Locale_ctype_create(const char *nm, struct _Locale_name_hint* hint, int *__err_code) argument
65 _Locale_codecvt_create(const char *nm, struct _Locale_name_hint* hint, int *__err_code) argument
73 _Locale_numeric_create(const char *nm, struct _Locale_name_hint* hint, int *__err_code) argument
79 _Locale_time_create(const char *nm, struct _Locale_name_hint* hint, int *__err_code) argument
85 _Locale_collate_create(const char *nm, struct _Locale_name_hint* hint, int *__err_code) argument
91 _Locale_monetary_create(const char *nm, struct _Locale_name_hint* hint, int *__err_code) argument
97 _Locale_messages_create(const char *nm, struct _Locale_name_hint* hint, int *__err_code) argument
241 _Locale_extract_ctype_name(const char *loc, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
245 _Locale_extract_numeric_name(const char *loc, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
249 _Locale_extract_time_name(const char *loc, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
253 _Locale_extract_collate_name(const char *loc, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
257 _Locale_extract_monetary_name(const char *loc, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
261 _Locale_extract_messages_name(const char *loc, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
[all...]
/external/stlport/src/c_locale_win32/
H A Dc_locale_win32.c240 static char const* __TranslateToSystem(const char* lname, char* buf, _Locale_lcid_t* hint, int *__err_code);
304 _Locale_ctype_t* _Locale_ctype_create(const char * name, _Locale_lcid_t* lc_hint, int *__err_code) { argument
316 if (!ltype) { *__err_code = _STLP_LOC_NO_MEMORY; return ltype; }
320 { free(ltype); *__err_code = _STLP_LOC_UNKNOWN_NAME; return NULL; }
348 if (!BufferSize) { free(ltype); *__err_code = _STLP_LOC_UNKNOWN_NAME; return NULL; }
350 if (!wbuffer) { free(ltype); *__err_code = _STLP_LOC_NO_MEMORY; return NULL; }
364 if (!BufferSize) { free(ltype); *__err_code = _STLP_LOC_UNKNOWN_NAME; return NULL; }
366 if (!wbuffer) { free(ltype); *__err_code = _STLP_LOC_NO_MEMORY; return NULL; }
369 { free(wbuffer); free(ltype); *__err_code = _STLP_LOC_UNKNOWN_NAME; return NULL; }
387 _Locale_numeric_t* _Locale_numeric_create(const char * name, _Locale_lcid_t* lc_hint, int *__err_code) { argument
713 _Locale_time_create(const char * name, _Locale_lcid_t* lc_hint, int *__err_code) argument
811 _Locale_collate_create(const char * name, _Locale_lcid_t* lc_hint, int *__err_code) argument
827 _Locale_monetary_create(const char * name, _Locale_lcid_t* lc_hint, int *__err_code) argument
879 _Locale_messages_create(const char *name, _Locale_lcid_t* lc_hint, int *__err_code) argument
988 _Locale_extract_category_name(const char* name, const char* category, char* buf, _Locale_lcid_t* hint, int *__err_code) argument
997 _Locale_extract_ctype_name(const char* cname, char* buf, _Locale_lcid_t* hint, int *__err_code) argument
1001 _Locale_extract_numeric_name(const char* cname, char* buf, _Locale_lcid_t* hint, int *__err_code) argument
1005 _Locale_extract_time_name(const char* cname, char* buf, _Locale_lcid_t* hint, int *__err_code) argument
1009 _Locale_extract_collate_name(const char* cname, char* buf, _Locale_lcid_t* hint, int *__err_code) argument
1013 _Locale_extract_monetary_name(const char* cname, char* buf, _Locale_lcid_t* hint, int *__err_code) argument
1017 _Locale_extract_messages_name(const char* cname, char* buf, _Locale_lcid_t* hint, int *__err_code) argument
1649 __TranslateToSystem(const char* lname, char* buf, _Locale_lcid_t* hint, int *__err_code) argument
[all...]
H A Dc_wlocale_win32.c61 _Locale_codecvt_t* _Locale_codecvt_create(const char * name, _Locale_lcid_t* lc_hint, int *__err_code) { argument
69 if (!lcodecvt) { *__err_code = _STLP_LOC_NO_MEMORY; return lcodecvt; }
73 { free(lcodecvt); *__err_code = _STLP_LOC_UNKNOWN_NAME; return NULL; }
/external/stlport/stlport/stl/
H A D_locale.h195 static void _STLP_FUNCTION_THROWS _STLP_CALL _M_throw_on_creation_failure(int __err_code,

Completed in 424 milliseconds