Searched refs:ctxPtr (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/postfix-252/postfix/src/global/
H A Ddb_common.c185 int db_common_parse(DICT *dict, void **ctxPtr, const char *format, int query) argument
187 DB_COMMON_CTX *ctx = (DB_COMMON_CTX *) *ctxPtr;
192 ctx = (DB_COMMON_CTX *) (*ctxPtr = db_common_alloc(dict));
251 void db_common_parse_domain(CFG_PARSER *parser, void *ctxPtr) argument
253 DB_COMMON_CTX *ctx = (DB_COMMON_CTX *) ctxPtr;
275 int db_common_dict_partial(void *ctxPtr) argument
278 DB_COMMON_CTX *ctx = (DB_COMMON_CTX *) ctxPtr;
287 void db_common_free_ctx(void *ctxPtr) argument
289 DB_COMMON_CTX *ctx = (DB_COMMON_CTX *) ctxPtr;
293 myfree((char *) ctxPtr);
520 db_common_check_domain(void *ctxPtr, const char *addr) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tbcload/tbcload/
H A DcmpRead.c397 A85DecodeContext *ctxPtr));
399 unsigned char *decodeBuf, A85DecodeContext *ctxPtr));
1011 A85DecodeContext *ctxPtr = &decodeCtx;
1041 A85InitDecodeContext(length, seqPtr, ctxPtr);
1059 if (A85DecodeByte(interp, code, ctxPtr) != TCL_OK) {
2841 A85InitDecodeContext(numBytes, decodeBuf, ctxPtr)
2845 A85DecodeContext *ctxPtr; /* pointer to the context to initialize */
2847 ctxPtr->bytesToDecode = numBytes;
2848 ctxPtr->curPtr = decodeBuf;
2849 ctxPtr
1004 A85DecodeContext *ctxPtr = &decodeCtx; local
[all...]
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclCmdMZ.c3527 CmdFrame *ctxPtr; /* Copy of the topmost cmdframe, to allow us
3874 ctxPtr = (CmdFrame *) TclStackAlloc(interp, sizeof(CmdFrame));
3875 *ctxPtr = *iPtr->cmdFramePtr;
3886 if (ctxPtr->type == TCL_LOCATION_BC) {
3888 * Type BC => ctxPtr->data.eval.path is not used.
3889 * ctxPtr->data.tebc.codePtr is used instead.
3892 TclGetSrcInfoForPc(ctxPtr);
3901 if (ctxPtr->type == TCL_LOCATION_SOURCE && ctxPtr->line[bidx] >= 0) {
3902 int bline = ctxPtr
3495 CmdFrame *ctxPtr; /* Copy of the topmost cmdframe, to allow us local
[all...]
H A DtclCompile.c956 CmdFrame* ctxPtr = (CmdFrame *) TclStackAlloc(interp, sizeof(CmdFrame));
959 *ctxPtr = *invoker;
967 TclGetSrcInfoForPc(ctxPtr);
971 if ((ctxPtr->nline <= word) || (ctxPtr->line[word] < 0)) {
980 if (pc && (ctxPtr->type == TCL_LOCATION_SOURCE)) {
984 Tcl_DecrRefCount(ctxPtr->data.eval.path);
987 envPtr->line = ctxPtr->line[word];
988 envPtr->extCmdMapPtr->type = ctxPtr->type;
990 if (ctxPtr
950 CmdFrame* ctxPtr = (CmdFrame *) TclStackAlloc(interp, sizeof(CmdFrame)); local
[all...]
H A DtclBasic.c5241 CmdFrame *ctxPtr = (CmdFrame *)
5244 *ctxPtr = *invoker;
5247 * Note: Type BC => ctxPtr->data.eval.path is not used.
5248 * ctxPtr->data.tebc.codePtr is used instead.
5251 TclGetSrcInfoForPc(ctxPtr);
5257 if ((ctxPtr->nline <= word) ||
5258 (ctxPtr->line[word] < 0) ||
5259 (ctxPtr->type != TCL_LOCATION_SOURCE)) {
5272 iPtr->invokeCmdFramePtr = ctxPtr;
5276 ctxPtr
5193 CmdFrame *ctxPtr = (CmdFrame *) local
[all...]
H A DtclExecute.c1497 CmdFrame *ctxPtr = TclStackAlloc(interp,sizeof(CmdFrame));
1498 *ctxPtr = *invoker;
1506 TclGetSrcInfoForPc(ctxPtr);
1507 if (ctxPtr->type == TCL_LOCATION_SOURCE) {
1513 Tcl_DecrRefCount(ctxPtr->data.eval.path);
1514 ctxPtr->data.eval.path = NULL;
1518 if (word < ctxPtr->nline) {
1531 && (eclPtr->start != ctxPtr->line[word]))
1533 && (ctxPtr->type == TCL_LOCATION_SOURCE));
1536 TclStackFree(interp, ctxPtr);
1487 CmdFrame *ctxPtr = TclStackAlloc(interp,sizeof(CmdFrame)); local
[all...]

Completed in 115 milliseconds