Lines Matching refs:rwm
288 char rwm[4]; in property_get_device_allow() local
291 rwm[k++] = 'r'; in property_get_device_allow()
293 rwm[k++] = 'w'; in property_get_device_allow()
295 rwm[k++] = 'm'; in property_get_device_allow()
297 rwm[k] = 0; in property_get_device_allow()
299 r = sd_bus_message_append(reply, "(ss)", a->path, rwm); in property_get_device_allow()
1636 const char *path, *rwm; in bus_cgroup_set_property() local
1643 while ((r = sd_bus_message_read(message, "(ss)", &path, &rwm)) > 0) { in bus_cgroup_set_property()
1648 if (isempty(rwm)) in bus_cgroup_set_property()
1649 rwm = "rwm"; in bus_cgroup_set_property()
1650 else if (!in_charset(rwm, "rwm")) in bus_cgroup_set_property()
1676 a->r = strchr(rwm, 'r'); in bus_cgroup_set_property()
1677 a->w = strchr(rwm, 'w'); in bus_cgroup_set_property()
1678 a->m = strchr(rwm, 'm'); in bus_cgroup_set_property()