/openjdk7/jdk/src/share/native/sun/awt/image/ |
H A D | DataBufferNative.c | 37 SurfaceDataOps *ops, int lockFlag) 39 if (ops == NULL) { 47 if (ops->Lock(env, ops, lockInfo, lockFlag) != SD_SUCCESS) { 50 ops->GetRasInfo(env, ops, lockInfo); 57 SurfaceData_InvokeRelease(env, ops, lockInfo); 58 SurfaceData_InvokeUnlock(env, ops, lockInfo); 74 SurfaceDataOps *ops; local 76 ops 35 DBN_GetPixelPointer(JNIEnv *env, jint x, int y, SurfaceDataRasInfo *lockInfo, SurfaceDataOps *ops, int lockFlag) argument 113 SurfaceDataOps *ops; local [all...] |
/openjdk7/jdk/src/share/classes/sun/nio/ch/ |
H A D | SelectionKeyImpl.java | 81 public SelectionKey interestOps(int ops) { argument 83 return nioInterestOps(ops); 94 void nioReadyOps(int ops) { // package-private argument 95 readyOps = ops; 102 SelectionKey nioInterestOps(int ops) { // package-private argument 103 if ((ops & ~channel().validOps()) != 0) 105 channel.translateAndSetInterestOps(ops, this); 106 interestOps = ops;
|
H A D | SelChImpl.java | 46 * Adds the specified ops if present in interestOps. The specified 47 * ops are turned on without affecting the other ops. 53 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk); argument 56 * Sets the specified ops if present in interestOps. The specified 57 * ops are turned on, and all other ops are turned off. 63 public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk); argument 65 void translateAndSetInterestOps(int ops, SelectionKeyImpl sk); argument
|
H A D | ServerSocketChannelImpl.java | 306 public boolean translateReadyOps(int ops, int initialOps, argument 312 if ((ops & PollArrayWrapper.POLLNVAL) != 0) { 319 if ((ops & (PollArrayWrapper.POLLERR 326 if (((ops & PollArrayWrapper.POLLIN) != 0) && 334 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) { argument 335 return translateReadyOps(ops, sk.nioReadyOps(), sk); 338 public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk) { argument 339 return translateReadyOps(ops, 0, sk); 345 public void translateAndSetInterestOps(int ops, SelectionKeyImpl sk) { argument 348 // Translate ops [all...] |
H A D | SelectorImpl.java | 122 void putEventOps(SelectionKeyImpl sk, int ops) { } argument 125 int ops, 135 k.interestOps(ops); 124 register(AbstractSelectableChannel ch, int ops, Object attachment) argument
|
/openjdk7/jdk/src/share/native/sun/java2d/ |
H A D | SurfaceData.h | 182 * The ops parameter should be a pointer to the ops object upon which 252 SurfaceDataOps *ops, 267 * The ops parameter should be a pointer to the ops object upon which 295 SurfaceDataOps *ops, 304 * Callers should use the "SurfaceData_InvokeRelease(env, ops)" macro 314 * The ops parameter should be a pointer to the ops object upon which 335 SurfaceDataOps *ops, [all...] |
H A D | SurfaceData.c | 114 SurfaceDataOps *ops; local 119 ops = (SurfaceDataOps *)JNU_GetLongFieldAsPtr(env, sData, pDataID); 120 if (ops == NULL) { 127 JNU_ThrowNullPointerException(env, "native ops missing"); 131 SurfaceData_InvokeSetup(env, ops); 133 return ops; 149 SurfaceData_SetOps(JNIEnv *env, jobject sData, SurfaceDataOps *ops) argument 152 JNU_SetLongFieldFromPtr(env, sData, pDataID, ops); 156 ptr_to_jlong(ops)); 158 JNU_ThrowInternalError(env, "Attempting to set SurfaceData ops twic 236 SurfaceDataOps *ops = malloc(opsSize); local 245 SurfaceData_DisposeOps(JNIEnv *env, jlong ops) argument [all...] |
/openjdk7/jdk/src/share/sample/nio/server/ |
H A D | Dispatcher.java | 54 void register(SelectableChannel ch, int ops, Handler h) argument
|
H A D | Dispatcher1.java | 83 public void register(SelectableChannel ch, int ops, Handler h) argument 85 ch.register(sel, ops, h);
|
H A D | DispatcherN.java | 85 public void register(SelectableChannel ch, int ops, Handler h) argument 89 ch.register(sel, ops, h);
|
/openjdk7/jdk/src/share/classes/java/nio/channels/ |
H A D | SelectableChannel.java | 159 * interest set will have been changed to <tt>ops</tt>, as if by invoking 167 * The key's initial interest set will be <tt>ops</tt> and its attachment 185 * @param ops 209 * If a bit in the <tt>ops</tt> set does not correspond to an 216 public abstract SelectionKey register(Selector sel, int ops, Object att) argument 221 // if (channel found) { set interest ops -- may block in selector; 235 * <blockquote><tt>sc.register(sel, ops)</tt></blockquote> 241 * register}(sel, ops, null)</tt></blockquote> 246 * @param ops 267 * If a bit in <tt>ops</t 274 register(Selector sel, int ops) argument [all...] |
H A D | SelectionKey.java | 187 * @param ops The new interest set 194 * <tt>(ops & ~channel().validOps()) != 0</tt> 199 public abstract SelectionKey interestOps(int ops); argument
|
/openjdk7/jdk/src/windows/classes/sun/nio/ch/ |
H A D | SinkChannelImpl.java | 75 public boolean translateReadyOps(int ops, int initialOps, argument 81 if ((ops & PollArrayWrapper.POLLNVAL) != 0) 84 if ((ops & (PollArrayWrapper.POLLERR 91 if (((ops & PollArrayWrapper.POLLOUT) != 0) && 99 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) { argument 100 return translateReadyOps(ops, sk.nioReadyOps(), sk); 103 public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk) { argument 104 return translateReadyOps(ops, 0, sk); 107 public void translateAndSetInterestOps(int ops, SelectionKeyImpl sk) { argument 108 if ((ops [all...] |
H A D | SourceChannelImpl.java | 74 public boolean translateReadyOps(int ops, int initialOps, argument 80 if ((ops & PollArrayWrapper.POLLNVAL) != 0) 83 if ((ops & (PollArrayWrapper.POLLERR 90 if (((ops & PollArrayWrapper.POLLIN) != 0) && 98 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) { argument 99 return translateReadyOps(ops, sk.nioReadyOps(), sk); 102 public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk) { argument 103 return translateReadyOps(ops, 0, sk); 106 public void translateAndSetInterestOps(int ops, SelectionKeyImpl sk) { argument 107 if ((ops [all...] |
/openjdk7/jdk/test/javax/management/mxbean/ |
H A D | OperationImpactTest.java | 51 MBeanOperationInfo[] ops = mbi.getOperations(); 52 if (ops.length != 1) 53 throw new Exception("TEST FAILED: several ops: " + mbi); 54 MBeanOperationInfo op = ops[0];
|
H A D | MBeanOperationInfoTest.java | 58 MBeanOperationInfo[] ops = mbi.getOperations(); 59 for (MBeanOperationInfo op : ops) {
|
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/ |
H A D | SinkChannelImpl.java | 115 public boolean translateReadyOps(int ops, int initialOps, argument 121 if ((ops & PollArrayWrapper.POLLNVAL) != 0) 124 if ((ops & (PollArrayWrapper.POLLERR 131 if (((ops & PollArrayWrapper.POLLOUT) != 0) && 139 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) { argument 140 return translateReadyOps(ops, sk.nioReadyOps(), sk); 143 public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk) { argument 144 return translateReadyOps(ops, 0, sk); 147 public void translateAndSetInterestOps(int ops, SelectionKeyImpl sk) { argument 148 if (ops [all...] |
H A D | SourceChannelImpl.java | 115 public boolean translateReadyOps(int ops, int initialOps, argument 121 if ((ops & PollArrayWrapper.POLLNVAL) != 0) 124 if ((ops & (PollArrayWrapper.POLLERR 131 if (((ops & PollArrayWrapper.POLLIN) != 0) && 139 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) { argument 140 return translateReadyOps(ops, sk.nioReadyOps(), sk); 143 public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk) { argument 144 return translateReadyOps(ops, 0, sk); 147 public void translateAndSetInterestOps(int ops, SelectionKeyImpl sk) { argument 148 if (ops [all...] |
H A D | SctpServerChannelImpl.java | 300 * Translates native poll revent ops into a ready operation ops 302 private boolean translateReadyOps(int ops, int initialOps, argument 308 if ((ops & PollArrayWrapper.POLLNVAL) != 0) { 315 if ((ops & (PollArrayWrapper.POLLERR 322 if (((ops & PollArrayWrapper.POLLIN) != 0) && 331 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) { argument 332 return translateReadyOps(ops, sk.nioReadyOps(), sk); 336 public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk) { argument 337 return translateReadyOps(ops, 341 translateAndSetInterestOps(int ops, SelectionKeyImpl sk) argument [all...] |
/openjdk7/jdk/test/javax/management/Introspector/ |
H A D | IsMethodTest.java | 77 MBeanOperationInfo[] ops = mbi.getOperations(); 78 if (ops.length == 4) 84 for (int i = 0; i < ops.length; i++) { 85 System.out.println(" " + ops[i].getReturnType() + " " + 86 ops[i].getName());
|
H A D | ClassLeakTest.java | 88 MBeanOperationInfo[] ops = info.getOperations(); 89 if (ops.length != 1 || !ops[0].getName().equals("bogus") 90 || ops[0].getSignature().length > 0 91 || ops[0].getImpact() != MBeanOperationInfo.UNKNOWN 92 || !ops[0].getReturnType().equals("void")) { 93 System.out.println("TEST FAILED: unexpected MBeanInfo ops");
|
/openjdk7/jdk/src/solaris/classes/sun/java2d/jules/ |
H A D | JulesPathBuf.java | 46 GrowableByteArray ops = new GrowableByteArray(1, 128); field in class:JulesPathBuf 86 xTrapArray = tesselateFillNative(points.getArray(), ops.getArray(), 87 points.getSize(), ops.getSize(), 117 tesselateStrokeNative(points.getArray(), ops.getArray(), 118 points.getSize(), ops.getSize(), 157 ops.addByte(CAIRO_PATH_OP_MOVE_TO); 166 ops.addByte(CAIRO_PATH_OP_LINE_TO); 192 ops.addByte(CAIRO_PATH_OP_CURVE_TO); 207 ops.addByte(CAIRO_PATH_OP_CURVE_TO); 222 ops 233 tesselateStrokeNative(int[] pointArray, byte[] ops, int pointCnt, int opCnt, int[] xTrapArray, int xTrapArrayLength, double lineWidth, int lineCap, int lineJoin, double miterLimit, double[] dashArray, int dashCnt, double offset, double m00, double m01, double m02, double m10, double m11, double m12, int clipLowX, int clipLowY, int clipWidth, int clipHeight) argument 245 tesselateFillNative(int[] pointArray, byte[] ops, int pointCnt, int opCnt, int[] xTrapArray, int xTrapArrayLength, int windingRule, int clipLowX, int clipLowY, int clipWidth, int clipHeight) argument [all...] |
/openjdk7/jdk/src/share/native/sun/java2d/opengl/ |
H A D | OGLSurfaceData.h | 282 SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo, 285 SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo); 287 SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo); 288 void OGLSD_Dispose(JNIEnv *env, SurfaceDataOps *ops);
|
/openjdk7/langtools/test/tools/javac/generics/inference/6650759/ |
H A D | T6650759f.java | 48 Iterable<D> ops = (true) ? Collections.singletonList(d) : m(d);
|
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/ |
H A D | OverviewTab.java | 83 OverviewPanel[] ops = tab.getOverviewPanels(); 84 if (ops != null) { 85 for (OverviewPanel op : ops) {
|