Lines Matching refs:ext
181 const ExtensionModule *ext;
186 ext = &staticExtensions[i];
187 if (ext->disablePtr != NULL) {
188 ErrorF("\t%s\n", ext->name);
196 const ExtensionModule *ext;
200 ext = &staticExtensions[i];
201 if (strcasecmp(name, ext->name) == 0) {
202 if (ext->disablePtr != NULL) {
203 *ext->disablePtr = !enable;
220 const ExtensionModule *ext;
225 ext = &staticExtensions[i];
226 if ((strcmp(name, ext->name) == 0) && (ext->disablePtr == NULL)) {
261 ExtensionModule *ext;
266 ext = &ExtensionModuleList[i];
267 if (ext->initFunc != NULL &&
268 (ext->disablePtr == NULL || !*ext->disablePtr)) {
270 ext->name);
272 (ext->initFunc) ();
301 LoadExtensionList(const ExtensionModule ext[], int size, Bool builtin)
314 newext->name = ext[i].name;
315 newext->initFunc = ext[i].initFunc;
316 newext->disablePtr = ext[i].disablePtr;