Lines Matching refs:identPlusVers
16088 char * identPlusVers,
16094 char * identPlusVers, argument
16100 result = strlcpy(identPlusVers, kmod_info->name, KMOD_MAX_NAME);
16102 compactIdentifier(kmod_info->name, identPlusVers, NULL);
16103 result = strnlen(identPlusVers, KMOD_MAX_NAME - 1);
16105 identPlusVers[result++] = '\t'; // increment for real char
16106 identPlusVers[result] = '\0'; // don't increment for nul char
16107 result = strlcat(identPlusVers, kmod_info->version, bufSize);
16109 identPlusVers[bufSize - 1] = '\0';
16143 char identPlusVers[2 * KMOD_MAX_NAME]; local
16187 identPlusVers,
16188 sizeof(identPlusVers));
16196 tempLen = strlcat(paniclist, identPlusVers, list_size);