Lines Matching refs:newCtx
1390 TSCCContext *newCtx = (TSCCContext *)malloc(sizeof(TSCCContext)); in TSCC_clone() local
1392 newCtx->serial = TSCC_nextSerial(); in TSCC_clone()
1393 newCtx->wasClosed = 0; in TSCC_clone()
1394 newCtx->magic = 0xC0FFEE; in TSCC_clone()
1396 … log_verbose("TSCC_clone: %p:%d -> new context %p:%d\n", ctx, ctx->serial, newCtx, newCtx->serial); in TSCC_clone()
1398 return newCtx; in TSCC_clone()
1421 TSCCContext *newCtx; in TSCC_fromU() local
1427 newCtx = TSCC_clone(ctx); in TSCC_fromU()
1429 if(newCtx == NULL) { in TSCC_fromU()
1435 ucnv_setFromUCallBack(fromUArgs->converter, junkFrom, newCtx, NULL, NULL, &subErr); in TSCC_fromU()
1468 TSCCContext *newCtx; in TSCC_toU() local
1474 newCtx = TSCC_clone(ctx); in TSCC_toU()
1476 if(newCtx == NULL) { in TSCC_toU()
1482 ucnv_setToUCallBack(toUArgs->converter, junkFrom, newCtx, NULL, NULL, &subErr); in TSCC_toU()