Lines Matching defs:module
3766 * Add the specified module to the dlautopush structure; returns a
3770 i_dladm_add_ap_module(const char *module, struct dlautopush *dlap)
3772 if ((strlen(module) == 0) || (strlen(module) > FMNAMESZ))
3775 if (strncasecmp(module, AP_ANCHOR, strlen(AP_ANCHOR)) == 0) {
3778 * be after at least one module.
3791 (void) strlcpy(dlap->dap_aplist[dlap->dap_npush++], module,
3808 char *module;
3827 module = strtok(val, delimiters);
3828 while (module != NULL) {
3829 status = i_dladm_add_ap_module(module, dlap);
3832 module = strtok(NULL, delimiters);