Home
last modified time | relevance | path

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

/linux/drivers/mtd/lpddr/
H A 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/fs/nfs/
H A Dnfs4idmap.c350 char id_str[NFS_UINT_MAXLEN]; in nfs_idmap_lookup_name() local
354 id_len = nfs_map_numeric_to_string(id, id_str, sizeof(id_str)); in nfs_idmap_lookup_name()
355 ret = nfs_idmap_get_key(id_str, id_len, type, buf, buflen, idmap); in nfs_idmap_lookup_name()
365 char id_str[NFS_UINT_MAXLEN]; in nfs_idmap_lookup_id() local
370 data_size = nfs_idmap_get_key(name, namelen, type, id_str, NFS_UINT_MAXLEN, idmap); in nfs_idmap_lookup_id()
374 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/drivers/xen/xenbus/
H A 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/tools/bpf/bpftool/
H A Dstruct_ops.c235 static struct res do_one_id(const char *id_str, work_func func, void *data, in do_one_id() argument
245 id = strtoul(id_str, &endptr, 0); in do_one_id()
247 p_err("invalid id %s", id_str); in do_one_id()
/linux/include/linux/mtd/
H A Dqinfo.h40 char *id_str; member
/linux/fs/resctrl/
H A Dmonitor.c1700 char *dom_str, *id_str; in resctrl_parse_mbm_assignment() local
1717 id_str = strsep(&dom_str, "="); in resctrl_parse_mbm_assignment()
1720 if (id_str && *id_str == '*') { in resctrl_parse_mbm_assignment()
1726 } else if (!id_str || kstrtoul(id_str, 10, &dom_id)) { in resctrl_parse_mbm_assignment()
H A Drdtgroup.c1732 char *dom_str = NULL, *id_str; in mon_config_write() local
1745 id_str = strsep(&dom_str, "="); in mon_config_write()
1747 if (!id_str || kstrtoul(id_str, 10, &dom_id)) { in mon_config_write()
/linux/drivers/scsi/device_handler/
H A Dscsi_dh_alua.c185 static struct alua_port_group *alua_find_get_pg(char *id_str, size_t id_size, in alua_find_get_pg() argument
190 if (!id_str || !id_size || !strlen(id_str)) in alua_find_get_pg()
198 if (strncmp(pg->device_id_str, id_str, id_size)) in alua_find_get_pg()
/linux/drivers/block/
H A Dvirtio_blk.c804 static int virtblk_get_id(struct gendisk *disk, char *id_str) in virtblk_get_id() argument
821 err = blk_rq_map_kern(req, id_str, VIRTIO_BLK_ID_BYTES, GFP_KERNEL); in virtblk_get_id()