Home
last modified time | relevance | path

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

/Linux-v4.19/drivers/mtd/lpddr/
Dqinfo_probe.c58 static long lpddr_get_qinforec_pos(struct map_info *map, char *id_str) in lpddr_get_qinforec_pos() argument
66 if (strcmp(id_str, qinfo_array[i].id_str) == 0) { in lpddr_get_qinforec_pos()
77 static uint16_t lpddr_info_query(struct map_info *map, char *id_str) in lpddr_info_query() argument
81 unsigned long adr = lpddr_get_qinforec_pos(map, id_str); in lpddr_info_query()
/Linux-v4.19/fs/nfs/
Dnfs4idmap.c342 char id_str[NFS_UINT_MAXLEN]; in nfs_idmap_lookup_name() local
346 id_len = nfs_map_numeric_to_string(id, id_str, sizeof(id_str)); in nfs_idmap_lookup_name()
347 ret = nfs_idmap_get_key(id_str, id_len, type, buf, buflen, idmap); in nfs_idmap_lookup_name()
357 char id_str[NFS_UINT_MAXLEN]; in nfs_idmap_lookup_id() local
362 data_size = nfs_idmap_get_key(name, namelen, type, id_str, NFS_UINT_MAXLEN, idmap); in nfs_idmap_lookup_id()
366 ret = kstrtol(id_str, 10, &id_long); in nfs_idmap_lookup_id()
622 char id_str[NFS_UINT_MAXLEN]; in nfs_idmap_read_and_verify_message() local
634 len = 1 + nfs_map_numeric_to_string(im->im_id, id_str, in nfs_idmap_read_and_verify_message()
635 sizeof(id_str)); in nfs_idmap_read_and_verify_message()
636 ret = nfs_idmap_instantiate(key, authkey, id_str, len); in nfs_idmap_read_and_verify_message()
/Linux-v4.19/drivers/xen/xenbus/
Dxenbus_xs.c533 char *id_str; in xenbus_transaction_start() local
535 id_str = xs_single(XBT_NIL, XS_TRANSACTION_START, "", NULL); in xenbus_transaction_start()
536 if (IS_ERR(id_str)) in xenbus_transaction_start()
537 return PTR_ERR(id_str); in xenbus_transaction_start()
539 t->id = simple_strtoul(id_str, NULL, 0); in xenbus_transaction_start()
540 kfree(id_str); in xenbus_transaction_start()
/Linux-v4.19/include/linux/mtd/
Dqinfo.h40 char *id_str; member
/Linux-v4.19/drivers/input/touchscreen/
Dgoodix.c604 char id_str[5]; in goodix_read_version() local
612 memcpy(id_str, buf, 4); in goodix_read_version()
613 id_str[4] = 0; in goodix_read_version()
614 if (kstrtou16(id_str, 10, &ts->id)) in goodix_read_version()
/Linux-v4.19/tools/perf/util/
Dstat.c79 static const char *id_str[PERF_STAT_EVSEL_ID__MAX] = { variable
103 if (!strcmp(perf_evsel__name(evsel), id_str[i])) { in perf_stat_evsel_id_init()
/Linux-v4.19/drivers/scsi/device_handler/
Dscsi_dh_alua.c191 static struct alua_port_group *alua_find_get_pg(char *id_str, size_t id_size, in alua_find_get_pg() argument
196 if (!id_str || !id_size || !strlen(id_str)) in alua_find_get_pg()
204 if (strncmp(pg->device_id_str, id_str, id_size)) in alua_find_get_pg()
/Linux-v4.19/drivers/block/
Dvirtio_blk.c294 static int virtblk_get_id(struct gendisk *disk, char *id_str) in virtblk_get_id() argument
305 err = blk_rq_map_kern(q, req, id_str, VIRTIO_BLK_ID_BYTES, GFP_KERNEL); in virtblk_get_id()