Lines Matching refs:newCtx
1347 TSCCContext *newCtx = (TSCCContext *)malloc(sizeof(TSCCContext)); in TSCC_clone() local
1349 newCtx->serial = TSCC_nextSerial(); in TSCC_clone()
1350 newCtx->wasClosed = 0; in TSCC_clone()
1351 newCtx->magic = 0xC0FFEE; in TSCC_clone()
1353 … log_verbose("TSCC_clone: %p:%d -> new context %p:%d\n", ctx, ctx->serial, newCtx, newCtx->serial); in TSCC_clone()
1355 return newCtx; in TSCC_clone()
1379 TSCCContext *newCtx; in TSCC_fromU() local
1385 newCtx = TSCC_clone(ctx); in TSCC_fromU()
1387 if(newCtx == NULL) { in TSCC_fromU()
1393 ucnv_setFromUCallBack(fromUArgs->converter, junkFrom, newCtx, NULL, NULL, &subErr); in TSCC_fromU()
1425 TSCCContext *newCtx; in TSCC_toU() local
1431 newCtx = TSCC_clone(ctx); in TSCC_toU()
1433 if(newCtx == NULL) { in TSCC_toU()
1439 ucnv_setToUCallBack(toUArgs->converter, junkFrom, newCtx, NULL, NULL, &subErr); in TSCC_toU()