OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:libType
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/icu/source/common/
ucln_cmn.c
43
static void ucln_cleanup_internal(ECleanupLibraryType
libType
)
45
if (gLibCleanupFunctions[
libType
])
47
gLibCleanupFunctions[
libType
]();
48
gLibCleanupFunctions[
libType
] = NULL;
52
U_CAPI void U_EXPORT2 ucln_cleanupOne(ECleanupLibraryType
libType
)
54
if(
libType
==UCLN_COMMON) {
56
fprintf(stderr, "Cleaning up: UCLN_COMMON with u_cleanup, type %d\n", (int)
libType
);
61
fprintf(stderr, "Cleaning up: using ucln_cleanup_internal, type %d\n", (int)
libType
);
63
ucln_cleanup_internal(
libType
);
94
ECleanupLibraryType
libType
= UCLN_START
[
all
...]
/external/chromium_org/third_party/icu/source/i18n/
ucln_in.c
32
ECleanupI18NType
libType
= UCLN_I18N_START;
34
while (++
libType
<UCLN_I18N_COUNT) {
35
if (gCleanupFunctions[
libType
])
37
gCleanupFunctions[
libType
]();
38
gCleanupFunctions[
libType
] = NULL;
/external/chromium_org/third_party/icu/source/io/
ucln_io.c
33
ECleanupIOType
libType
= UCLN_IO_START;
35
while (++
libType
<UCLN_IO_COUNT) {
36
if (gCleanupFunctions[
libType
])
38
gCleanupFunctions[
libType
]();
39
gCleanupFunctions[
libType
] = NULL;
/external/icu4c/i18n/
ucln_in.c
32
ECleanupI18NType
libType
= UCLN_I18N_START;
34
while (++
libType
<UCLN_I18N_COUNT) {
35
if (gCleanupFunctions[
libType
])
37
gCleanupFunctions[
libType
]();
38
gCleanupFunctions[
libType
] = NULL;
/external/icu4c/io/
ucln_io.c
38
ECleanupIOType
libType
= UCLN_IO_START;
40
while (++
libType
<UCLN_IO_COUNT) {
41
if (gCleanupFunctions[
libType
])
43
gCleanupFunctions[
libType
]();
44
gCleanupFunctions[
libType
] = NULL;
/external/icu4c/common/
ucln_cmn.c
70
U_CAPI void U_EXPORT2 ucln_cleanupOne(ECleanupLibraryType
libType
)
72
if (gLibCleanupFunctions[
libType
])
74
gLibCleanupFunctions[
libType
]();
75
gLibCleanupFunctions[
libType
] = NULL;
105
ECleanupLibraryType
libType
= UCLN_START;
108
for (
libType
++;
libType
<UCLN_COMMON;
libType
++) {
109
ucln_cleanupOne(
libType
);
Completed in 35 milliseconds