HomeSort by relevance Sort by last modified time
    Searched refs:groups (Results 401 - 425 of 1042) sorted by null

<<11121314151617181920>>

  /external/autotest/server/cros/
sonic_extension_downloader.py 50 return codebase_match.groups()[0]
  /external/chromium-trace/catapult/firefighter/bin/
packaging.py 93 flags=re.MULTILINE).groups()[0]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/fps/
connection.py 57 def requires(*groups):
63 if 1 != len(filter(hasgroup, groups)):
64 message = ' OR '.join(['+'.join(g) for g in groups])
69 message = ' OR '.join(['+'.join(g) for g in groups])
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mashups/
server.py 171 return self._reservation.groups
175 groups = property(getGroups, setReadOnly, None, variable in class:Server
176 'The Security Groups controlling access to this server')
216 groups = ec2.get_all_security_groups(groupnames=[str(self.security_group)])
237 security_groups = groups,
  /external/dbus/dbus/
dbus-userdb.h 48 DBusHashTable *groups; /**< Groups in the database by GID */ member in struct:DBusUserDatabase
50 DBusHashTable *groups_by_name; /**< Groups in the database by name */
  /external/elfutils/libasm/
libasmP.h 168 /* List of section groups. */
169 struct AsmScnGrp *groups; member in struct:AsmCtx
170 /* Number of section groups. */
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
StreamBuilderTest.java 102 @Test(dataProvider = "sizes", groups = { "serialization-hostile" })
164 @Test(dataProvider = "sizes", groups = { "serialization-hostile" })
226 @Test(dataProvider = "sizes", groups = { "serialization-hostile" })
287 @Test(dataProvider = "sizes", groups = { "serialization-hostile" })
CollectionAndMapModifyStreamTest.java 144 @Test(dataProvider = "maps", groups = { "serialization-hostile" })
149 @Test(dataProvider = "maps", groups = { "serialization-hostile" })
  /system/extras/tests/net_test/
net_test.py 213 groups = []
215 groups.append(unformatted[i:i+4])
216 formatted = ":".join(groups)
388 _, _, uid, _, _, refcnt, _, extra) = regexp.match(line).groups()
  /frameworks/base/services/core/java/com/android/server/pm/
PackageManagerShellCommand.java 415 case "permission-groups":
640 boolean groups = false;
654 groups = true;
657 groups = true;
671 if (groups) {
687 doListPermissions(groupList, groups, labels, summary,
693 doListPermissions(groupList, groups, labels, summary,
700 doListPermissions(groupList, groups, labels, summary,
706 doListPermissions(groupList, groups, labels, summary,
    [all...]
  /external/autotest/client/site_tests/security_SandboxedServices/
security_SandboxedServices.py 54 opt_list.append(m.groups()[0])
56 if m.groups()[1]:
  /external/chromium-trace/catapult/third_party/flot/
CONTRIBUTING.md 10 [forum](http://groups.google.com/group/flot-graphs) first, and confirm that
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/
test_networkinterface.py 128 groups=['group_id1', 'group_id2'],
137 groups=['group_id1', 'group_id2'],
  /external/libnl/lib/
socket.c 277 * Join groups
281 * Joins the specified groups using the modern socket option which
283 * almost arbitary number of groups without limitation. The list
284 * of groups has to be terminated by 0 (%NFNLGRP_NONE).
325 * Leave groups
329 * Leaves the specified groups using the modern socket option
330 * which is available since kernel version 2.6.14. The list of groups
370 * Join multicast groups (deprecated)
372 * @arg groups Bitmask of groups to join
    [all...]
  /external/markdown/markdown/
treeprocessors.py 222 return data, True, len(leftData) + match.span(len(match.groups()))[0]
240 placeholder, match.groups()[-1]), True, 0
  /external/regex-re2/re2/testing/
unicode_test.py 141 for g in self.groups:
147 self.groups = unicode.CaseGroups(unicode_dir=_UNICODE_DIR)
  /external/tpm2/generator/
tpm_table.py 166 self._title_type = m.groups()[0][1:-1]
176 alg_type = m.groups()[0][1:-1].strip()
600 alg_type = m.groups()[0]
719 value, run_time_size, bounds = vm.groups()
731 selector, value = vm.groups()
735 value, bounds = vm.groups()
777 alg_suffix = m.groups()[0]
803 value = '%s' % rm.groups()[0]
  /libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
DoubleNodeTest.java 141 @Test(dataProvider = "nodes", groups = { "serialization-hostile" })
160 @Test(dataProvider = "nodes", groups={ "serialization-hostile" })
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/handheld/
ManagePermissionsFragment.java 134 List<PermissionGroup> groups = mPermissions.getGroups(); local
144 for (PermissionGroup group : groups) {
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/television/
ManagePermissionsFragment.java 134 List<PermissionGroup> groups = mPermissions.getGroups(); local
140 for (PermissionGroup group : groups) {
  /prebuilts/go/darwin-x86/src/os/
proc.go 39 // Getgroups returns a list of the numeric ids of groups that the caller belongs to.
  /prebuilts/go/darwin-x86/src/syscall/
exec_bsd.go 141 // User and groups
143 ngroups := uintptr(len(cred.Groups))
144 groups := uintptr(0)
146 groups = uintptr(unsafe.Pointer(&cred.Groups[0]))
148 _, _, err1 = RawSyscall(SYS_SETGROUPS, ngroups, groups, 0)
exec_solaris.go 138 // User and groups
140 ngroups := uintptr(len(cred.Groups))
141 groups := uintptr(0)
143 groups = uintptr(unsafe.Pointer(&cred.Groups[0]))
145 err1 = setgroups1(ngroups, groups)
  /prebuilts/go/linux-x86/src/os/
proc.go 39 // Getgroups returns a list of the numeric ids of groups that the caller belongs to.
  /prebuilts/go/linux-x86/src/syscall/
exec_bsd.go 141 // User and groups
143 ngroups := uintptr(len(cred.Groups))
144 groups := uintptr(0)
146 groups = uintptr(unsafe.Pointer(&cred.Groups[0]))
148 _, _, err1 = RawSyscall(SYS_SETGROUPS, ngroups, groups, 0)

Completed in 1455 milliseconds

<<11121314151617181920>>