Lines Matching refs:newCtx
1353 TSCCContext *newCtx = (TSCCContext *)malloc(sizeof(TSCCContext)); in TSCC_clone() local
1355 newCtx->serial = TSCC_nextSerial(); in TSCC_clone()
1356 newCtx->wasClosed = 0; in TSCC_clone()
1357 newCtx->magic = 0xC0FFEE; in TSCC_clone()
1359 … log_verbose("TSCC_clone: %p:%d -> new context %p:%d\n", ctx, ctx->serial, newCtx, newCtx->serial); in TSCC_clone()
1361 return newCtx; in TSCC_clone()
1390 TSCCContext *newCtx; in TSCC_fromU() local
1396 newCtx = TSCC_clone(ctx); in TSCC_fromU()
1398 if(newCtx == NULL) { in TSCC_fromU()
1404 ucnv_setFromUCallBack(fromUArgs->converter, junkFrom, newCtx, NULL, NULL, &subErr); in TSCC_fromU()
1440 TSCCContext *newCtx; in TSCC_toU() local
1446 newCtx = TSCC_clone(ctx); in TSCC_toU()
1448 if(newCtx == NULL) { in TSCC_toU()
1454 ucnv_setToUCallBack(toUArgs->converter, junkFrom, newCtx, NULL, NULL, &subErr); in TSCC_toU()