HomeSort by relevance Sort by last modified time
    Searched refs:groups (Results 76 - 100 of 1215) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/testng/src/test/java/test/tmp/
BeforeGroupTest.java 10 @BeforeGroups(groups = { "NewUser" }, value = { "NewUser" })
12 System.out.println("BEFOREGROUPS perfroming pre groups init");
Fixturable.java 6 @Configuration(beforeTest=true, groups="fixture")
  /external/testng/src/test/java/test/tmp/p2/
ServiceTest.java 8 @Test(groups = {"group1"})
  /external/ltp/testcases/kernel/syscalls/getgroups/
getgroups03.c 52 static GID_T groups[NGROUPS]; variable
87 * Scans the /etc/group file to get IDs of all the groups to which TESTUSER
91 static int readgroups(GID_T groups[NGROUPS])
104 groups[ngrps++] = grp->gr_gid;
120 if (groups[i] == g)
124 groups[ngrps++] = g;
139 * Get the IDs of all the groups of "root"
142 ngroups = readgroups(groups);
149 if (SETGROUPS(cleanup, ngroups, groups) == -1)
176 if (groups_list[i] != groups[j])
    [all...]
  /external/testng/src/test/java/test/dependent/
SD2.java 11 @Test(groups = { "one" })
31 @Test(groups = { "one" })
  /external/testng/src/test/java/test/regression/groupsordering/
Base.java 12 @BeforeGroups(value= "a", groups= "a")
18 @AfterGroups(value= "a", groups= "a")
  /external/testng/src/test/java/test/thread/
MultiThreadedDependentSampleTest.java 35 @Test(groups = "1")
41 @Test(groups = "1")
47 @Test(groups = "1")
53 @Test(groups = "2", dependsOnGroups = "1")
59 @Test(groups = "2", dependsOnGroups = "1")
65 @Test(groups = "2", dependsOnGroups = "1")
71 @Test(groups = "2", dependsOnGroups = "1")
77 @Test(groups = "2", dependsOnGroups = "1")
115 // @Test(groups = "mytest", dependsOnMethods = "g")
  /frameworks/base/tools/split-select/
