Home
last modified time | relevance | path

Searched refs:group (Results 151 – 175 of 2471) sorted by relevance

12345678910>>...99

/openbmc/phosphor-dbus-monitor/src/test/yaml/pathgentest/
H A Dgroupone.yaml4 - name: test path group
5 class: group
6 group: path
17 - name: test path group 2
18 class: group
19 group: path
H A Dgrouptwo.yaml6 - name: test path group
7 class: group
8 group: path
19 - name: test path group 2
20 class: group
21 group: path
/openbmc/linux/drivers/iio/
H A Dindustrialio-sw-trigger.c59 t->group = configfs_register_default_group(iio_triggers_group, t->name, in iio_register_sw_trigger_type()
61 if (IS_ERR(t->group)) { in iio_register_sw_trigger_type()
65 ret = PTR_ERR(t->group); in iio_register_sw_trigger_type()
82 configfs_unregister_default_group(t->group); in iio_unregister_sw_trigger_type()
132 static struct config_group *trigger_make_group(struct config_group *group, in trigger_make_group() argument
137 t = iio_sw_trigger_create(group->cg_item.ci_name, name); in trigger_make_group()
141 config_item_set_name(&t->group.cg_item, "%s", name); in trigger_make_group()
143 return &t->group; in trigger_make_group()
146 static void trigger_drop_group(struct config_group *group, in trigger_drop_group() argument
H A Dindustrialio-sw-device.c59 d->group = configfs_register_default_group(iio_devices_group, d->name, in iio_register_sw_device_type()
61 if (IS_ERR(d->group)) in iio_register_sw_device_type()
62 ret = PTR_ERR(d->group); in iio_register_sw_device_type()
78 configfs_unregister_default_group(dt->group); in iio_unregister_sw_device_type()
128 static struct config_group *device_make_group(struct config_group *group, in device_make_group() argument
133 d = iio_sw_device_create(group->cg_item.ci_name, name); in device_make_group()
137 config_item_set_name(&d->group.cg_item, "%s", name); in device_make_group()
139 return &d->group; in device_make_group()
142 static void device_drop_group(struct config_group *group, in device_drop_group() argument
/openbmc/linux/kernel/
H A Duid16.c23 SYSCALL_DEFINE3(chown16, const char __user *, filename, old_uid_t, user, old_gid_t, group) in SYSCALL_DEFINE3() argument
25 return ksys_chown(filename, low2highuid(user), low2highgid(group)); in SYSCALL_DEFINE3()
30 return ksys_lchown(filename, low2highuid(user), low2highgid(group)); in SYSCALL_DEFINE3()
33 SYSCALL_DEFINE3(fchown16, unsigned int, fd, old_uid_t, user, old_gid_t, group) in SYSCALL_DEFINE3() argument
35 return ksys_fchown(fd, low2highuid(user), low2highgid(group)); in SYSCALL_DEFINE3()
119 old_gid_t group; in groups16_to_user() local
124 group = high2lowgid(from_kgid_munged(user_ns, kgid)); in groups16_to_user()
125 if (put_user(group, grouplist+i)) in groups16_to_user()
137 old_gid_t group; in groups16_from_user() local
141 if (get_user(group, grouplist+i)) in groups16_from_user()
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dmonitordisk.py20 return int(unitG.group(1)) * (1024 ** 3)
23 return int(unitM.group(1)) * (1024 ** 2)
26 return int(unitK.group(1)) * 1024
29 return int(unitN.group(1))
78 action = pathSpaceInodeRe.group(1)
88 path = os.path.realpath(pathSpaceInodeRe.group(2))
95 minSpace = pathSpaceInodeRe.group(3)
105 minInode = pathSpaceInodeRe.group(4)
109 printErr("Invalid inode value in BB_DISKMON_DIRS: %s" % pathSpaceInodeRe.group(4))
144 intervalSpace = intervalRe.group(1)
[all …]
/openbmc/openbmc/meta-ibm/recipes-phosphor/dbus/snmp-policy/
H A Dsnmp-config.yaml1 - name: errorlog path group
2 class: group
3 group: path
11 paths: errorlog path group
17 paths: errorlog path group
/openbmc/openbmc/meta-ieisystem/meta-fp5280g3/recipes-phosphor/dbus/events-policy/
H A Dconfig.yaml1 - name: errorlog path group
2 class: group
3 group: path
11 paths: errorlog path group
17 paths: errorlog path group
/openbmc/linux/drivers/gpu/drm/renesas/rcar-du/
H A Drcar_du_plane.c106 if (plane->group->index != 0) in rcar_du_plane_hwalloc()
155 plane->group->index, plane - plane->group->planes); in rcar_du_atomic_check_planes()
227 __func__, plane->group->index, in rcar_du_atomic_check_planes()
228 plane - plane->group->planes); in rcar_du_atomic_check_planes()
237 __func__, plane->group->index, in rcar_du_atomic_check_planes()
238 plane - plane->group->planes, in rcar_du_atomic_check_planes()
266 plane->group->index, plane - plane->group->planes); in rcar_du_atomic_check_planes()
283 ? plane->group->dptsr_planes in rcar_du_atomic_check_planes()
284 : ~plane->group->dptsr_planes; in rcar_du_atomic_check_planes()
307 __func__, plane->group->index, in rcar_du_atomic_check_planes()
[all …]
/openbmc/linux/fs/ext4/
H A Dmballoc.c1098 return group; in next_linear_group()
1104 return group + 1 >= ngroups ? 0 : group + 1; in next_linear_group()
1126 *group = next_linear_group(ac, *group, ngroups); in ext4_mb_choose_next_group()
2755 group = 0; in ext4_mb_prefetch()
2758 return group; in ext4_mb_prefetch()
2780 if (!group) in ext4_mb_prefetch_fini()
2782 group--; in ext4_mb_prefetch_fini()
3035 group--; in ext4_mb_seq_groups_show()
6137 group = 0; in ext4_mb_new_blocks_simple()
7048 ret, group); in ext4_trim_all_free()
[all …]
/openbmc/phosphor-fan-presence/docs/control/
H A Devents.md89 interface on the members of this group.
94 property on the members of this group.
137 D-Bus interface and property specified in the group definition for each group
142 interface specified in the group definition for each group member. When the
147 D-Bus interface specified in the group definition for each group member. When
472 "group": "power save",
499 - "condition_group": The group name
527 group is missing. Once all services are functional and providing all the group
545 with the 'fan inventory' group is lost.
566 one or more members in its configured group have a group property value of
[all …]
H A Dgroups.md3 This file contains an array of group definitions. In this usage, a group refers
4 to a group of D-Bus objects that all of the same D-Bus path and interface, and
25 An array of the D-Bus object paths that are in the group. Required.
29 The group name. This is how the group is referenced in events.json. Required.
34 of the group must be hosted by the same service for this to be used. This
/openbmc/openbmc/meta-facebook/meta-yosemite4/recipes-phosphor/dbus/power-saving-policy/
H A Dnic-4.yaml1 - name: nic 4 current host state path group
2 class: group
3 group: path
11 class: group
12 group: property
22 paths: nic 4 current host state path group
29 paths: nic 4 current host state path group
36 paths: nic 4 current host state path group
47 paths: nic 4 current host state path group
H A Dnic-2.yaml1 - name: nic 2 current host state path group
2 class: group
3 group: path
11 class: group
12 group: property
22 paths: nic 2 current host state path group
29 paths: nic 2 current host state path group
36 paths: nic 2 current host state path group
47 paths: nic 2 current host state path group
H A Dnic-1.yaml1 - name: nic 1 current host state path group
2 class: group
3 group: path
11 class: group
12 group: property
22 paths: nic 1 current host state path group
29 paths: nic 1 current host state path group
36 paths: nic 1 current host state path group
47 paths: nic 1 current host state path group
H A Dnic-3.yaml1 - name: nic 3 current host state path group
2 class: group
3 group: path
11 class: group
12 group: property
22 paths: nic 3 current host state path group
29 paths: nic 3 current host state path group
36 paths: nic 3 current host state path group
47 paths: nic 3 current host state path group
/openbmc/linux/drivers/pinctrl/mediatek/
H A Dpinctrl-mtmips.c54 unsigned int group) in mtmips_get_group_name() argument
58 return (group >= p->group_count) ? NULL : p->group_names[group]; in mtmips_get_group_name()
62 unsigned int group, in mtmips_get_group_pins() argument
68 if (group >= p->group_count) in mtmips_get_group_pins()
71 *pins = p->groups[group].func[0].pins; in mtmips_get_group_pins()
127 if (p->groups[group].enabled) { in mtmips_pmx_group_enable()
129 p->groups[group].name); in mtmips_pmx_group_enable()
133 p->groups[group].enabled = 1; in mtmips_pmx_group_enable()
136 shift = p->groups[group].shift; in mtmips_pmx_group_enable()
142 mode &= ~(p->groups[group].mask << shift); in mtmips_pmx_group_enable()
[all …]
/openbmc/u-boot/tools/patman/
H A Dcheckpatch.py95 result.errors = int(match.group(1))
96 result.warnings = int(match.group(2))
98 result.checks = int(match.group(3))
99 result.lines = int(match.group(4))
101 result.lines = int(match.group(3))
111 item['msg'] = err_match.group(1)
114 item['msg'] = warn_match.group(1)
117 item['msg'] = check_match.group(1)
120 item['file'] = file_match.group(1)
121 item['line'] = int(file_match.group(2))
/openbmc/qemu/scripts/tracetool/backend/
H A Ddtrace.py37 def generate_h_begin(events, group): argument
38 if group == "root":
41 header = "trace-dtrace-%s.h" % group
64 def generate_h(event, group): argument
70 def generate_h_backend_dstate(event, group): argument
/openbmc/phosphor-dbus-monitor/src/test/yaml/interfaceaddtest/
H A Done.yaml4 - name: errorlog path group
5 class: group
6 group: path
15 paths: errorlog path group
21 paths: errorlog path group
/openbmc/openbmc/poky/meta/recipes-support/libevent/libevent/
H A D0004-test-retriable-tests-are-marked-failed-only-when-all-a.patch21 @@ -310,7 +310,8 @@ testcase_run_forked_(const struct testgroup_t *group,
24 testcase_run_one(const struct testgroup_t *group,
31 @@ -348,7 +349,7 @@ testcase_run_one(const struct testgroup_t *group,
41 struct testgroup_t *group = &groups[i];
42 for (j = 0; group->cases[j].name; ++j) {
43 struct testcase_t *testcase = &group->cases[j];
52 - test_ret_err = testcase_run_one(group, testcase);
53 + test_ret_err = testcase_run_one(group, testcase, test_attempts);
73 /** Run a single testcase in a single group. */
/openbmc/qemu/target/hexagon/
H A Dgen_printinsn.py30 str = m.group(1)
31 str += ":".join(["%d"] * len(m.group(2)))
32 str += m.group(3)
33 if ("S" in m.group(1)) and (len(m.group(2)) == 1):
35 elif ("C" in m.group(1)) and (len(m.group(2)) == 1):
81 if am and len(am.group(0)) == me - ms:
111 if m.group(1).isupper():
/openbmc/linux/tools/testing/selftests/net/
H A Dtest_vxlan_vnifiltering.sh256 if [[ -n "$group" && "$group" != "null" ]]; then
289 src_vni $tid vni $tid dst $group self
295 if [ -n "$group" ]; then
297 bridge -netns hv-$hvid vni add dev $vxlandev vni $tid group $group
327 group="239.1.1.101"
440 group="239.1.1.100"
449 setup-vm 1 11 1 10-v4-$hv1addr1-$group-vnifilter,20-v4-$hv1addr1-$group-vnifilter 1
452 setup-vm 2 12 1 10-v4-$hv2addr1-$group-vnifilter,20-v4-$hv2addr1-$group-vnifilter 1
464 group="239.1.1.100"
473 setup-vm 1 11 1 10-v4-$hv1addr1-$group-vnifilterg,20-v4-$hv1addr1-$group-vnifilterg 1
[all …]
/openbmc/linux/Documentation/devicetree/bindings/pinctrl/
H A Dfsl,mxs-pinctrl.txt18 a group of pins, and only affects those parameters that are explicitly listed.
26 One is to set up a group of pins for a function, both mux selection and pin
29 different configuration than what is defined in group node. The binding
32 On mxs, there is no hardware pin group. The pin group in this binding only
33 means a group of pins put together for particular peripheral to work in
35 group node should include all the pins needed for one function rather than
36 having these pins defined in several group nodes. It also means each of
37 "pinctrl-*" phandle in client device node should only have one group node
39 there to adjust configurations for some pins in the group.
49 This integer with mux selection packed is used as an entity by both group
[all …]
/openbmc/linux/Documentation/trace/postprocess/
H A Ddecode_msr.py13 msrs[int(m.group(2), 16)] = m.group(1)
25 num = int(m.group(2), 16)
34 j = j.replace(" " + m.group(2), " " + r + "(" + m.group(2) + ")")

12345678910>>...99