Searched refs:invoker (Results 1 - 25 of 29) sorted by relevance

12

/macosx-10.9.5/procmail-14/procmail/src/
H A Dlmtp.h6 **lmtp P((struct auth_identity***lrout,char*invoker));
H A Dfrom.h8 makeFrom P((const char*from,const char*const invoker)),
H A Dfrom.c69 void makeFrom(from,invoker)const char*from,*const invoker;
81 { if(privs!=1&&!strcmp(from,invoker))
82 privs=1; /* if -f user is the same as the invoker, allow it */
86 syslog(LOG_ERR,slogstr,attemptst,invoker);from=0;
87 fwhom=invoker;
91 fwhom=invoker;
92 makeblock(&themail,2*linebuf+(lfr=strlen(fwhom))+(linv=strlen(invoker)));
163 strcat(strcpy(rstart,Fakefield),invoker); /* fake alert */ local
175 if(logname) /* check out the invoker'
[all...]
H A Dlmtp.c237 struct auth_identity **lmtp(lrout,invoker)
238 struct auth_identity***lrout;char*invoker;
336 makeFrom(from+1,invoker);
/macosx-10.9.5/ruby-104/ruby/lib/drb/
H A Dextserv.rb20 @invoker = ro.regist(name, DRbObject.new(self, @server.uri))
31 @invoker.unregist(@name)
/macosx-10.9.5/ruby-104/ruby/
H A Dmethod.h65 VALUE (*invoker)(VALUE (*func)(ANYARGS), VALUE recv, int argc, const VALUE *argv); member in struct:rb_method_cfunc_struct
H A Dvm_eval.c71 val = (*cfunc->invoker)(cfunc->func, ci, argv);
117 val = (*cfunc->invoker)(cfunc->func, recv, argc, argv);
H A Dvm_insnhelper.c1490 val = (*cfunc->invoker)(cfunc->func, recv, argc, reg_cfp->sp + 1);
1517 val = (*cfunc->invoker)(cfunc->func, ci, argv);
H A Dvm_method.c400 cfunc->invoker = call_cfunc_invoker_func(argc);
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclCmdAH.c672 CmdFrame* invoker = iPtr->cmdFramePtr;
674 TclArgumentGet (interp, objv[1], &invoker, &word);
677 invoker, word);
662 CmdFrame* invoker = iPtr->cmdFramePtr; local
H A DtclCompile.h869 const CmdFrame *invoker, int word);
930 int numBytes, CONST CmdFrame* invoker, int word);
H A DtclCompile.c884 const CmdFrame *invoker, /* Location context invoking the bcc */
938 if (invoker == NULL ||
939 (invoker->type == TCL_LOCATION_EVAL_LIST)) {
959 *ctxPtr = *invoker;
961 if (invoker->type == TCL_LOCATION_BC) {
871 TclInitCompileEnv( Tcl_Interp *interp, register CompileEnv *envPtr, const char *stringPtr, int numBytes, const CmdFrame *invoker, int word) argument
H A DtclProc.c949 CmdFrame* invoker = NULL;
952 TclArgumentGet (interp, objv[0], &invoker, &word);
953 result = TclEvalObjEx(interp, objv[0], 0, invoker, word);
944 CmdFrame* invoker = NULL; local
H A DtclBasic.c5095 const CmdFrame *invoker, /* Frame of the command doing the eval. */
5128 * dynamic execution we ignore the invoker, even if known.
5219 if (invoker == NULL) {
5228 * We have an invoker, describing the command asking for the
5244 *ctxPtr = *invoker;
5245 if (invoker->type == TCL_LOCATION_BC) {
5302 * TIP #280 The invoker provides us with the context for the script.
5312 result = TclCompEvalObj(interp, objPtr, invoker, word);
5039 TclEvalObjEx( Tcl_Interp *interp, register Tcl_Obj *objPtr, int flags, const CmdFrame *invoker, int word) argument
H A DtclInterp.c2507 CmdFrame* invoker = iPtr->cmdFramePtr;
2510 TclArgumentGet (interp, objv[0], &invoker, &word);
2511 result = TclEvalObjEx(slaveInterp, objv[0], 0, invoker, word);
2479 CmdFrame* invoker = iPtr->cmdFramePtr; local
H A DtclIntDecls.h1004 int flags, CONST CmdFrame *invoker, int word);
1276 int (*tclEvalObjEx) (Tcl_Interp *interp, Tcl_Obj *objPtr, int flags, CONST CmdFrame *invoker, int word); /* 232 */
H A DtclExecute.c1223 * TIP #280: No invoker (yet) - Expression compilation.
1386 const CmdFrame *invoker,
1496 if (invoker) {
1498 *ctxPtr = *invoker;
1500 if (invoker->type == TCL_LOCATION_BC) {
1564 * TIP #280. Remember the invoker for a moment in the interpreter
1570 iPtr->invokeCmdFramePtr = invoker;
1373 TclCompEvalObj( Tcl_Interp *interp, Tcl_Obj *objPtr, const CmdFrame *invoker, int word) argument
H A DtclNamesp.c3320 CmdFrame* invoker = iPtr->cmdFramePtr;
3323 TclArgumentGet (interp, objv[3], &invoker, &word);
3324 result = TclEvalObjEx(interp, objv[3], 0, invoker, word);
3287 CmdFrame* invoker = iPtr->cmdFramePtr; local
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclCompile.c787 TclInitCompileEnv(interp, envPtr, string, numBytes, invoker, word)
796 CONST CmdFrame* invoker; /* Location context invoking the bcc */
851 if (invoker == NULL ||
852 (invoker->type == TCL_LOCATION_EVAL_LIST)) {
869 CmdFrame ctx = *invoker;
872 if (invoker->type == TCL_LOCATION_BC) {
790 CONST CmdFrame* invoker; /* Location context invoking the bcc */ variable
H A DtclCmdAH.c626 CmdFrame* invoker = iPtr->cmdFramePtr;
628 TclArgumentGet (interp, objv[1], &invoker, &word);
630 invoker, word);
H A DtclProc.c775 CmdFrame* invoker = NULL;
777 TclArgumentGet (interp, objv[0], &invoker, &word);
778 result = TclEvalObjEx(interp, objv[0], TCL_EVAL_DIRECT, invoker, word);
771 CmdFrame* invoker = NULL; local
H A DtclCompile.h787 Tcl_Obj *objPtr, CONST CmdFrame* invoker,
852 int numBytes, CONST CmdFrame* invoker, int word));
H A DtclInterp.c2124 CmdFrame* invoker = iPtr->cmdFramePtr;
2126 TclArgumentGet (interp, objv[0], &invoker, &word);
2127 result = TclEvalObjEx(slaveInterp, objv[0], 0, invoker, word);
H A DtclBasic.c5044 TclEvalObjEx(interp, objPtr, flags, invoker, word)
5055 CONST CmdFrame* invoker; /* Frame of the command doing the eval */
5097 * invoker, even if known.
5208 if (invoker == NULL) {
5213 /* We have an invoker, describing the command asking for the
5226 CmdFrame ctx = *invoker;
5229 if (invoker->type == TCL_LOCATION_BC) {
5276 * TIP #280 The invoker provides us with the context for the
5288 result = TclCompEvalObj(interp, objPtr, invoker, word);
H A DtclNamesp.c3039 CmdFrame* invoker = iPtr->cmdFramePtr;
3041 TclArgumentGet (interp, objv[3], &invoker, &word);
3042 result = TclEvalObjEx(interp, objv[3], 0, invoker, word);

Completed in 526 milliseconds

12