Home
last modified time | relevance | path

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

12345678

/development/ndk/platforms/android-21/include/
Dgrp.h46 struct group { struct
54 struct group *getgrgid(gid_t);
55 struct group *getgrnam(const char *);
57 struct group *getgrent(void);
60 int getgrgid_r(gid_t, struct group *, char *,
61 size_t, struct group **);
62 int getgrnam_r(const char *, struct group *, char *,
63 size_t, struct group **);
66 int getgrouplist (const char *user, gid_t group,
69 int initgroups (const char *user, gid_t group);
/development/ndk/platforms/android-3/include/
Dgrp.h50 struct group { struct
58 struct group *getgrgid(gid_t);
59 struct group *getgrnam(const char *);
63 struct group *getgrent(void);
66 int getgrgid_r(gid_t, struct group *, char *,
67 size_t, struct group **);
68 int getgrnam_r(const char *, struct group *, char *,
69 size_t, struct group **);
78 int getgrouplist (const char *user, gid_t group,
81 int initgroups (const char *user, gid_t group);
/development/scripts/
Dstack_core.py189 return {"frame": match.group("frame"),
190 "offset": match.group("offset"),
191 "so_offset": match.group("so_offset"),
192 "dso": match.group("dso"),
193 "symbol_present": bool(match.group("symbolpresent")),
194 "symbol_name": match.group("symbol")}
197 return {"frame": match.group("frame"),
198 "offset": match.group("offset"),
200 "dso": match.group("dso"),
225 name = match.group(1)
[all …]
Dgdbclient.py39 group = parser.add_argument_group(title="attach target")
40 group = group.add_mutually_exclusive_group(required=True)
41 group.add_argument(
44 group.add_argument(
47 group.add_argument(
Dsymbol.py293 current_symbol_addr = int(components.group(1), 16)
294 current_symbol = components.group(2)
299 current_symbol = components.group(1)
300 offset = components.group(2)
308 addr = components.group(1)
346 abi = toolchain_match.group(1)
368 ARCH = abi_match.group(1)
373 if len(trace_match.group(1)) == 16:
/development/cmds/monkey/src/com/android/commands/monkey/
DMonkeyPermissionUtil.java108 return pi.group != null && pi.protectionLevel == PermissionInfo.PROTECTION_DANGEROUS in shouldTargetPermission()
110 && isModernPermissionGroup(pi.group); in shouldTargetPermission()
162 String group = pi.group; in dump() local
163 if (group != null) { in dump()
164 if (group.startsWith(PERMISSION_GROUP_PREFIX)) { in dump()
165 group = group.substring(PERMISSION_GROUP_PREFIX.length()); in dump()
168 System.out.println(String.format("// Permission: %s [%s]", name, group)); in dump()
/development/testrunner/
Dam_instrument_parser.py94 key = re_result.search(line).group(1).strip(string.whitespace)
97 val = re_result.search(line).group(2).strip(string.whitespace)
107 val = re_code.search(line).group(1).strip(string.whitespace)
146 key, value = (field.group('key').strip(), field.group('value').strip())
155 self._status_code = int(re_status_code.group('status_code'))
Dandroid_build.py86 host_os = re.search("HOST_OS=(\w+)", config).group(1)
87 host_arch = re.search("HOST_ARCH=(\w+)", config).group(1)
/development/python-packages/gdbrunner/
D__init__.py36 group = self.add_argument_group(title="device selection")
37 group = group.add_mutually_exclusive_group()
38 group.add_argument(
41 group.add_argument(
44 group.add_argument(
47 group.add_argument(
/development/tools/checkstyle/gitlint/
Dutils.py37 yield match.group(groups[0])
40 yield tuple(matched_groups.get(group) for group in groups)
/development/ndk/platforms/android-21/include/linux/
Digmp.h29 __be32 group; member
62 __be32 group; member
/development/samples/Wiktionary/src/com/example/android/wiktionary/
DWordWidget.java108 String wordTitle = matcher.group(1); in buildUpdate()
110 views.setTextViewText(R.id.word_type, matcher.group(2)); in buildUpdate()
111 views.setTextViewText(R.id.definition, matcher.group(3).trim()); in buildUpdate()
/development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
DWordWidget.java99 String wordTitle = matcher.group(1); in buildUpdate()
101 updateViews.setTextViewText(R.id.word_type, matcher.group(2)); in buildUpdate()
102 updateViews.setTextViewText(R.id.definition, matcher.group(3).trim()); in buildUpdate()
/development/ndk/platforms/android-21/include/linux/netfilter/
Dxt_NFLOG.h29 __u16 group; member
/development/samples/browseable/RevealEffectBasic/
D_index.jd3 sample.group=UI
/development/samples/browseable/ClippingBasic/
D_index.jd3 sample.group=UI
/development/samples/browseable/CustomNotifications/
D_index.jd3 sample.group=Notification
/development/samples/browseable/MediaRouter/
D_index.jd3 sample.group=Media
/development/ndk/platforms/android-21/include/linux/netfilter_bridge/
Debt_nflog.h31 __u16 group; member
/development/samples/browseable/AlwaysOn/
D_index.jd3 sample.group=Wearable
/development/samples/browseable/Camera2Video/
D_index.jd3 sample.group=Media
/development/samples/browseable/GridViewPager/
D_index.jd3 sample.group=Wearable
/development/samples/browseable/CustomTransition/
D_index.jd3 sample.group=UI
/development/samples/browseable/JumpingJack/
D_index.jd3 sample.group=Wearable
/development/samples/browseable/WatchViewStub/
D_index.jd3 sample.group=Wearable

12345678