Lines Matching refs:uuid
76 problem_key_build(const char *uuid) in problem_key_build() argument
80 key.d_aci_uuid = uuid; in problem_key_build()
86 problem_lookup_uuid_exact(const char *uuid) in problem_lookup_uuid_exact() argument
90 key = problem_key_build(uuid); in problem_lookup_uuid_exact()
92 DEBUGMSGTL((MODNAME_STR, "lookup_exact for uuid %s\n", uuid)); in problem_lookup_uuid_exact()
99 problem_lookup_uuid_next(const char *uuid) in problem_lookup_uuid_next() argument
104 key = problem_key_build(uuid); in problem_lookup_uuid_next()
106 DEBUGMSGTL((MODNAME_STR, "lookup_next for uuid %s\n", uuid)); in problem_lookup_uuid_next()
477 char *uuid = ""; in sunFmProblemTable_nextpr() local
488 ASN_OCTET_STR, (const uchar_t *)uuid, 0); in sunFmProblemTable_nextpr()
513 uuid = alloca(table_info->indexes->val_len + 1); in sunFmProblemTable_nextpr()
514 (void) strlcpy(uuid, in sunFmProblemTable_nextpr()
517 ++uuid[table_info->indexes->val_len - 1]; in sunFmProblemTable_nextpr()
524 if ((data = problem_lookup_uuid_next(uuid)) == NULL) { in sunFmProblemTable_nextpr()
526 "%s; trying next column\n", uuid)); in sunFmProblemTable_nextpr()
568 char *uuid; in sunFmProblemTable_pr() local
572 uuid = alloca(table_info->indexes->val_len + 1); in sunFmProblemTable_pr()
573 (void) strlcpy(uuid, (const char *)table_info->indexes->val.string, in sunFmProblemTable_pr()
576 return (problem_lookup_uuid_exact(uuid)); in sunFmProblemTable_pr()