Home
last modified time | relevance | path

Searched refs:pErrorCode (Results 1 – 25 of 148) sorted by relevance

123456

/external/icu/icu4c/source/common/
Dunorm.cpp50 UErrorCode *pErrorCode) { in unorm_quickCheck() argument
51 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode); in unorm_quickCheck()
52 return unorm2_quickCheck((const UNormalizer2 *)n2, src, srcLength, pErrorCode); in unorm_quickCheck()
58 UErrorCode *pErrorCode) { in unorm_quickCheckWithOptions() argument
59 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode); in unorm_quickCheckWithOptions()
61 FilteredNormalizer2 fn2(*n2, *uniset_getUnicode32Instance(*pErrorCode)); in unorm_quickCheckWithOptions()
64 src, srcLength, pErrorCode); in unorm_quickCheckWithOptions()
66 return unorm2_quickCheck((const UNormalizer2 *)n2, src, srcLength, pErrorCode); in unorm_quickCheckWithOptions()
73 UErrorCode *pErrorCode) { in unorm_isNormalized() argument
74 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode); in unorm_isNormalized()
[all …]
Dudata.cpp206 setCommonICUDataPointer(const void *pData, UBool /*warn*/, UErrorCode *pErrorCode) { in setCommonICUDataPointer() argument
210 udata_checkCommonData(&tData, pErrorCode); in setCommonICUDataPointer()
211 return setCommonICUData(&tData, FALSE, pErrorCode); in setCommonICUDataPointer()
406 UErrorCode *pErrorCode);
407 const char *next(UErrorCode *pErrorCode);
437 UErrorCode *pErrorCode) in UDataPathIterator() argument
451 packageStub.append(U_FILE_SEP_CHAR, *pErrorCode).append(pkg, *pErrorCode); in UDataPathIterator()
465 itemPath.append(item, (int32_t)(basename-item), *pErrorCode); in UDataPathIterator()
503 const char *UDataPathIterator::next(UErrorCode *pErrorCode) in next() argument
505 if(U_FAILURE(*pErrorCode)) { in next()
[all …]
Dudataswp.c35 UErrorCode *pErrorCode) { in uprv_swapArray16() argument
41 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in uprv_swapArray16()
45 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in uprv_swapArray16()
65 UErrorCode *pErrorCode) { in uprv_copyArray16() argument
66 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in uprv_copyArray16()
70 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in uprv_copyArray16()
83 UErrorCode *pErrorCode) { in uprv_swapArray32() argument
89 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in uprv_swapArray32()
93 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in uprv_swapArray32()
113 UErrorCode *pErrorCode) { in uprv_copyArray32() argument
[all …]
Dubiditransform.c93 ubiditransform_open(UErrorCode *pErrorCode) in ubiditransform_open() argument
96 if (U_SUCCESS(*pErrorCode)) { in ubiditransform_open()
99 *pErrorCode = U_MEMORY_ALLOCATION_ERROR; in ubiditransform_open()
129 action_resolve(UBiDiTransform *pTransform, UErrorCode *pErrorCode) in action_resolve() argument
132 pTransform->pActiveScheme->baseLevel, NULL, pErrorCode); in action_resolve()
146 action_reorder(UBiDiTransform *pTransform, UErrorCode *pErrorCode) in action_reorder() argument
149 pTransform->reorderingOptions, pErrorCode); in action_reorder()
166 action_setInverse(UBiDiTransform *pTransform, UErrorCode *pErrorCode) in action_setInverse() argument
184 action_setRunsOnly(UBiDiTransform *pTransform, UErrorCode *pErrorCode) in action_setRunsOnly() argument
200 action_reverse(UBiDiTransform *pTransform, UErrorCode *pErrorCode) in action_reverse() argument
[all …]
Dustr_wcs.cpp70 UErrorCode *pErrorCode){ in _strToWCS() argument
85 conv = u_getDefaultConverter(pErrorCode); in _strToWCS()
87 if(U_FAILURE(*pErrorCode)){ in _strToWCS()
99 *pErrorCode = U_ZERO_ERROR; in _strToWCS()
102 …v_fromUnicode(conv,&tempBuf,tempBufLimit,&pSrc,pSrcLimit,NULL,(UBool)(pSrc==pSrcLimit),pErrorCode); in _strToWCS()
106 if(*pErrorCode==U_BUFFER_OVERFLOW_ERROR){ in _strToWCS()
128 if(U_FAILURE(*pErrorCode)){ in _strToWCS()
169 *pErrorCode = U_INVALID_CHAR_FOUND; in _strToWCS()
216 *pErrorCode = U_MEMORY_ALLOCATION_ERROR; in _strToWCS()
223 u_terminateWChars(dest,destCapacity,count,pErrorCode); in _strToWCS()
[all …]
Dnormalizer2.cpp266 unorm2_getNFCInstance(UErrorCode *pErrorCode) { in unorm2_getNFCInstance() argument
267 return (const UNormalizer2 *)Normalizer2::getNFCInstance(*pErrorCode); in unorm2_getNFCInstance()
271 unorm2_getNFDInstance(UErrorCode *pErrorCode) { in unorm2_getNFDInstance() argument
272 return (const UNormalizer2 *)Normalizer2::getNFDInstance(*pErrorCode); in unorm2_getNFDInstance()
284 UErrorCode *pErrorCode) { in unorm2_normalize() argument
285 if(U_FAILURE(*pErrorCode)) { in unorm2_normalize()
292 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in unorm2_normalize()
303 if(buffer.init(length, *pErrorCode)) { in unorm2_normalize()
304 n2wi->normalize(src, length>=0 ? src+length : NULL, buffer, *pErrorCode); in unorm2_normalize()
308 n2->normalize(srcString, destString, *pErrorCode); in unorm2_normalize()
[all …]
Ducnv_io.cpp313 haveAliasData(UErrorCode *pErrorCode) { in haveAliasData() argument
314 umtx_initOnce(gAliasDataInitOnce, &initAliasData, *pErrorCode); in haveAliasData()
315 return U_SUCCESS(*pErrorCode); in haveAliasData()
319 isAlias(const char *alias, UErrorCode *pErrorCode) { in isAlias() argument
321 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in isAlias()
552 findConverter(const char *alias, UBool *containsOption, UErrorCode *pErrorCode) { in findConverter() argument
561 *pErrorCode = U_BUFFER_OVERFLOW_ERROR; in findConverter()
599 *pErrorCode = U_AMBIGUOUS_ALIAS_WARNING; in findConverter()
645 findTaggedAliasListsOffset(const char *alias, const char *standard, UErrorCode *pErrorCode) { in findTaggedAliasListsOffset() argument
655 *pErrorCode = myErr; in findTaggedAliasListsOffset()
[all …]
Ducasemap.cpp43 ucasemap_open(const char *locale, uint32_t options, UErrorCode *pErrorCode) { in ucasemap_open() argument
46 if(U_FAILURE(*pErrorCode)) { in ucasemap_open()
57 ucasemap_setLocale(csm, locale, pErrorCode); in ucasemap_open()
58 if(U_FAILURE(*pErrorCode)) { in ucasemap_open()
89 ucasemap_setLocale(UCaseMap *csm, const char *locale, UErrorCode *pErrorCode) { in ucasemap_setLocale() argument
92 if(U_FAILURE(*pErrorCode)) { in ucasemap_setLocale()
96 length=uloc_getName(locale, csm->locale, (int32_t)sizeof(csm->locale), pErrorCode); in ucasemap_setLocale()
97 if(*pErrorCode==U_BUFFER_OVERFLOW_ERROR || length==sizeof(csm->locale)) { in ucasemap_setLocale()
98 *pErrorCode=U_ZERO_ERROR; in ucasemap_setLocale()
100 length=uloc_getLanguage(locale, csm->locale, (int32_t)sizeof(csm->locale), pErrorCode); in ucasemap_setLocale()
[all …]
Dubidiwrt.c62 UErrorCode *pErrorCode) { in doWriteForward() argument
69 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in doWriteForward()
83 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in doWriteForward()
101 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in doWriteForward()
130 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in doWriteForward()
155 UErrorCode *pErrorCode) { in doWriteReverse() argument
187 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in doWriteReverse()
215 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in doWriteReverse()
264 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in doWriteReverse()
312 UErrorCode *pErrorCode) { in ubidi_writeReverse() argument
[all …]
Ducol_swp.cpp38 UErrorCode *pErrorCode) { in utrie_swap() argument
44 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in utrie_swap()
48 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in utrie_swap()
54 *pErrorCode=U_INDEX_OUTOFBOUNDS_ERROR; in utrie_swap()
73 *pErrorCode=U_INVALID_FORMAT_ERROR; /* not a UTrie */ in utrie_swap()
84 *pErrorCode=U_INDEX_OUTOFBOUNDS_ERROR; in utrie_swap()
91 ds->swapArray32(ds, inTrie, sizeof(UTrieHeader), outTrie, pErrorCode); in utrie_swap()
95 ds->swapArray16(ds, inTrie+1, trie.indexLength*2, outTrie+1, pErrorCode); in utrie_swap()
97 (uint16_t *)(outTrie+1)+trie.indexLength, pErrorCode); in utrie_swap()
99 … ds->swapArray16(ds, inTrie+1, (trie.indexLength+trie.dataLength)*2, outTrie+1, pErrorCode); in utrie_swap()
[all …]
Dlocdispnames.cpp303 UErrorCode *pErrorCode) { in _getStringOrCopyKey() argument
311 rb=ures_open(path, locale, pErrorCode); in _getStringOrCopyKey()
313 if(U_SUCCESS(*pErrorCode)) { in _getStringOrCopyKey()
314 s=ures_getStringByKey(rb, tableKey, &length, pErrorCode); in _getStringOrCopyKey()
321 *pErrorCode = U_MISSING_RESOURCE_ERROR; in _getStringOrCopyKey()
329 pErrorCode); in _getStringOrCopyKey()
333 if(U_SUCCESS(*pErrorCode)) { in _getStringOrCopyKey()
342 *pErrorCode=U_USING_DEFAULT_WARNING; in _getStringOrCopyKey()
345 return u_terminateUChars(dest, destCapacity, length, pErrorCode); in _getStringOrCopyKey()
356 UErrorCode *pErrorCode) { in _getDisplayNameForComponent() argument
[all …]
Dpropsvec.c44 upvec_open(int32_t columns, UErrorCode *pErrorCode) { in upvec_open() argument
49 if(U_FAILURE(*pErrorCode)) { in upvec_open()
53 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in upvec_open()
63 *pErrorCode=U_MEMORY_ALLOCATION_ERROR; in upvec_open()
158 UErrorCode *pErrorCode) { in upvec_setValue() argument
165 if(U_FAILURE(*pErrorCode)) { in upvec_setValue()
172 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in upvec_setValue()
176 *pErrorCode=U_NO_WRITE_PERMISSION; in upvec_setValue()
215 *pErrorCode=U_INTERNAL_PROGRAM_ERROR; in upvec_setValue()
220 *pErrorCode=U_MEMORY_ALLOCATION_ERROR; in upvec_setValue()
[all …]
Ducnv_u7.c198 UErrorCode *pErrorCode) { in _UTF7Open() argument
204 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in _UTF7Open()
210 UErrorCode *pErrorCode) { in _UTF7ToUnicodeWithOffsets() argument
276 *pErrorCode=U_ILLEGAL_CHAR_FOUND; in _UTF7ToUnicodeWithOffsets()
297 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in _UTF7ToUnicodeWithOffsets()
337 *pErrorCode=U_ILLEGAL_CHAR_FOUND; in _UTF7ToUnicodeWithOffsets()
344 *pErrorCode=U_ILLEGAL_CHAR_FOUND; in _UTF7ToUnicodeWithOffsets()
350 *pErrorCode=U_ILLEGAL_CHAR_FOUND; in _UTF7ToUnicodeWithOffsets()
423 *pErrorCode=U_ILLEGAL_CHAR_FOUND; in _UTF7ToUnicodeWithOffsets()
432 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in _UTF7ToUnicodeWithOffsets()
[all …]
Dutrie2_builder.cpp109 utrie2_open(uint32_t initialValue, uint32_t errorValue, UErrorCode *pErrorCode) { in utrie2_open() argument
115 if(U_FAILURE(*pErrorCode)) { in utrie2_open()
126 *pErrorCode=U_MEMORY_ALLOCATION_ERROR; in utrie2_open()
229 utrie2_set32(trie, i, initialValue, pErrorCode); in utrie2_open()
278 utrie2_clone(const UTrie2 *other, UErrorCode *pErrorCode) { in utrie2_clone() argument
281 if(U_FAILURE(*pErrorCode)) { in utrie2_clone()
285 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in utrie2_clone()
366 utrie2_cloneAsThawed(const UTrie2 *other, UErrorCode *pErrorCode) { in utrie2_cloneAsThawed() argument
370 if(U_FAILURE(*pErrorCode)) { in utrie2_cloneAsThawed()
374 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in utrie2_cloneAsThawed()
[all …]
Ducnvdisp.c39 UErrorCode *pErrorCode) { in ucnv_getDisplayName() argument
46 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in ucnv_getDisplayName()
51 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in ucnv_getDisplayName()
56 rb=ures_open(NULL, displayLocale, pErrorCode); in ucnv_getDisplayName()
57 if(U_FAILURE(*pErrorCode)) { in ucnv_getDisplayName()
67 if (*pErrorCode == U_ZERO_ERROR) { in ucnv_getDisplayName()
68 *pErrorCode = localStatus; in ucnv_getDisplayName()
76 return u_terminateUChars(displayName, displayNameCapacity, length, pErrorCode); in ucnv_getDisplayName()
Ducnv_u16.c38 UErrorCode *pErrorCode);
51 UErrorCode *pErrorCode) { in _UTF16BEFromUnicodeWithOffsets() argument
77 pErrorCode); in _UTF16BEFromUnicodeWithOffsets()
83 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in _UTF16BEFromUnicodeWithOffsets()
221 *pErrorCode=U_ILLEGAL_CHAR_FOUND; in _UTF16BEFromUnicodeWithOffsets()
228 *pErrorCode=U_ILLEGAL_CHAR_FOUND; in _UTF16BEFromUnicodeWithOffsets()
239 pErrorCode); in _UTF16BEFromUnicodeWithOffsets()
243 if(U_SUCCESS(*pErrorCode) && source<pArgs->sourceLimit && targetCapacity==0) { in _UTF16BEFromUnicodeWithOffsets()
244 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in _UTF16BEFromUnicodeWithOffsets()
255 UErrorCode *pErrorCode) { in _UTF16BEToUnicodeWithOffsets() argument
[all …]
Dustr_imp.h65 UErrorCode *pErrorCode);
84 UErrorCode *pErrorCode);
93 uprv_haveProperties(UErrorCode *pErrorCode);
145 UErrorCode *pErrorCode);
154 UErrorCode *pErrorCode);
161 UErrorCode *pErrorCode);
170 UErrorCode *pErrorCode);
179 UErrorCode *pErrorCode);
190 UErrorCode *pErrorCode);
203 UErrorCode *pErrorCode);
[all …]
/external/icu/icu4c/source/tools/toolutil/
Dswapimpl.cpp77 UErrorCode *pErrorCode) { in upname_swap() argument
79 int32_t headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode); in upname_swap()
80 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in upname_swap()
99 *pErrorCode=U_UNSUPPORTED_ERROR; in upname_swap()
112 *pErrorCode=U_INDEX_OUTOFBOUNDS_ERROR; in upname_swap()
124 *pErrorCode=U_INDEX_OUTOFBOUNDS_ERROR; in upname_swap()
132 ds->swapArray32(ds, inBytes, numBytesIndexesAndValueMaps, outBytes, pErrorCode); in upname_swap()
162 UErrorCode *pErrorCode) { in uprops_swap() argument
170 headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode); in uprops_swap()
171 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in uprops_swap()
[all …]
Duparse.c78 UErrorCode *pErrorCode) { in u_parseDelimitedFile() argument
84 if(U_FAILURE(*pErrorCode)) { in u_parseDelimitedFile()
89 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in u_parseDelimitedFile()
100 *pErrorCode=U_FILE_ACCESS_ERROR; in u_parseDelimitedFile()
115 *pErrorCode=U_ZERO_ERROR; in u_parseDelimitedFile()
117 *pErrorCode=U_USING_DEFAULT_WARNING; in u_parseDelimitedFile()
159 *pErrorCode=U_PARSE_ERROR; in u_parseDelimitedFile()
167 if(U_FAILURE(*pErrorCode)) { in u_parseDelimitedFile()
172 lineFn(context, fields, fieldCount, pErrorCode); in u_parseDelimitedFile()
173 if(U_FAILURE(*pErrorCode)) { in u_parseDelimitedFile()
[all …]
Dpkgitems.cpp132 UErrorCode *pErrorCode) { in makeTargetName() argument
154 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in makeTargetName()
166 UErrorCode *pErrorCode) { in checkIDSuffix() argument
168 makeTargetName(itemName, id, idLength, suffix, target, (int32_t)sizeof(target), pErrorCode); in checkIDSuffix()
169 if(U_SUCCESS(*pErrorCode)) { in checkIDSuffix()
177 UErrorCode *pErrorCode) { in checkParent() argument
212 checkIDSuffix(itemName, parent, parentLength, suffix, check, context, pErrorCode); in checkParent()
225 CheckDependency check, void *context, UErrorCode *pErrorCode) { in checkAlias() argument
231 *pErrorCode=U_INVALID_CHAR_FOUND; in checkAlias()
257 *pErrorCode=U_UNSUPPORTED_ERROR; in checkAlias()
[all …]
Dunewdata.c39 UErrorCode *pErrorCode) { in udata_create() argument
46 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in udata_create()
49 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in udata_create()
56 *pErrorCode=U_MEMORY_ALLOCATION_ERROR; in udata_create()
81 *pErrorCode = U_BUFFER_OVERFLOW_ERROR; in udata_create()
105 *pErrorCode=U_FILE_ACCESS_ERROR; in udata_create()
144 udata_finish(UNewDataMemory *pData, UErrorCode *pErrorCode) { in udata_finish() argument
147 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in udata_finish()
156 *pErrorCode=U_FILE_ACCESS_ERROR; in udata_finish()
184 udata_createDummy(const char *dir, const char *type, const char *name, UErrorCode *pErrorCode) { in udata_createDummy() argument
[all …]
/external/icu/icu4c/source/tools/gensprep/
Dgensprep.c58 parseMappings(const char *filename, UBool reportError, UErrorCode *pErrorCode);
61 parseNormalizationCorrections(const char *filename, UErrorCode *pErrorCode);
280 UErrorCode *pErrorCode) { in normalizationCorrectionsLineFn() argument
290 if(U_FAILURE(*pErrorCode)) { in normalizationCorrectionsLineFn()
292 exit(*pErrorCode); in normalizationCorrectionsLineFn()
298 length=u_parseCodePoints(s, mapping, sizeof(mapping)/4, pErrorCode); in normalizationCorrectionsLineFn()
307 if(U_FAILURE(*pErrorCode)) { in normalizationCorrectionsLineFn()
309 (long)code, u_errorName(*pErrorCode)); in normalizationCorrectionsLineFn()
310 exit(*pErrorCode); in normalizationCorrectionsLineFn()
317 storeMapping(code,mapping, length, USPREP_MAP, pErrorCode); in normalizationCorrectionsLineFn()
[all …]
/external/icu/icu4c/source/i18n/
Dudatpg.cpp32 udatpg_open(const char *locale, UErrorCode *pErrorCode) { in udatpg_open() argument
34 return (UDateTimePatternGenerator *)DateTimePatternGenerator::createInstance(*pErrorCode); in udatpg_open()
36 …(UDateTimePatternGenerator *)DateTimePatternGenerator::createInstance(Locale(locale), *pErrorCode); in udatpg_open()
41 udatpg_openEmpty(UErrorCode *pErrorCode) { in udatpg_openEmpty() argument
42 return (UDateTimePatternGenerator *)DateTimePatternGenerator::createEmptyInstance(*pErrorCode); in udatpg_openEmpty()
51 udatpg_clone(const UDateTimePatternGenerator *dtpg, UErrorCode *pErrorCode) { in udatpg_clone() argument
52 if(U_FAILURE(*pErrorCode)) { in udatpg_clone()
62 UErrorCode *pErrorCode) { in udatpg_getBestPattern() argument
65 bestPattern, capacity, pErrorCode); in udatpg_getBestPattern()
73 UErrorCode *pErrorCode) { in udatpg_getBestPatternWithOptions() argument
[all …]
/external/icu/icu4c/source/common/unicode/
Dunorm2.h135 unorm2_getNFCInstance(UErrorCode *pErrorCode);
149 unorm2_getNFDInstance(UErrorCode *pErrorCode);
163 unorm2_getNFKCInstance(UErrorCode *pErrorCode);
177 unorm2_getNFKDInstance(UErrorCode *pErrorCode);
191 unorm2_getNFKCCasefoldInstance(UErrorCode *pErrorCode);
218 UErrorCode *pErrorCode);
236 unorm2_openFiltered(const UNormalizer2 *norm2, const USet *filterSet, UErrorCode *pErrorCode);
286 UErrorCode *pErrorCode);
309 UErrorCode *pErrorCode);
332 UErrorCode *pErrorCode);
[all …]
/external/icu/icu4c/source/tools/icuswap/
Dicuswap.cpp77 UErrorCode *pErrorCode);
292 UErrorCode *pErrorCode) { in extractPackageName() argument
296 if(U_FAILURE(*pErrorCode)) { in extractPackageName()
306 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in extractPackageName()
313 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in extractPackageName()
339 UErrorCode *pErrorCode) { in udata_swapPackage() argument
358 headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode); in udata_swapPackage()
359 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in udata_swapPackage()
376 *pErrorCode=U_UNSUPPORTED_ERROR; in udata_swapPackage()
388 pErrorCode); in udata_swapPackage()
[all …]

123456