Lines Matching defs:mode
2116 /* Switch to runtime mode: any further failures in the dynamic
2158 void *dlopen(const char *file, int mode)
2168 if (mode & ~(RTLD_LAZY | RTLD_NOW | RTLD_NOLOAD | RTLD_GLOBAL | RTLD_LOCAL | RTLD_NODELETE)) {
2169 error("invalid mode parameter for dlopen().");
2173 if ((mode & (RTLD_LAZY | RTLD_NOW)) == 0) {
2174 error("invalid mode, one of RTLD_LAZY and RTLD_NOW must be set.");
2199 noload = mode & RTLD_NOLOAD;
2249 if (!p->relocated && (mode & RTLD_LAZY)) {
2255 if (!p->relocated || (mode & RTLD_GLOBAL)) {
2269 if (!(mode & RTLD_GLOBAL))