Searched defs:ops (Results 26 - 45 of 45) sorted by relevance

12

/openjdk7/hotspot/agent/src/os/bsd/
H A Dlibproc_impl.h97 ps_prochandle_ops* ops; // vtable ptr member in struct:ps_prochandle
/openjdk7/hotspot/agent/src/os/linux/
H A Dlibproc_impl.h95 ps_prochandle_ops* ops; // vtable ptr member in struct:ps_prochandle
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DSurfaceData.cpp109 D3DSD_Dispose(JNIEnv *env, SurfaceDataOps *ops) argument
111 D3DSDOps *d3dsdo = (D3DSDOps *)ops;
116 ptr_to_jlong(ops));
125 SurfaceDataOps *ops,
139 SurfaceDataOps *ops,
151 SurfaceDataOps *ops,
178 JNU_ThrowOutOfMemoryError(env, "creating native d3d ops");
124 D3DSD_Lock(JNIEnv *env, SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo, jint lockflags) argument
138 D3DSD_GetRasInfo(JNIEnv *env, SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo) argument
150 D3DSD_Unlock(JNIEnv *env, SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo) argument
/openjdk7/jdk/src/share/native/sun/java2d/
H A DSurfaceData.c114 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/classes/sun/nio/ch/
H A DServerSocketChannelImpl.java306 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 DSocketChannelImpl.java906 * Translates native poll revent ops into a ready operation ops
908 public boolean translateReadyOps(int ops, int initialOps, argument
914 if ((ops & PollArrayWrapper.POLLNVAL) != 0) {
921 if ((ops & (PollArrayWrapper.POLLERR
931 if (((ops & PollArrayWrapper.POLLIN) != 0) &&
936 if (((ops & PollArrayWrapper.POLLCONN) != 0) &&
943 if (((ops & PollArrayWrapper.POLLOUT) != 0) &&
952 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) { argument
953 return translateReadyOps(ops, s
956 translateAndSetReadyOps(int ops, SelectionKeyImpl sk) argument
963 translateAndSetInterestOps(int ops, SelectionKeyImpl sk) argument
[all...]
H A DDatagramChannelImpl.java1039 public boolean translateReadyOps(int ops, int initialOps, argument
1045 if ((ops & PollArrayWrapper.POLLNVAL) != 0) {
1052 if ((ops & (PollArrayWrapper.POLLERR
1059 if (((ops & PollArrayWrapper.POLLIN) != 0) &&
1063 if (((ops & PollArrayWrapper.POLLOUT) != 0) &&
1071 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) { argument
1072 return translateReadyOps(ops, sk.nioReadyOps(), sk);
1075 public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk) { argument
1076 return translateReadyOps(ops, 0, sk);
1082 public void translateAndSetInterestOps(int ops, SelectionKeyImp argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLSurfaceData.c152 "OGLSD_InitTextureObject: ops are null");
255 "OGLSurfaceData_initTexture: ops are null");
408 "OGLSurfaceData_initFBObject: ops are null");
465 "OGLSurfaceData_initFlipBackbuffer: ops are null");
505 "OGLSurfaceData_getTextureTarget: ops are null");
523 "OGLSurfaceData_getTextureID: ops are null");
591 OGLSD_Dispose(JNIEnv *env, SurfaceDataOps *ops) argument
593 OGLSDOps *oglsdo = (OGLSDOps *)ops;
598 ptr_to_jlong(ops), pConfigInfo);
607 SurfaceDataOps *ops,
606 OGLSD_Lock(JNIEnv *env, SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo, jint lockflags) argument
620 OGLSD_GetRasInfo(JNIEnv *env, SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo) argument
632 OGLSD_Unlock(JNIEnv *env, SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/java2d/jules/
H A DJulesPathBuf.java46 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/solaris/classes/sun/nio/ch/
H A DSctpServerChannelImpl.java300 * 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...]
H A DSctpChannelImpl.java578 * Translates native poll revent ops into a ready operation ops
580 private boolean translateReadyOps(int ops, int initialOps, SelectionKeyImpl sk) { argument
585 if ((ops & PollArrayWrapper.POLLNVAL) != 0) {
592 if ((ops & (PollArrayWrapper.POLLERR
602 if (((ops & PollArrayWrapper.POLLIN) != 0) &&
607 if (((ops & PollArrayWrapper.POLLCONN) != 0) &&
614 if (((ops & PollArrayWrapper.POLLOUT) != 0) &&
624 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) { argument
625 return translateReadyOps(ops, s
630 translateAndSetReadyOps(int ops, SelectionKeyImpl sk) argument
635 translateAndSetInterestOps(int ops, SelectionKeyImpl sk) argument
[all...]
H A DSctpMultiChannelImpl.java307 * Translates native poll revent ops into a ready operation ops
309 private boolean translateReadyOps(int ops, int initialOps, argument
315 if ((ops & PollArrayWrapper.POLLNVAL) != 0) {
322 if ((ops & (PollArrayWrapper.POLLERR
329 if (((ops & PollArrayWrapper.POLLIN) != 0) &&
333 if (((ops & PollArrayWrapper.POLLOUT) != 0) &&
342 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) { argument
343 return translateReadyOps(ops, sk.nioReadyOps(), sk);
347 public boolean translateAndSetReadyOps(int ops, SelectionKeyImp argument
352 translateAndSetInterestOps(int ops, SelectionKeyImpl sk) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMBeanIntrospector.java334 ops.add(mboi);
344 ops.toArray(new MBeanOperationInfo[0]);
368 private final List<MBeanOperationInfo> ops = newList(); field in class:MBeanIntrospector.MBeanInfoMaker
/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDropTarget.java82 * @param ops The default acceptable actions for this <code>DropTarget</code>
90 public DropTarget(Component c, int ops, DropTargetListener dtl, argument
100 setDefaultActions(ops);
130 * @param ops The default acceptable actions for this <code>DropTarget</code>
137 public DropTarget(Component c, int ops, DropTargetListener dtl, argument
141 this(c, ops, dtl, act, null);
180 * @param ops The default acceptable actions for this <code>DropTarget</code>
186 public DropTarget(Component c, int ops, DropTargetListener dtl) argument
189 this(c, ops, dtl, true);
248 * @param ops th
253 setDefaultActions(int ops) argument
261 doSetDefaultActions(int ops) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DWindowsSelectorImpl.java490 // Update ops of the corresponding Channels. Add the ready keys to the
591 void putEventOps(SelectionKeyImpl sk, int ops) { argument
599 pollWrapper.putEventOps(index, ops);
/openjdk7/jdk/src/windows/native/sun/java2d/windows/
H A DGDIWindowSurfaceData.cpp458 SurfaceDataOps *ops = SurfaceData_GetOps(env, sData); local
465 return (GDIWinSDOps *) ops;
472 SurfaceDataOps *ops = SurfaceData_GetOpsNoSetup(env, sData); local
473 return (GDIWinSDOps *) ops;
642 SurfaceDataOps *ops,
646 GDIWinSDOps *wsdo = (GDIWinSDOps *) ops;
747 SurfaceDataOps *ops,
750 GDIWinSDOps *wsdo = (GDIWinSDOps *) ops;
908 SurfaceDataOps *ops)
917 SetupThreadGraphicsInfo(env, (GDIWinSDOps*)ops);
641 GDIWinSD_Lock(JNIEnv *env, SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo, jint lockflags) argument
746 GDIWinSD_GetRasInfo(JNIEnv *env, SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo) argument
907 GDIWinSD_Setup(JNIEnv *env, SurfaceDataOps *ops) argument
921 GDIWinSD_Unlock(JNIEnv *env, SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo) argument
1187 GDIWinSD_Dispose(JNIEnv *env, SurfaceDataOps *ops) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11SurfaceData.c349 SurfaceDataOps *ops = SurfaceData_GetOps(env, xsd); local
351 if (ops != NULL) {
352 X11SD_Dispose(env, ops);
364 SurfaceDataOps *ops = SurfaceData_GetOps(env, sData);
365 if (ops != NULL && ops->Lock != X11SD_Lock) {
367 ops = NULL;
369 return (X11SDOps *) ops;
377 X11SD_Dispose(JNIEnv *env, SurfaceDataOps *ops) argument
380 /* ops i
808 X11SD_Lock(JNIEnv *env, SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo, jint lockflags) argument
916 X11SD_GetRasInfo(JNIEnv *env, SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo) argument
1030 X11SD_Unlock(JNIEnv *env, SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo) argument
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp1985 LIR_List* ops = block->lir(); local
1986 int num_ops = ops->length();
1989 assert(visitor.no_operands(ops->at(0)), "first operation must always be a label");
1991 LIR_Op* op = ops->at(j);
3414 void process_operations(LIR_List* ops, IntervalList* input_state);
3576 void RegisterVerifier::process_operations(LIR_List* ops, IntervalList* input_state) { argument
3581 for (int i = 0; i < ops->length(); i++) {
3582 LIR_Op* op = ops->at(i);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.hpp588 enum ops { enum in class:Assembler
1853 // Most of the standard SPARC synthetic ops are defined here.
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Component.cpp3397 UINT AwtComponent::WindowsKeyToJavaChar(UINT wkey, UINT modifiers, TransOps ops, BOOL &isDeadKey) argument
3404 if (ops == LOAD) {
3528 if (ops == SAVE) {

Completed in 377 milliseconds

12