Searched refs:intercepts (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/ksh-20/ksh/src/lib/libast/misc/
H A Dastintercept.c24 #include "intercepts.h"
27 * NOTE: the "intercepts" definition is in getenv.c because some static linkers
28 * miss lone references to "intercepts" without "astintercept()"
41 intercepts.intercept_getenv = call->shgetenv;
43 intercepts.intercept_getenv = 0;
48 intercepts.intercept_setenviron = call->shsetenv;
50 intercepts.intercept_setenviron = 0;
H A Dintercepts.h36 #define intercepts _ast_intercepts macro
38 extern Intercepts_t intercepts;
H A Dgetenv.c28 #include "intercepts.h"
35 * NOTE: the "intercepts" definition is here instead of astintercept.c because some
36 * static linkers miss lone references to "intercepts" without "astintercept()"
41 Intercepts_t intercepts variable
108 return intercepts.intercept_getenv ? (*intercepts.intercept_getenv)(name) : (*posix_getenv)(name);
111 return intercepts.intercept_getenv ? (*intercepts.intercept_getenv)(name) : getenv(name);
H A Dsetenviron.c24 #include "intercepts.h"
59 if (intercepts.intercept_setenviron)
60 return (*intercepts.intercept_setenviron)(akey);
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/lib/SOAP/
H A DTransport.pm19 Objects of the SOAP::Transport class manage two roles: they manage both the parameters related to transport as set through the containing SOAP::Lite object, and they abstract the selection and loading of an appropriate transport module. This is done with an AUTOLOAD function within the class that intercepts all methods beyond the two defined next and reroutes them to the underlying transport implementation code.

Completed in 114 milliseconds