Lines Matching refs:newCtx
1348 TSCCContext *newCtx = (TSCCContext *)malloc(sizeof(TSCCContext)); in TSCC_clone() local
1350 newCtx->serial = TSCC_nextSerial(); in TSCC_clone()
1351 newCtx->wasClosed = 0; in TSCC_clone()
1352 newCtx->magic = 0xC0FFEE; in TSCC_clone()
1354 … log_verbose("TSCC_clone: %p:%d -> new context %p:%d\n", ctx, ctx->serial, newCtx, newCtx->serial); in TSCC_clone()
1356 return newCtx; in TSCC_clone()
1380 TSCCContext *newCtx; in TSCC_fromU() local
1386 newCtx = TSCC_clone(ctx); in TSCC_fromU()
1388 if(newCtx == NULL) { in TSCC_fromU()
1394 ucnv_setFromUCallBack(fromUArgs->converter, junkFrom, newCtx, NULL, NULL, &subErr); in TSCC_fromU()
1426 TSCCContext *newCtx; in TSCC_toU() local
1432 newCtx = TSCC_clone(ctx); in TSCC_toU()
1434 if(newCtx == NULL) { in TSCC_toU()
1440 ucnv_setToUCallBack(toUArgs->converter, junkFrom, newCtx, NULL, NULL, &subErr); in TSCC_toU()