Lines Matching refs:newCtx
1350 TSCCContext *newCtx = (TSCCContext *)malloc(sizeof(TSCCContext)); in TSCC_clone() local
1352 newCtx->serial = TSCC_nextSerial(); in TSCC_clone()
1353 newCtx->wasClosed = 0; in TSCC_clone()
1354 newCtx->magic = 0xC0FFEE; in TSCC_clone()
1356 … log_verbose("TSCC_clone: %p:%d -> new context %p:%d\n", ctx, ctx->serial, newCtx, newCtx->serial); in TSCC_clone()
1358 return newCtx; in TSCC_clone()
1382 TSCCContext *newCtx; in TSCC_fromU() local
1388 newCtx = TSCC_clone(ctx); in TSCC_fromU()
1390 if(newCtx == NULL) { in TSCC_fromU()
1396 ucnv_setFromUCallBack(fromUArgs->converter, junkFrom, newCtx, NULL, NULL, &subErr); in TSCC_fromU()
1428 TSCCContext *newCtx; in TSCC_toU() local
1434 newCtx = TSCC_clone(ctx); in TSCC_toU()
1436 if(newCtx == NULL) { in TSCC_toU()
1442 ucnv_setToUCallBack(toUArgs->converter, junkFrom, newCtx, NULL, NULL, &subErr); in TSCC_toU()