Home
last modified time | relevance | path

Searched refs:id_str (Results 1 – 8 of 8) sorted by relevance

/Linux-v5.4/drivers/mtd/lpddr/
Dqinfo_probe.c44 static long lpddr_get_qinforec_pos(struct map_info *map, char *id_str) in lpddr_get_qinforec_pos() argument
52 if (strcmp(id_str, qinfo_array[i].id_str) == 0) { in lpddr_get_qinforec_pos()
63 static uint16_t lpddr_info_query(struct map_info *map, char *id_str) in lpddr_info_query() argument
67 unsigned long adr = lpddr_get_qinforec_pos(map, id_str); in lpddr_info_query()
/Linux-v5.4/fs/nfs/
Dnfs4idmap.c352 char id_str[NFS_UINT_MAXLEN]; in nfs_idmap_lookup_name() local
356 id_len = nfs_map_numeric_to_string(id, id_str, sizeof(id_str)); in nfs_idmap_lookup_name()
357 ret = nfs_idmap_get_key(id_str, id_len, type, buf, buflen, idmap); in nfs_idmap_lookup_name()
367 char id_str[NFS_UINT_MAXLEN]; in nfs_idmap_lookup_id() local
372 data_size = nfs_idmap_get_key(name, namelen, type, id_str, NFS_UINT_MAXLEN, idmap); in nfs_idmap_lookup_id()
376 ret = kstrtol(id_str, 10, &id_long); in nfs_idmap_lookup_id()
636 char id_str[NFS_UINT_MAXLEN]; in nfs_idmap_read_and_verify_message() local
648 len = 1 + nfs_map_numeric_to_string(im->im_id, id_str, in nfs_idmap_read_and_verify_message()
649 sizeof(id_str)); in nfs_idmap_read_and_verify_message()
650 ret = nfs_idmap_instantiate(key, authkey, id_str, len); in nfs_idmap_read_and_verify_message()
/Linux-v5.4/drivers/xen/xenbus/
Dxenbus_xs.c536 char *id_str; in xenbus_transaction_start() local
538 id_str = xs_single(XBT_NIL, XS_TRANSACTION_START, "", NULL); in xenbus_transaction_start()
539 if (IS_ERR(id_str)) in xenbus_transaction_start()
540 return PTR_ERR(id_str); in xenbus_transaction_start()
542 t->id = simple_strtoul(id_str, NULL, 0); in xenbus_transaction_start()
543 kfree(id_str); in xenbus_transaction_start()
/Linux-v5.4/include/linux/mtd/
Dqinfo.h40 char *id_str; member
/Linux-v5.4/drivers/input/touchscreen/
Dgoodix.c657 char id_str[5]; in goodix_read_version() local
665 memcpy(id_str, buf, 4); in goodix_read_version()
666 id_str[4] = 0; in goodix_read_version()
667 if (kstrtou16(id_str, 10, &ts->id)) in goodix_read_version()
/Linux-v5.4/tools/perf/util/
Dstat.c87 static const char *id_str[PERF_STAT_EVSEL_ID__MAX] = { variable
111 if (!strcmp(perf_evsel__name(evsel), id_str[i])) { in perf_stat_evsel_id_init()
/Linux-v5.4/drivers/scsi/device_handler/
Dscsi_dh_alua.c178 static struct alua_port_group *alua_find_get_pg(char *id_str, size_t id_size, in alua_find_get_pg() argument
183 if (!id_str || !id_size || !strlen(id_str)) in alua_find_get_pg()
191 if (strncmp(pg->device_id_str, id_str, id_size)) in alua_find_get_pg()
/Linux-v5.4/drivers/block/
Dvirtio_blk.c362 static int virtblk_get_id(struct gendisk *disk, char *id_str) in virtblk_get_id() argument
373 err = blk_rq_map_kern(q, req, id_str, VIRTIO_BLK_ID_BYTES, GFP_KERNEL); in virtblk_get_id()