Lines Matching defs:strings
267 * mdata field is dereferenced. Accepting null strings in
420 char *strings;
428 strings = malloc(str_size);
430 if (hash_key == NULL || hash_str == NULL || strings == NULL) {
450 if ((strings = (char *)
451 realloc(strings, str_size)) == NULL) {
457 strings[next_str++] = c;
462 if ((strings = (char *)
463 realloc(strings, str_size)) == NULL) {
469 strings[next_str++] = NULL;
475 hash = dohash(pos + strings);
479 if (strcmp(pos + strings, hash_str[i] + strings) == 0)
518 (void) memcpy(str, strings, next_str);
520 free(strings);