Grouper.cpp 32 Vector<SortedVector<SplitDescription> > groups; local
50 groups.add();
51 groups.editTop().add(split);
57 groups.add(densityGroups[i]);
62 groups.add(abiGroups[i]);
65 return groups;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/
mount.x 85 typedef struct groupnode *groups;
88 groups gr_next;
97 groups ex_groups;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
mount.x 85 typedef struct groupnode *groups;
88 groups gr_next;
97 groups ex_groups;
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/
UserAccount.java 26 * directory, list of groups to which this user belongs, and default permissions applied to
33 * The group name applied to newly created files/directories is determined by the <code>groups</code> property.
35 * <code>groups</code> List is used. The <code>groups</code> property defaults to an empty List.
66 private List groups; field in class:UserAccount
118 return groups;
121 public void setGroups(List groups) {
122 this.groups = groups;
167 * groups set, then this method returns the <code>DEFAULT_GROUP</code>. Otherwise, this method
    [all...]
  /external/libnl/src/
nf-monitor.c 46 } groups[] = { local
58 printf("Usage: nf-monitor [<groups>]\n");
60 printf("Known groups:");
61 for (i = 0; groups[i].gr_id != NFNLGRP_NONE; i++)
62 printf(" %s", groups[i].gr_name);
70 for (i = 0; groups[i].gr_id != NFNLGRP_NONE; i++) {
71 if (strcmp(argv[idx], groups[i].gr_name))
74 err = nl_socket_add_membership(sock, groups[i].gr_id);
82 if (groups[i].gr_id == NFNLGRP_NONE)
nl-list-sockets.c 27 printf("Address Family PID Groups rmem "
33 unsigned int groups; local
36 &sk, &proto, &pid, &groups, &rmem, &wmem,
43 groups, rmem, wmem, cb, refcnt);
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/utils/
SafetyNetLogger.java 43 List<AppPermissionGroup> groups) {
46 packageInfo.packageName, groups));
49 public static void logPermissionsToggled(String packageName, List<AppPermissionGroup> groups) {
52 packageName, groups));
56 List<AppPermissionGroup> groups) {
61 int groupCount = groups.size();
63 AppPermissionGroup group = groups.get(groupNum);
  /external/iproute2/bridge/
monitor.c 79 unsigned groups = ~RTMGRP_TC; local
92 groups = 0;
95 groups = 0;
98 groups = 0;
100 groups = ~RTMGRP_TC;
112 groups |= nl_mgrp(RTNLGRP_LINK);
115 groups |= nl_mgrp(RTNLGRP_NEIGH);
119 groups |= nl_mgrp(RTNLGRP_MDB);
135 if (rtnl_open(&rth, groups) < 0)
  /external/elfutils/libasm/
asm_newscngrp.c 91 assert (ctx->groups == NULL);
92 ctx->groups = result->next = result;
96 result->next = ctx->groups->next;
97 ctx->groups = ctx->groups->next = result;
  /external/testng/src/main/java/org/testng/internal/
Bsh.java 22 Map<String, String> groups = Maps.newHashMap(); local
24 groups.put(group, group);
26 setContext(interpreter, tm.getMethod(), groups, tm);
50 private void setContext(Interpreter interpreter, Method method, Map<String, String> groups, ITestNGMethod tm) {
53 interpreter.set("groups", groups);
64 interpreter.unset("groups");
  /external/toolchain-utils/mem_tests/
mem_groups.py 2 """Groups memory by allocation sizes.
4 Takes a log entry and sorts sorts everything into groups based on what size
5 chunks the memory has been allocated in. groups is an array that contains the
10 timestamp, percent of memory in chunks < groups[0], percent between groups[0]
11 and groups[1], etc.
26 output_file = open('groups.csv', 'a')
29 groups = [1024, 8192, 65536, 524288, 4194304] variable
44 half_entry = (total_diff, [0] * (len(groups) + 1))
50 for cutoff_index in range(len(groups))
    [all...]
  /external/deqp/scripts/
testset.py 118 groups = []
122 groups.append(group)
123 return groups
126 groups = []
131 groups.append(group)
138 die("Case '%s' matched by multiple groups (when processing '%s')" % (case.name, group.name))
142 return groups
145 groups = []
154 groups.append(group)
161 return groups
    [all...]
  /external/vboot_reference/cgpt/
cgpt_prioritize.c 12 // We need a sorted list of priority groups, where each element in the list
25 int num_groups; // number of non-empty groups
26 group_t group[MAX_GROUPS]; // array of groups
104 group_list_t *groups; local
143 // Determine the current priority groups
144 groups = NewGroupList(num_kernels);
155 AddToGroup(groups, priority, i); // we'll move them all later
157 AddToGroup(groups, 99, i); // move only this one
159 AddToGroup(groups, priority, i); // just remember
165 ChangeGroup(groups, params->orig_priority, 99)
    [all...]
  /external/testng/src/test/java/test/configuration/
ConfigurationGroupBothSampleTest.java 19 @BeforeGroups(groups={"twice"}, value={"twice"})
25 @Test(groups={"twice"}, dataProvider="MyData", invocationCount = 2, threadPoolSize=2)
31 @AfterGroups(groups={"twice"}, value={"twice"})
ConfigurationGroupDataProviderSampleTest.java 14 @BeforeGroups(groups={"twice"}, value={"twice"})
20 @Test(groups={"twice"}, dataProvider="MyData")
26 @AfterGroups(groups={"twice"}, value={"twice"})
  /external/testng/src/test/java/test/groupinvocation/
DummyTest.java 17 @Test(groups={"a"})
21 @Test(groups={"b"})
25 @Test(groups={"a", "b"})
  /libcore/ojluni/src/main/java/java/lang/
ThreadGroup.java 35 * group can also include other thread groups. The thread groups form
41 * parent thread group or any other thread groups.
48 * That is, from child thread groups to parents.
52 * multi-processor system with many thread groups.
76 ThreadGroup groups[]; field in class:ThreadGroup
284 if (groups != null) {
285 groupsSnapshot = Arrays.copyOf(groups, ngroupsSnapshot);
297 * argument or one of its ancestor thread groups.
301 * argument or one of its ancestor thread groups;
    [all...]
  /art/test/925-threadgroups/
threadgroups.cc 35 // // Returns an array where element 0 is an array of threads and element 1 is an array of groups.
40 jthreadGroup* groups; local
42 jvmtiError result = jvmti_env->GetTopThreadGroups(&group_count, &groups);
48 return groups[index];
52 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(groups));
94 jthreadGroup* groups; local
100 &groups);
113 // Groups.
115 return groups[index];
123 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(groups));
    [all...]

Completed in 305 milliseconds

1 2 34 5 6 7 8 91011>>