Searched refs:idstr (Results 1 – 7 of 7) sorted by relevance
/Linux-v5.15/drivers/acpi/ |
D | acpi_pnp.c | 318 static bool matching_id(const char *idstr, const char *list_id) in matching_id() argument 322 if (strlen(idstr) != strlen(list_id)) in matching_id() 325 if (memcmp(idstr, list_id, 3)) in matching_id() 329 char c = toupper(idstr[i]); in matching_id() 338 static bool acpi_pnp_match(const char *idstr, const struct acpi_device_id **matchid) in acpi_pnp_match() argument 343 if (matching_id(idstr, (char *)devid->id)) { in acpi_pnp_match()
|
D | scan.c | 1877 const char *idstr, in acpi_scan_handler_matching() argument 1883 return handler->match(idstr, matchid); in acpi_scan_handler_matching() 1886 if (!strcmp((char *)devid->id, idstr)) { in acpi_scan_handler_matching() 1896 static struct acpi_scan_handler *acpi_scan_match_handler(const char *idstr, in acpi_scan_match_handler() argument 1902 if (acpi_scan_handler_matching(handler, idstr, matchid)) in acpi_scan_match_handler()
|
/Linux-v5.15/fs/nfsd/ |
D | nfs4idmap.c | 136 char idstr[11]; in idtoname_request() local 139 snprintf(idstr, sizeof(idstr), "%u", ent->id); in idtoname_request() 141 qword_add(bpp, blen, idstr); in idtoname_request()
|
/Linux-v5.15/tools/power/pm-graph/ |
D | bootgraph.py | 216 idstr = '' variable in Data 225 self.idstr = 'a' 238 devid = '%s%d' % (self.idstr, self.html_device_id)
|
D | sleepgraph.py | 1411 self.idstr = idchar[num] 1864 devid = '%s%d' % (self.idstr, self.html_device_id)
|
/Linux-v5.15/include/acpi/ |
D | acpi_bus.h | 126 bool (*match)(const char *idstr, const struct acpi_device_id **matchid);
|
/Linux-v5.15/drivers/nvme/host/ |
D | core.c | 2475 static bool string_matches(const char *idstr, const char *match, size_t len) in string_matches() argument 2485 if (memcmp(idstr, match, matchlen)) in string_matches() 2489 if (idstr[matchlen] != ' ') in string_matches()
|