Searched refs:idstr (Results 1 - 9 of 9) sorted by relevance

/linux-master/drivers/acpi/
H A Dacpi_pnp.c316 static bool matching_id(const char *idstr, const char *list_id) argument
320 if (strlen(idstr) != strlen(list_id))
323 if (memcmp(idstr, list_id, 3))
327 char c = toupper(idstr[i]);
336 static bool acpi_pnp_match(const char *idstr, const struct acpi_device_id **matchid) argument
341 if (matching_id(idstr, (char *)devid->id)) {
H A Dscan.c1969 const char *idstr,
1975 return handler->match(idstr, matchid);
1978 if (!strcmp((char *)devid->id, idstr)) {
1988 static struct acpi_scan_handler *acpi_scan_match_handler(const char *idstr, argument
1994 if (acpi_scan_handler_matching(handler, idstr, matchid))
1968 acpi_scan_handler_matching(struct acpi_scan_handler *handler, const char *idstr, const struct acpi_device_id **matchid) argument
/linux-master/tools/perf/arch/arm64/util/
H A Dheader.c97 * Return 0 if idstr is a higher or equal to version of the same part as
99 * version of idstr will match as long as it's the same CPU type.
101 * Return 1 if the CPU type is different or the version of idstr is lower.
103 int strcmp_cpuid_str(const char *mapcpuid, const char *idstr) argument
108 u64 id = strtoull(idstr, NULL, 16);
/linux-master/fs/nfsd/
H A Dnfs4idmap.c137 char idstr[11]; local
140 snprintf(idstr, sizeof(idstr), "%u", ent->id);
142 qword_add(bpp, blen, idstr);
/linux-master/sound/usb/
H A Dmidi2.c711 char idstr[16]; local
723 snprintf(idstr, sizeof(idstr), "UMP %d", rmidi->index);
726 err = snd_ump_endpoint_new(umidi->chip->card, idstr, rmidi->index,
/linux-master/tools/power/pm-graph/
H A Dbootgraph.py218 idstr = '' variable in class:Data
227 self.idstr = 'a'
240 devid = '%s%d' % (self.idstr, self.html_device_id)
H A Dsleepgraph.py1514 self.idstr = idchar[num]
1978 devid = '%s%d' % (self.idstr, self.html_device_id)
/linux-master/include/acpi/
H A Dacpi_bus.h129 bool (*match)(const char *idstr, const struct acpi_device_id **matchid);
/linux-master/drivers/nvme/host/
H A Dcore.c2708 /* match is null-terminated but idstr is space-padded. */
2709 static bool string_matches(const char *idstr, const char *match, size_t len) argument
2719 if (memcmp(idstr, match, matchlen))
2723 if (idstr[matchlen] != ' ')

Completed in 187 milliseconds