HomeSort by relevance Sort by last modified time
    Searched full:__err_code (Results 1 - 20 of 20) sorted by null

  /ndk/sources/cxx-stl/stlport/src/
acquire_release.h 27 _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);
locale_catalog.cpp 36 static void* _Loc_ctype_create(const char * s, _Locale_name_hint* hint, int *__err_code)
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)
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)
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)
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)
45 { return _Locale_collate_create(s, hint, __err_code); }
    [all...]
locale_impl.cpp 169 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...]
facets_byname.cpp 46 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...]
c_locale.h 81 * 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...]
locale.cpp 69 void _STLP_CALL locale::_M_throw_on_creation_failure(int __err_code,
72 switch (__err_code) {
197 int __err_code; local
199 L->name = string("LC_CTYPE=") + _Locale_extract_ctype_name((c & locale::ctype) ? ctype_name : name, buf, 0, &__err_code) + ";";
200 L->name += string("LC_TIME=") + _Locale_extract_time_name((c & locale::time) ? time_name : name, buf, 0, &__err_code) + ";";
201 L->name += string("LC_NUMERIC=") + _Locale_extract_numeric_name((c & locale::numeric) ? numeric_name : name, buf, 0, &__err_code) + ";";
202 L->name += string("LC_COLLATE=") + _Locale_extract_collate_name((c & locale::collate) ? collate_name : name, buf, 0, &__err_code) + ";";
203 L->name += string("LC_MONETARY=") + _Locale_extract_monetary_name((c & locale::monetary) ? monetary_name : name, buf, 0, &__err_code) + ";";
204 L->name += string("LC_MESSAGES=") + _Locale_extract_messages_name((c & locale::messages) ? messages_name : name, buf, 0, &__err_code);
messages.cpp 105 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");
time_facets.cpp 510 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");
  /ndk/sources/cxx-stl/stlport/src/c_locale_dummy/
c_locale_dummy.c 82 void* _Locale_create(const char* name, int *__err_code) {
85 *__err_code = _STLP_LOC_NO_PLATFORM_SUPPORT; return 0;
89 struct _Locale_name_hint* hint, int *__err_code)
90 { return (struct _Locale_ctype*)_Locale_create(name, __err_code); }
93 struct _Locale_name_hint* hint, int *__err_code)
94 { return (struct _Locale_codecvt*)_Locale_create(name, __err_code); }
97 struct _Locale_name_hint* hint, int *__err_code)
98 { return (struct _Locale_numeric*)_Locale_create(name, __err_code); }
101 struct _Locale_name_hint* hint, int *__err_code)
102 { return (struct _Locale_time*)_Locale_create(name, __err_code); }
    [all...]
  /ndk/sources/cxx-stl/stlport/src/c_locale_glibc/
c_locale_glibc2.c 60 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 = _STLP_LOC_UNKNOWN_NAME
    [all...]
  /ndk/sources/cxx-stl/stlport/src/c_locale_win32/
c_locale_win32.c 240 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) {
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) {
    [all...]
c_wlocale_win32.c 61 _Locale_codecvt_t* _Locale_codecvt_create(const char * name, _Locale_lcid_t* lc_hint, int *__err_code) {
69 if (!lcodecvt) { *__err_code = _STLP_LOC_NO_MEMORY; return lcodecvt; }
73 { free(lcodecvt); *__err_code = _STLP_LOC_UNKNOWN_NAME; return NULL; }
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_locale.h 195 static void _STLP_FUNCTION_THROWS _STLP_CALL _M_throw_on_creation_failure(int __err_code,
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_locale.h 193 static void _STLP_FUNCTION_THROWS _STLP_CALL _M_throw_on_creation_failure(int __err_code,
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_locale.h 193 static void _STLP_FUNCTION_THROWS _STLP_CALL _M_throw_on_creation_failure(int __err_code,
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_locale.h 195 static void _STLP_FUNCTION_THROWS _STLP_CALL _M_throw_on_creation_failure(int __err_code,
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_locale.h 195 static void _STLP_FUNCTION_THROWS _STLP_CALL _M_throw_on_creation_failure(int __err_code,
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_locale.h 195 static void _STLP_FUNCTION_THROWS _STLP_CALL _M_throw_on_creation_failure(int __err_code,
  /prebuilts/ndk/5/sources/cxx-stl/stlport/libs/armeabi/
libstlport_shared.so 
  /prebuilts/ndk/5/sources/cxx-stl/stlport/libs/armeabi-v7a/
libstlport_shared.so 

Completed in 959 milliseconds