Searched defs:groups (Results 1 - 25 of 28) sorted by relevance

12

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/
H A DGraphCountGroupOrganizer.java47 public List<Pair<String, List<Group>>> organize(List<String> subFolders, List<Group> groups) { argument
53 for (Group g : groups) {
67 for (Group g : groups) {
76 result.add(new Pair<String, List<Group>>("", groups));
H A DStandardGroupOrganizer.java43 public List<Pair<String, List<Group>>> organize(List<String> subFolders, List<Group> groups) { argument
47 if (groups.size() == 1 && subFolders.size() > 0) {
48 result.add(new Pair<String, List<Group>>("", groups));
50 for (Group g : groups) {
H A DFolderNode.java117 protected FolderNode(String name, GroupOrganizer organizer, List<String> subFolders, List<Group> groups) { argument
118 this(name, organizer, subFolders, groups, new FolderChildren(), new InstanceContent());
121 private FolderNode(String name, GroupOrganizer organizer, List<String> oldSubFolders, final List<Group> groups, FolderChildren children, InstanceContent content) { argument
129 for (Group g : groups) {
136 init(name, organizer, oldSubFolders, groups);
139 public void init(String name, GroupOrganizer organizer, List<String> oldSubFolders, List<Group> groups) { argument
146 structure = organizer.organize(subFolders, groups);
/openjdk7/jdk/test/java/net/MulticastSocket/
H A DNoLoopbackPackets.java75 // we will send packets to three multicast groups :-
78 List<SocketAddress> groups = new ArrayList<SocketAddress>();
79 groups.add(new InetSocketAddress(InetAddress.getByName("224.1.1.1"), port));
80 groups.add(new InetSocketAddress(InetAddress.getByName("::ffff:224.1.1.2"), port));
81 groups.add(new InetSocketAddress(InetAddress.getByName("ff02::1:1"), port));
83 Thread sender = new Thread(new Sender(groups));
94 for (SocketAddress group : groups) {
113 System.out.println("We should not receive anything from following groups, but we did:");
123 public Sender(List<SocketAddress> groups) { argument
124 sendToGroups = groups;
[all...]
H A DSetOutgoingIf.java111 List<InetAddress> groups = new ArrayList<InetAddress>();
115 groups.add(groupv4);
119 groups.add(groupv6);
122 debug("Adding " + groups + " groups for " + netIf.nic().getName());
123 netIf.groups(groups);
125 // use a separated thread to send to those 2 groups
127 groups,
139 for (InetAddress group : netIf.groups()) {
182 private List<InetAddress> groups; field in class:Sender
185 Sender(NetIf netIf, List<InetAddress> groups, int port) argument
221 List<InetAddress> groups = Collections.EMPTY_LIST; field in class:NetIf
260 List<InetAddress> groups() { method in class:NetIf
264 groups(List<InetAddress> groups) argument
[all...]
/openjdk7/langtools/test/tools/javac/generics/inference/6273455/
H A DT6273455.java43 public void containsCombination(SortedSet<Group<T>> groups, argument
45 foo(groups, sequences);
/openjdk7/jdk/src/share/classes/com/sun/security/auth/module/
H A DSolarisSystem.java30 * UID/GID/groups information for the current user.
40 protected long[] groups; field in class:SolarisSystem
85 * Get the supplementary groups for the current Solaris user.
89 * @return the supplementary groups for the current Solaris user.
92 return groups == null ? null : groups.clone();
H A DUnixSystem.java30 * UID/GID/groups information for the current user.
40 protected long[] groups; field in class:UnixSystem
85 * Get the supplementary groups for the current Unix user.
89 * @return the supplementary groups for the current Unix user.
92 return groups == null ? null : groups.clone();
H A DNTLoginModule.java83 private NTSidGroupPrincipal groups[]; // supplementary groups field in class:NTLoginModule
199 groups = new NTSidGroupPrincipal[groupSIDs.length];
201 groups[i] = new NTSidGroupPrincipal(groupSIDs[i]);
204 groups[i].getName());
274 for (int i = 0; groups != null && i < groups.length; i++) {
275 if (!principals.contains(groups[i])) {
276 principals.add(groups[i]);
322 groups
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/services/
H A DGroupOrganizer.java38 public List<Pair<String, List<Group>>> organize(List<String> subFolders, List<Group> groups); argument
/openjdk7/jdk/src/solaris/native/com/sun/security/auth/module/
H A DSolaris.c42 gid_t *groups = (gid_t *)calloc(numSuppGroups, sizeof(gid_t)); local
52 getgroups(numSuppGroups, groups) != -1) {
101 * set supplementary groups
103 fid = (*env)->GetFieldID(env, cls, "groups", "[J");
117 jgroupsAsArray[i] = groups[i];
H A DUnix.c48 gid_t *groups = (gid_t *)calloc(numSuppGroups, sizeof(gid_t)); local
59 getgroups(numSuppGroups, groups) != -1) {
108 * set supplementary groups
110 fid = (*env)->GetFieldID(env, cls, "groups", "[J");
124 jgroupsAsArray[i] = groups[i];
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DMembershipRegistry.java42 private Map<InetAddress,List<MembershipKeyImpl>> groups = null; field in class:MembershipRegistry
54 if (groups != null) {
55 List<MembershipKeyImpl> keys = groups.get(group);
86 if (groups == null) {
87 groups = new HashMap<InetAddress,List<MembershipKeyImpl>>();
90 keys = groups.get(group);
94 groups.put(group, keys);
104 List<MembershipKeyImpl> keys = groups.get(group);
114 groups.remove(group);
123 if (groups !
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DGraphDocument.java36 private List<Group> groups; field in class:GraphDocument
40 groups = new ArrayList<Group>();
45 groups.clear();
54 return Collections.unmodifiableList(groups);
59 groups.add(group);
64 if (groups.contains(group)) {
66 groups.remove(group);
72 for (Group g : document.groups) {
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ServerCompiler/src/com/sun/hotspot/igv/servercompiler/
H A DJavaGroupOrganizer.java46 public List<Pair<String, List<Group>>> organize(List<String> subFolders, List<Group> groups) { argument
51 buildResult(result, groups, packageNameProvider);
53 buildResult(result, groups, classNameProvider);
55 for (Group g : groups) {
64 result.add(new Pair<String, List<Group>>("", groups));
70 private void buildResult(List<Pair<String, List<Group>>> result, List<Group> groups, NameProvider provider) { argument
72 for (Group g : groups) {
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/report/
H A DHTMLSeriesReporter.java72 * Holds the groups and corresponding group-display-names
74 public static List groups = new ArrayList(); field in class:HTMLSeriesReporter
H A DXMLHTMLReporter.java70 * Holds the groups and corresponding group-display-names
72 public static List groups = new ArrayList(); field in class:XMLHTMLReporter
111 if( ! groups.contains(group)) {
112 groups.add(group);
553 for(int i=0; i<groups.size(); i++) {
554 tempGroup = groups.get(i).toString();
747 Object[] groupNameArray = groups.toArray();
/openjdk7/hotspot/agent/test/jdi/
H A Dsagdoit.java77 private void doThreadGroupList(List groups) { argument
79 if (groups == null) {
83 Iterator myIter = groups.iterator();
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DVMState.java51 List<ThreadGroupReference> groups = null; // cached Top Level ThreadGroups field in class:VMState.Cache
219 List<ThreadGroupReference> groups = null;
224 groups = local.groups;
226 if (groups == null) {
227 groups = Arrays.asList(
229 process(vm).groups);
231 local.groups = groups;
234 "Caching top level thread groups (coun
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DThreadGroup.java34 * group can also include other thread groups. The thread groups form
40 * parent thread group or any other thread groups.
47 * That is, from child thread groups to parents.
51 * multi-processor system with many thread groups.
70 ThreadGroup groups[]; field in class:ThreadGroup
269 if (groups != null) {
270 groupsSnapshot = Arrays.copyOf(groups, ngroupsSnapshot);
282 * argument or one of its ancestor thread groups.
286 * argument or one of its ancestor thread groups;
[all...]
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DMatcher.java112 * The storage used by groups. They may contain invalid values if
115 int[] groups; field in class:Matcher
164 * a pattern, and where groups begin. The nodes themselves are stateless,
224 groups = new int[parentGroupCount * 2];
252 result.groups = this.groups.clone();
261 * about the groups of the last match that occurred. The
279 groups = new int[parentGroupCount * 2];
281 for (int i = 0; i < groups.length; i++)
282 groups[
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DHistogram.java496 int[][] regroupHistogram(int[][] matrix, int[] groups) { argument
502 for (int ni = 0; ni < groups.length; ni++) {
503 newEntries += groups[ni];
506 int newlen = groups.length;
508 for (int ni = 0; ni < groups.length; ni++) {
509 if (ok < groups[ni]) {
511 System.arraycopy(groups, 0, newGroups, 0, ni+1);
512 groups = newGroups;
513 groups[ni] = (int) ok;
517 ok -= groups[n
[all...]
/openjdk7/jdk/src/windows/native/com/sun/security/auth/module/
H A Dnt.c41 BOOL getGroups(HANDLE tokenHandle, PDWORD numGroups, LPTSTR **groups);
72 DWORD numGroups = 0; // num groups
73 LPTSTR *groups = NULL; // groups array local
74 long pIndex = -1; // index of primaryGroup in groups array
109 printf("getting supplementary groups\n");
111 if (getGroups(tokenHandle, &numGroups, &groups) == FALSE) {
185 // primary group may or may not be part of supplementary groups
187 if (strcmp(primaryGroup, groups[i]) == 0) {
188 // found primary group in groups arra
260 HeapFree(GetProcessHeap(), 0, groups[i]); local
263 HeapFree(GetProcessHeap(), 0, groups); local
494 getGroups(HANDLE tokenHandle, PDWORD numGroups, LPTSTR **groups) argument
[all...]
/openjdk7/jdk/src/share/back/
H A DVirtualMachineImpl.c535 jthreadGroup *groups; local
537 groups = NULL;
539 (gdata->jvmti, &groupCount, &groups);
547 (void)outStream_writeObjectRef(env, out, groups[i]);
550 jvmtiDeallocate(groups);
H A Dutil.c191 jthreadGroup *groups; local
231 groups = NULL;
234 (gdata->jvmti, &groupCount, &groups);
241 localSystemThreadGroup = groups[0];

Completed in 76 milliseconds

12