Lines Matching refs:newCtx
1389 TSCCContext *newCtx = (TSCCContext *)malloc(sizeof(TSCCContext)); in TSCC_clone() local
1391 newCtx->serial = TSCC_nextSerial(); in TSCC_clone()
1392 newCtx->wasClosed = 0; in TSCC_clone()
1393 newCtx->magic = 0xC0FFEE; in TSCC_clone()
1395 … log_verbose("TSCC_clone: %p:%d -> new context %p:%d\n", ctx, ctx->serial, newCtx, newCtx->serial); in TSCC_clone()
1397 return newCtx; in TSCC_clone()
1420 TSCCContext *newCtx; in TSCC_fromU() local
1426 newCtx = TSCC_clone(ctx); in TSCC_fromU()
1428 if(newCtx == NULL) { in TSCC_fromU()
1434 ucnv_setFromUCallBack(fromUArgs->converter, junkFrom, newCtx, NULL, NULL, &subErr); in TSCC_fromU()
1467 TSCCContext *newCtx; in TSCC_toU() local
1473 newCtx = TSCC_clone(ctx); in TSCC_toU()
1475 if(newCtx == NULL) { in TSCC_toU()
1481 ucnv_setToUCallBack(toUArgs->converter, junkFrom, newCtx, NULL, NULL, &subErr); in TSCC_toU()