Searched refs:uo (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/test/java/io/charStreams/
H A DRandomLineSource.java32 DataOutputStream uo; field in class:RandomLineSource
41 uo = new DataOutputStream(us);
57 if (uo != null) {
58 uo.flush();
73 if (uo != null)
74 uo.writeUTF(s);
80 if (uo != null) {
81 uo.close();
H A DLineLengthsSource.java31 DataOutputStream uo; field in class:LineLengthsSource
39 uo = new DataOutputStream(us);
45 uo.flush();
76 uo.writeUTF(s.toString());
88 uo.close();
H A DLineLengths.java46 PipedOutputStream uo = new PipedOutputStream();
47 PipedInputStream ui = new PipedInputStream(uo);
54 Thread t1 = new Thread(new LineLengthsSource(uo, w, log));
H A DRandomLines.java47 PipedOutputStream uo = new PipedOutputStream();
48 PipedInputStream ui = new PipedInputStream(uo);
55 Thread t1 = new Thread(new RandomLineSource(uo, w, count, log));
H A DSmallReads.java59 PipedOutputStream uo = new PipedOutputStream();
60 PipedInputStream ui = new PipedInputStream(uo);
68 Thread t1 = new Thread(new RandomLineSource(uo, w, count, log));
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXSheet.java150 XNodeInfo uo = (XNodeInfo) userObject;
151 return uo.getType().equals(Type.MBEAN);
166 XNodeInfo uo = (XNodeInfo) userObject;
167 switch (uo.getType()) {
199 final XNodeInfo uo = (XNodeInfo) node.getUserObject();
200 if (!uo.getType().equals(Type.MBEAN)) {
203 mbean = (XMBean) uo.getData();
244 final XNodeInfo uo = (XNodeInfo) node.getUserObject();
246 switch (uo.getType()) {
252 Object attrData = uo
[all...]
H A DXTree.java187 Object uo = n.getUserObject();
188 if (uo instanceof XNodeInfo) {
189 switch (((XNodeInfo) uo).getType()) {
210 Object uo = n.getUserObject();
211 if (uo instanceof XNodeInfo) {
212 switch (((XNodeInfo) uo).getType()) {
231 Object uo = node.getUserObject();
232 if (uo instanceof XNodeInfo) {
233 switch (((XNodeInfo) uo).getType()) {
256 Object uo
[all...]

Completed in 108 milliseconds