Home | History | Annotate | Download | only in config

Lines Matching refs:MAX_LABEL_LENGTH

226 #define MAX_LABEL_LENGTH 60
242 if (len <= MAX_LABEL_LENGTH)
281 if (strlen (base_id) > MAX_LABEL_LENGTH)
313 identifiers to an arbitrary length (set by MAX_LABEL_LENGTH).
340 The resulting identifier will be MAX_LABEL_LENGTH characters long.
451 equal to MAX_LABEL_LENGTH characters long. The string returned from
455 static char newname[MAX_LABEL_LENGTH + 1];
464 if ((len = strlen (name)) <= MAX_LABEL_LENGTH)
467 final_len = MAX_LABEL_LENGTH - 2 - 5 - 3 - 3 - suffix_length;
475 newname [MAX_LABEL_LENGTH] = 0;
478 strncpy (newname + MAX_LABEL_LENGTH - suffix_length,
498 /* If it's not exactly MAX_LABEL_LENGTH characters long, it can't be
500 if (len != MAX_LABEL_LENGTH)