Home
last modified time | relevance | path

Searched refs:group (Results 1 – 25 of 52) sorted by relevance

123

/build/blueprint/
Dname_interface.go55 …NewModule(ctx NamespaceContext, group ModuleGroup, module Module) (namespace Namespace, err []erro…
58 ModuleFromName(moduleName string, namespace Namespace) (group ModuleGroup, found bool)
106 func (s *SimpleNameInterface) NewModule(ctx NamespaceContext, group ModuleGroup, module Module) (na…
107 name := group.name
108 if group, present := s.modules[name]; present {
112 " %s <-- previous definition here", name, group.modules.firstModule().pos),
116 s.modules[name] = group
121 func (s *SimpleNameInterface) ModuleFromName(moduleName string, namespace Namespace) (group ModuleG…
122 group, found = s.modules[moduleName]
123 return group, found
[all …]
Dcontext_test.go631 group := &moduleGroup{
637 m.group = group
638 group.modules = append(group.modules, m)
642 group.modules = append(group.modules, nil)
653 group.modules[i] = &moduleAlias{
655 target: group.modules[m.target].moduleOrAliasTarget(),
662 return group
852 group: &moduleGroup{
856 m.group.modules = modulesOrAliases{m}
885 order += module.group.name
[all …]
Dcontext.go255 func (group *moduleGroup) moduleOrAliasByVariantName(name string) moduleOrAlias {
256 for _, module := range group.modules {
264 func (group *moduleGroup) moduleByVariantName(name string) *moduleInfo {
265 return group.moduleOrAliasByVariantName(name).module()
280 group *moduleGroup member
327 if module.group != nil {
328 return module.group.name
347 return module.group.namespace
1465 func (c *Context) prettyPrintGroupVariants(group *moduleGroup) string {
1467 for _, moduleOrAlias := range group.modules {
[all …]
/build/make/tools/fs_config/end_to_end_test/
Dconfig.fs29 group: AID_VENDOR_NEW_SERVICE
35 group: AID_SYSTEM
41 group: AID_SYSTEM
47 group: AID_SYSTEM
53 group: AID_SYSTEM
59 group: AID_SYSTEM
65 group: AID_SYSTEM
71 group: AID_SYSTEM
77 group: AID_SYSTEM
83 group: AID_SYSTEM
[all …]
/build/soong/cc/
Dtidy.go274 func objTidyModuleGroupName(module android.Module, group string, suffix string) string {
275 if group == "" {
278 return module.Name() + "_" + group + "-" + suffix
285 for group, modulesInDir := range objTidyModulesInDirGroup {
287 if group != "" {
288 groupSuffix = "_" + group
311 for group, phonyPath := range targetGroups {
312 if _, found := modulesInDirGroup[group]; !found {
313 modulesInDirGroup[group] = make(map[string]android.Paths)
315 modulesInDirGroup[group][moduleDir] = append(modulesInDirGroup[group][moduleDir], phonyPath)
[all …]
/build/make/tools/releasetools/
Dbuild_super_image.py61 def GetArgumentsForImage(partition, group, image=None): argument
65 "{}:readonly:{}:{}".format(partition, image_size, group)]
103 for group in groups:
104 group_size = info_dict["super_{}_group_size".format(group)]
106 cmd += ["--group", "{}_a:{}".format(group, group_size),
107 "--group", "{}_b:{}".format(group, group_size)]
109 cmd += ["--group", "{}:{}".format(group, group_size)]
112 info_dict["super_{}_partition_list".format(group)].strip())
120 cmd += GetArgumentsForImage(partition, group, image)
127 cmd += GetArgumentsForImage(partition + "_a", group + "_a", image)
[all …]
Dcheck_partition_sizes.py239 for group in groups:
240 if "super_{}_group_size".format(group) in info_dict and \
241 "super_{}_partition_list".format(group) in info_dict:
243 "BOARD_{}_SIZE".format(group),
244 int(info_dict["super_{}_group_size".format(group)]))
247 info_dict["super_{}_partition_list".format(group)].strip().split())
253 "super_{}_group_size".format(group), 0)) for group in groups]
Dcheck_target_files_signatures.py249 signer, key, val = m.group(1), m.group(2), m.group(3)
285 name = m.group(1)
289 self.shared_uid = m.group(2)
293 self.package = m.group(2)
Dcheck_target_files_signatures249 signer, key, val = m.group(1), m.group(2), m.group(3)
285 name = m.group(1)
289 self.shared_uid = m.group(2)
293 self.package = m.group(2)
Dfsverity_metadata_generator.py93 offset = int(m.group(1))
94 header_len = int(m.group(2))
95 size = int(m.group(3))
Dcheck_ota_package_signature.py46 assert not algorithm.group(1).startswith('ecdsa'), (
49 return algorithm.group(1).startswith('sha256')
/build/make/tools/fs_config/
DAndroid.bp157 // Generate the */etc/group text files for the target
163 …cmd: "$(location fs_config_generator.py) group --partition=system --aid-header=$(location :android…
168 out: ["group"],
173 filename: "group",
180 …cmd: "$(location fs_config_generator.py) group --partition=vendor --aid-header=$(location :android…
185 out: ["group"],
190 filename: "group",
198 …cmd: "$(location fs_config_generator.py) group --partition=odm --aid-header=$(location :android_fi…
203 out: ["group"],
208 filename: "group",
[all …]
Dfs_config_generator.py227 def __init__(self, mode, user, group, caps, path, filename): argument
239 self.group = group
247 and self.group == other.group and self.caps == other.caps \
252 self.group, self.caps,
285 cap = match.group(1)
286 value = match.group(2)
358 partition = range_match.group(1).lower()
359 value = int(range_match.group(3), 0)
679 group = config.get(section_name, 'group')
691 if not group:
[all …]
DREADME.md6 * `passwd` and `group` files for each partition
21 ### `passwd` and `group` files
23 The `passwd` and `group` files are formatted as documented in man pages passwd(5) and group(5) and
26 See `./fs_config_generator.py passwd --help` and `./fs_config_generator.py group --help` for how
/build/soong/ui/build/
Dsandbox_linux.go57 group string
74 sandboxConfig.group = "nogroup"
75 if _, err := user.LookupGroup(sandboxConfig.group); err != nil {
76 sandboxConfig.group = "nobody"
98 "-g", sandboxConfig.group,
182 "-g", sandboxConfig.group,
/build/soong/filesystem/
Dlogical_partition.go110 for _, group := range l.properties.Groups {
111 sparsePartitions(group.Partitions)
157 for _, group := range l.properties.Groups {
158 gName := proptools.String(group.Name)
162 …ctx.PropertyErrorf("groups.name", `can't use "default" as a group name. Use default_group instead`)
169 gSize := proptools.String(group.Size)
178 addPartitionsToGroup(group.Partitions, gName)
/build/soong/scripts/
Dlint_project_xml.py87 group = parser.add_argument_group('check arguments', 'later arguments override earlier ones.')
88 group.add_argument('--fatal_check', dest='checks', action=check_action('fatal'), default=[],
90 group.add_argument('--error_check', dest='checks', action=check_action('error'), default=[],
92 group.add_argument('--warning_check', dest='checks', action=check_action('warning'), default=[],
94 group.add_argument('--disable_check', dest='checks', action=check_action('ignore'), default=[],
96 group.add_argument('--disallowed_issues', dest='disallowed_issues', default=[],
Dmanifest_check.py177 lines.append(match.group(0))
178 libname = match.group(2)
179 if match.group(1) is None:
268 return match.group(1)
Dget_clang_version.py41 return match_rev.group('rev')
/build/make/tools/warn/
Dwarn_common.py329 board_name = result.group(1).split('/')[2]
333 architecture = result.group(1)
422 platform_version = result.group(0)
426 target_product = result.group(0)
430 target_variant = result.group(0)
434 build_id = result.group(0)
438 android_root = result.group(1)
523 for i, group in enumerate(warning_groups):
525 'group': group,
/build/make/tools/product_config/src/com/android/build/config/
DPosition.java81 String filename = m.group(1); in parse()
85 String lineString = m.group(2); in parse()
/build/soong/android/
Dfixture_test.go42 group := GroupFixturePreparers(preparer1, preparer2, preparer1, preparer1Then2)
44 extension := GroupFixturePreparers(group, preparer4, preparer2)
/build/make/core/
Dconfig.mk969 $(foreach group,$(call to-upper,$(BOARD_SUPER_PARTITION_GROUPS)), \
970 $(eval BOARD_$(group)_SIZE := $(strip $(BOARD_$(group)_SIZE))) \
971 $(if $(BOARD_$(group)_SIZE),,$(error BOARD_$(group)_SIZE must not be empty)) \
972 $(eval .KATI_READONLY := BOARD_$(group)_SIZE) \
973 $(eval BOARD_$(group)_PARTITION_LIST ?=) \
974 $(eval .KATI_READONLY := BOARD_$(group)_PARTITION_LIST) \
979 $(foreach group,$(call to-upper,$(BOARD_SUPER_PARTITION_GROUPS)), \
980 $(if $(filter-out $(valid_super_partition_list),$(BOARD_$(group)_PARTITION_LIST)), \
981 $(error BOARD_$(group)_PARTITION_LIST contains invalid partition name \
982 $(filter-out $(valid_super_partition_list),$(BOARD_$(group)_PARTITION_LIST)). \
[all …]
/build/make/tools/
Dcheck_elf_file.py103 curr_rev = int(match.group(1))
244 dt_needed.append(match.group(1))
249 dt_soname = match.group(1)
324 key = match.group(1)
325 value = cls._SYMBOL_ENTRY_PAREN_PATTERN.sub('', match.group(2))
/build/bazel/scripts/difftool/
Ddifftool.py211 cmd = m.group(5)
214 cmd = m.group(2)
217 cmd = m.group(1)

123