Searched defs:newCtx (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/samples/ucnv/
H A Dflagcb.c160 debugCBContext *newCtx; local
161 newCtx = malloc(sizeof(debugCBContext));
163 newCtx->serial = debugCB_nextSerial();
164 newCtx->magic = 0xC0FFEE;
166 newCtx->subCallback = ctx->subCallback;
167 newCtx->subContext = ctx->subContext;
170 printf("debugCB_clone: %p:%d -> new context %p:%d\n", ctx, ctx->serial, newCtx, newCtx->serial);
173 return newCtx;
/external/mesa3d/src/mesa/main/
H A Dcontext.c1608 * \param newCtx the new GL context. If NULL then there will be no current GL
1614 _mesa_make_current( struct gl_context *newCtx, argument
1621 _mesa_debug(newCtx, "_mesa_make_current()\n");
1625 if (newCtx && drawBuffer && newCtx->WinSysDrawBuffer != drawBuffer) {
1626 if (!check_compatible(newCtx, drawBuffer)) {
1627 _mesa_warning(newCtx,
1632 if (newCtx && readBuffer && newCtx->WinSysReadBuffer != readBuffer) {
1633 if (!check_compatible(newCtx, readBuffe
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dccapitst.c1349 TSCCContext *newCtx = (TSCCContext *)malloc(sizeof(TSCCContext)); local
1351 newCtx->serial = TSCC_nextSerial();
1352 newCtx->wasClosed = 0;
1353 newCtx->magic = 0xC0FFEE;
1355 log_verbose("TSCC_clone: %p:%d -> new context %p:%d\n", ctx, ctx->serial, newCtx, newCtx->serial);
1357 return newCtx;
1381 TSCCContext *newCtx; local
1387 newCtx = TSCC_clone(ctx);
1389 if(newCtx
1427 TSCCContext *newCtx; local
[all...]

Completed in 226 milliseconds