Searched defs:this (Results 101 - 119 of 119) sorted by relevance

12345

/openjdk7/jdk/src/windows/native/java/io/
H A DWinNTFileSystem_md.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
239 Java_java_io_WinNTFileSystem_canonicalize0(JNIEnv *env, jobject this, argument
272 Java_java_io_WinNTFileSystem_canonicalizeWithPrefix0(JNIEnv *env, jobject this, argument
359 Java_java_io_WinNTFileSystem_getBooleanAttributes(JNIEnv *env, jobject this, argument
385 JNICALL Java_java_io_WinNTFileSystem_checkAccess(JNIEnv *env, jobject this, argument
415 Java_java_io_WinNTFileSystem_setPermission(JNIEnv *env, jobject this, argument
461 Java_java_io_WinNTFileSystem_getLastModifiedTime(JNIEnv *env, jobject this, argument
498 Java_java_io_WinNTFileSystem_getLength(JNIEnv *env, jobject this, jobject file) argument
595 Java_java_io_WinNTFileSystem_delete0(JNIEnv *env, jobject this, jobject file) argument
610 Java_java_io_WinNTFileSystem_list(JNIEnv *env, jobject this, jobject file) argument
717 Java_java_io_WinNTFileSystem_createDirectory(JNIEnv *env, jobject this, jobject file) argument
738 Java_java_io_WinNTFileSystem_rename0(JNIEnv *env, jobject this, jobject from, jobject to) argument
757 Java_java_io_WinNTFileSystem_setLastModifiedTime(JNIEnv *env, jobject this, jobject file, jlong time) argument
790 Java_java_io_WinNTFileSystem_setReadOnly(JNIEnv *env, jobject this, jobject file) argument
827 Java_java_io_WinNTFileSystem_getDriveDirectory(JNIEnv *env, jobject this, jint drive) argument
841 Java_java_io_WinNTFileSystem_getSpace0(JNIEnv *env, jobject this, jobject file, jint t) argument
[all...]
H A Dio_util_md.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
59 /* If this returns NULL then an exception is pending */
160 /* If this returns NULL then an exception is pending */
285 fileOpen(JNIEnv *env, jobject this, jstring path, jfieldID fid, int flags) argument
289 SET_FD(this, h, fid);
451 * to this bogosity, and if it was, I ignore the error.
544 handleClose(JNIEnv *env, jobject this, jfieldI argument
[all...]
/openjdk7/jdk/src/windows/native/java/net/
H A DTwoStacksPlainSocketImpl.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
63 * we only want to look this up once, from the static initializer
68 static int getFD(JNIEnv *env, jobject this) { argument
69 jobject fdObj = (*env)->GetObjectField(env, this, psi_fdID);
77 static int getFD1(JNIEnv *env, jobject this) { argument
78 jobject fdObj = (*env)->GetObjectField(env, this, psi_fd1ID);
133 Java_java_net_TwoStacksPlainSocketImpl_socketCreate(JNIEnv *env, jobject this, argument
189 Java_java_net_TwoStacksPlainSocketImpl_socketConnect(JNIEnv *env, jobject this, jobject iaObj, jint port, jint timeout) argument
397 Java_java_net_TwoStacksPlainSocketImpl_socketBind(JNIEnv *env, jobject this, jobject iaObj, jint localport, jboolean exclBind) argument
511 Java_java_net_TwoStacksPlainSocketImpl_socketListen(JNIEnv *env, jobject this, jint count) argument
574 Java_java_net_TwoStacksPlainSocketImpl_socketAccept(JNIEnv *env, jobject this, jobject socket) argument
774 Java_java_net_TwoStacksPlainSocketImpl_socketAvailable(JNIEnv *env, jobject this) argument
801 Java_java_net_TwoStacksPlainSocketImpl_socketClose0(JNIEnv *env, jobject this, jboolean useDeferredClose) argument
838 Java_java_net_TwoStacksPlainSocketImpl_socketNativeSetOption(JNIEnv *env, jobject this, jint cmd, jboolean on, jobject value) argument
1005 Java_java_net_TwoStacksPlainSocketImpl_socketGetOption(JNIEnv *env, jobject this, jint opt, jobject iaContainerObj) argument
1118 Java_java_net_TwoStacksPlainSocketImpl_socketShutdown(JNIEnv *env, jobject this, jint howto) argument
1145 Java_java_net_TwoStacksPlainSocketImpl_socketSendUrgentData(JNIEnv *env, jobject this, jint data) argument
[all...]
H A DTwoStacksPlainDatagramSocketImpl.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
127 static int getFD(JNIEnv *env, jobject this) { argument
128 jobject fdObj = (*env)->GetObjectField(env, this, pdsi_fdID);
136 static int getFD1(JNIEnv *env, jobject this) { argument
137 jobject fdObj = (*env)->GetObjectField(env, this, pdsi_fd1ID);
178 * First time we are called we must determine which OS this is and also
195 * Step 1: Determine which OS this i
328 purgeOutstandingICMP(JNIEnv *env, jobject this, jint fd) argument
423 Java_java_net_TwoStacksPlainDatagramSocketImpl_bind0(JNIEnv *env, jobject this, jint port, jobject addressObj, jboolean exclBind) argument
526 Java_java_net_TwoStacksPlainDatagramSocketImpl_connect0(JNIEnv *env, jobject this, jobject address, jint port) argument
595 Java_java_net_TwoStacksPlainDatagramSocketImpl_disconnect0(JNIEnv *env, jobject this, jint family) argument
636 Java_java_net_TwoStacksPlainDatagramSocketImpl_send(JNIEnv *env, jobject this, jobject packet) argument
773 checkLastFD(JNIEnv *env, jobject this, int fd, int fd1) argument
796 Java_java_net_TwoStacksPlainDatagramSocketImpl_peek(JNIEnv *env, jobject this, jobject addressObj) argument
917 Java_java_net_TwoStacksPlainDatagramSocketImpl_peekData(JNIEnv *env, jobject this, jobject packet) argument
1188 Java_java_net_TwoStacksPlainDatagramSocketImpl_receive0(JNIEnv *env, jobject this, jobject packet) argument
1478 Java_java_net_TwoStacksPlainDatagramSocketImpl_datagramSocketCreate(JNIEnv *env, jobject this) argument
1535 Java_java_net_TwoStacksPlainDatagramSocketImpl_datagramSocketClose(JNIEnv *env, jobject this) argument
1664 setMulticastInterface(JNIEnv *env, jobject this, int fd, int fd1, jint opt, jobject value) argument
1784 Java_java_net_TwoStacksPlainDatagramSocketImpl_socketNativeSetOption(JNIEnv *env,jobject this, jint opt,jobject value) argument
1919 getMulticastInterface(JNIEnv *env, jobject this, int fd, int fd1, jint opt) argument
2132 Java_java_net_TwoStacksPlainDatagramSocketImpl_socketGetOption(JNIEnv *env, jobject this, jint opt) argument
2238 Java_java_net_TwoStacksPlainDatagramSocketImpl_setTimeToLive(JNIEnv *env, jobject this, jint ttl) argument
2281 Java_java_net_TwoStacksPlainDatagramSocketImpl_setTTL(JNIEnv *env, jobject this, jbyte ttl) argument
2293 Java_java_net_TwoStacksPlainDatagramSocketImpl_getTimeToLive(JNIEnv *env, jobject this) argument
2337 Java_java_net_TwoStacksPlainDatagramSocketImpl_getTTL(JNIEnv *env, jobject this) argument
2346 mcast_join_leave(JNIEnv *env, jobject this, jobject iaObj, jobject niObj, jboolean join) argument
2481 Java_java_net_TwoStacksPlainDatagramSocketImpl_join(JNIEnv *env, jobject this, jobject iaObj, jobject niObj) argument
2493 Java_java_net_TwoStacksPlainDatagramSocketImpl_leave(JNIEnv *env, jobject this, jobject iaObj, jobject niObj) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DNet.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
296 * returns a protocol error. NET_GetSockOpt handles this and uses
352 Java_sun_nio_ch_Net_joinOrDrop4(JNIEnv *env, jobject this, jboolean join, jobject fdo, argument
385 Java_sun_nio_ch_Net_blockOrUnblock4(JNIEnv *env, jobject this, jboolean block, jobject fdo, argument
436 Java_sun_nio_ch_Net_joinOrDrop6(JNIEnv *env, jobject this, jboolean join, jobject fdo, argument
460 Java_sun_nio_ch_Net_blockOrUnblock6(JNIEnv *env, jobject this, jboolean block, jobject fdo, argument
472 Java_sun_nio_ch_Net_setInterface4(JNIEnv* env, jobject this, jobjec argument
488 Java_sun_nio_ch_Net_getInterface4(JNIEnv* env, jobject this, jobject fdo) argument
503 Java_sun_nio_ch_Net_setInterface6(JNIEnv* env, jobject this, jobject fdo, jint index) argument
517 Java_sun_nio_ch_Net_getInterface6(JNIEnv* env, jobject this, jobject fdo) argument
[all...]
/openjdk7/jdk/src/solaris/native/java/net/
H A DPlainDatagramSocketImpl.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
132 static int getFD(JNIEnv *env, jobject this) { argument
133 jobject fdObj = (*env)->GetObjectField(env, this, pdsi_fdID);
179 * We need to determine if this is a 2.2 kernel.
187 * If this fails assume that /proc has changed and that
188 * this must be new /proc format and hence new kernel.
220 Java_java_net_PlainDatagramSocketImpl_bind0(JNIEnv *env, jobject this, argument
285 Java_java_net_PlainDatagramSocketImpl_connect0(JNIEnv *env, jobject this, jobject address, jint port) argument
333 Java_java_net_PlainDatagramSocketImpl_disconnect0(JNIEnv *env, jobject this, jint family) argument
406 Java_java_net_PlainDatagramSocketImpl_send(JNIEnv *env, jobject this, jobject packet) argument
546 Java_java_net_PlainDatagramSocketImpl_peek(JNIEnv *env, jobject this, jobject addressObj) argument
631 Java_java_net_PlainDatagramSocketImpl_peekData(JNIEnv *env, jobject this, jobject packet) argument
808 Java_java_net_PlainDatagramSocketImpl_receive0(JNIEnv *env, jobject this, jobject packet) argument
1061 Java_java_net_PlainDatagramSocketImpl_datagramSocketCreate(JNIEnv *env, jobject this) argument
1146 Java_java_net_PlainDatagramSocketImpl_datagramSocketClose(JNIEnv *env, jobject this) argument
1170 mcast_set_if_by_if_v4(JNIEnv *env, jobject this, int fd, jobject value) argument
1222 mcast_set_if_by_if_v6(JNIEnv *env, jobject this, int fd, jobject value) argument
1264 mcast_set_if_by_addr_v4(JNIEnv *env, jobject this, int fd, jobject value) argument
1281 mcast_set_if_by_addr_v6(JNIEnv *env, jobject this, int fd, jobject value) argument
1331 setMulticastInterface(JNIEnv *env, jobject this, int fd, jint opt, jobject value) argument
1382 mcast_set_loop_v4(JNIEnv *env, jobject this, int fd, jobject value) argument
1406 mcast_set_loop_v6(JNIEnv *env, jobject this, int fd, jobject value) argument
1440 setMulticastLoopbackMode(JNIEnv *env, jobject this, int fd, jint opt, jobject value) argument
1466 Java_java_net_PlainDatagramSocketImpl_socketSetOption(JNIEnv *env, jobject this, jint opt, jobject value) argument
1600 getMulticastInterface(JNIEnv *env, jobject this, int fd, jint opt) argument
1846 Java_java_net_PlainDatagramSocketImpl_socketGetOption(JNIEnv *env, jobject this, jint opt) argument
1956 Java_java_net_PlainDatagramSocketImpl_setTTL(JNIEnv *env, jobject this, jbyte ttl) argument
1997 Java_java_net_PlainDatagramSocketImpl_setTimeToLive(JNIEnv *env, jobject this, jint ttl) argument
2039 Java_java_net_PlainDatagramSocketImpl_getTTL(JNIEnv *env, jobject this) argument
2050 Java_java_net_PlainDatagramSocketImpl_getTimeToLive(JNIEnv *env, jobject this) argument
2119 mcast_join_leave(JNIEnv *env, jobject this, jobject iaObj, jobject niObj, jboolean join) argument
2449 Java_java_net_PlainDatagramSocketImpl_join(JNIEnv *env, jobject this, jobject iaObj, jobject niObj) argument
2461 Java_java_net_PlainDatagramSocketImpl_leave(JNIEnv *env, jobject this, jobject iaObj, jobject niObj) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A DX11Color.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
583 any IndexColorModel using this
862 /* Keep the mapping between this lut and the actual cmap */
902 * be overridden, and this method does not invoke
1079 entries to be gray colors. The Dome card does this when the
1087 aData->awtImage->clrdata.grayscale == 0, we fall into this
1164 /* Compute the inverse gray LUT for this aDat
1242 awtJNI_GetColor(JNIEnv *env,jobject this) argument
1248 awtJNI_GetColorForVis(JNIEnv *env,jobject this, AwtGraphicsConfigDataPtr awt_data) argument
[all...]
H A Dawt_xembed_server.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
98 static void processXEmbedInfo(JNIEnv* env, jobject this);
252 Java_sun_awt_motif_MEmbedCanvasPeer_initXEmbedServer(JNIEnv *env, jobject this) { argument
256 addData((*env)->NewGlobalRef(env, this));
261 JNU_GetLongFieldAsPtr(env, this, mComponentPeerIDs.pData);
275 Java_sun_awt_motif_MEmbedCanvasPeer_destroyXEmbedServer(JNIEnv *env, jobject this) { argument
278 removeData(this);
288 Java_sun_awt_motif_MEmbedCanvasPeer_isXEmbedActive(JNIEnv *env, jobject this) argument
306 Java_sun_awt_motif_MEmbedCanvasPeer_initDispatching(JNIEnv *env, jobject this) argument
328 Java_sun_awt_motif_MEmbedCanvasPeer_endDispatching(JNIEnv *env, jobject this) argument
347 Java_sun_awt_motif_MEmbedCanvasPeer_embedChild(JNIEnv * env, jobject this, jlong handle) argument
368 Java_sun_awt_motif_MEmbedCanvasPeer_childDestroyed(JNIEnv *env, jobject this) argument
386 Java_sun_awt_motif_MEmbedCanvasPeer_getEmbedPreferredSize(JNIEnv *env, jobject this) argument
413 Java_sun_awt_motif_MEmbedCanvasPeer_getEmbedMinimumSize(JNIEnv *env, jobject this) argument
440 Java_sun_awt_motif_MEmbedCanvasPeer_getClientBounds(JNIEnv *env, jobject this) argument
458 isApplicationActive(JNIEnv * env, jobject this) argument
468 Java_sun_awt_motif_MEmbedCanvasPeer_notifyChildEmbedded(JNIEnv *env, jobject this) argument
494 Java_sun_awt_motif_MEmbedCanvasPeer_detachChild(JNIEnv *env, jobject this) argument
523 Java_sun_awt_motif_MEmbedCanvasPeer_forwardKeyEvent(JNIEnv *env, jobject this, jobject event) argument
559 Java_sun_awt_motif_MEmbedCanvasPeer_getAWTKeyCodeForKeySym(JNIEnv *env, jobject this, jint keysym) argument
573 Java_sun_awt_motif_MEmbedCanvasPeer_sendMessage__I(JNIEnv *env, jobject this, jint msg) argument
591 Java_sun_awt_motif_MEmbedCanvasPeer_sendMessage__IJJJ(JNIEnv *env, jobject this, jint msg, jlong detail, jlong data1, jlong data2) argument
667 processXEmbedInfo(JNIEnv * env, jobject this) argument
715 handleClientMessage(JNIEnv* env, jobject this, XClientMessageEvent * ev) argument
819 Java_sun_awt_motif_GrabbedKey_initKeySymAndModifiers(JNIEnv *env, jobject this, jobject keyevent) argument
952 Java_sun_awt_motif_MEmbedCanvasPeer_getWindow(JNIEnv *env, jobject this) argument
965 Java_sun_awt_motif_MEmbedCanvasPeer_forwardEventToEmbedded(JNIEnv *env, jobject this, jlong ctxt, jint eventID) argument
[all...]
H A Dawt_GraphicsEnv.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
118 * data. This is in part because at this time, the X consortium has not
119 * finalized the "official" Xinerama API. Once this spec is available, and
215 /* Allocate white and black pixels for this visual */
586 * Determing if this top-level has been moved onto another Xinerama screen.
621 /* calc how much of window is on this screen */
631 /* completely on this scree
775 awt_init_Display(JNIEnv *env, jobject this) argument
873 Java_sun_awt_X11GraphicsEnvironment_getDefaultScreenNum( JNIEnv *env, jobject this) argument
917 Java_sun_awt_X11GraphicsEnvironment_initDisplay(JNIEnv *env, jobject this, jboolean glxReq) argument
953 Java_sun_awt_X11GraphicsEnvironment_getNumScreens(JNIEnv *env, jobject this) argument
968 Java_sun_awt_X11GraphicsDevice_getDisplay(JNIEnv *env, jobject this) argument
1074 Java_sun_awt_X11GraphicsEnvironment_checkShmExt(JNIEnv *env, jobject this) argument
1090 Java_sun_awt_X11GraphicsEnvironment_getDisplayString(JNIEnv *env, jobject this) argument
1107 Java_sun_awt_X11GraphicsDevice_getNumConfigs( JNIEnv *env, jobject this, jint screen) argument
1124 Java_sun_awt_X11GraphicsDevice_getConfigVisualId( JNIEnv *env, jobject this, jint index, jint screen) argument
1147 Java_sun_awt_X11GraphicsDevice_getConfigDepth( JNIEnv *env, jobject this, jint index, jint screen) argument
1170 Java_sun_awt_X11GraphicsDevice_getConfigColormap( JNIEnv *env, jobject this, jint index, jint screen) argument
1273 Java_sun_awt_X11GraphicsConfig_getXResolution( JNIEnv *env, jobject this, jint screen) argument
1290 Java_sun_awt_X11GraphicsConfig_getYResolution( JNIEnv *env, jobject this, jint screen) argument
1308 Java_sun_awt_X11GraphicsConfig_getNumColors( JNIEnv *env, jobject this) argument
1329 Java_sun_awt_X11GraphicsConfig_init( JNIEnv *env, jobject this, jint visualNum, jint screen) argument
1384 Java_sun_awt_X11GraphicsConfig_makeColorModel( JNIEnv *env, jobject this) argument
1427 Java_sun_awt_X11GraphicsConfig_pGetBounds(JNIEnv *env, jobject this, jint screen) argument
1471 Java_sun_awt_X11GraphicsConfig_createBackBuffer(JNIEnv *env, jobject this, jlong window, jint swapAction) argument
1496 Java_sun_awt_X11GraphicsConfig_destroyBackBuffer(JNIEnv *env, jobject this, jlong backBuffer) argument
1510 Java_sun_awt_X11GraphicsConfig_swapBuffers(JNIEnv *env, jobject this, jlong window, jint swapAction) argument
1535 Java_sun_awt_X11GraphicsConfig_isTranslucencyCapable(JNIEnv *env, jobject this, jlong configData) argument
1555 Java_sun_awt_X11GraphicsDevice_isDBESupported(JNIEnv *env, jobject this) argument
1577 Java_sun_awt_X11GraphicsDevice_getDoubleBufferVisuals(JNIEnv *env, jobject this, jint screen) argument
1621 Java_sun_awt_X11GraphicsEnvironment_pRunningXinerama(JNIEnv *env, jobject this) argument
1639 Java_sun_awt_X11GraphicsEnvironment_getXineramaCenterPoint(JNIEnv *env, jobject this) argument
[all...]
H A Dawt_InputMethod.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
137 * to this data structure is kept in an X11InputMethod object (pData).
186 method. (the best place to put this
212 /* Prototype for this function is missing in Solaris X11R6 Xlib.h */
398 /* this function should be called within AWT_LOCK() */
501 * big enough, so that the possibility that user encounters this problem is relatively
502 * small. When this bu
1499 Java_sun_awt_X11_XInputMethod_openXIMNative(JNIEnv *env, jobject this, jlong display) argument
1538 Java_sun_awt_X11_XInputMethod_createXICNative(JNIEnv *env, jobject this, jlong window) argument
[all...]
H A Dawt_MToolkit.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
429 /* for each keycode attached to this modifier */
735 /* If this function returns False, that means that it has not pre-posted
736 this event to Java. The caller will then dispatch the event to Motif,
738 If this function returns true, then this function has posted this even
2603 Java_sun_awt_motif_MToolkit_init(JNIEnv *env, jobject this, jstring mainClassName) argument
2805 Java_sun_awt_motif_MToolkit_run(JNIEnv *env, jobject this) argument
2823 Java_sun_awt_motif_MToolkit_makeColorModel(JNIEnv *env, jclass this) argument
2837 Java_sun_awt_motif_MToolkit_getScreenResolution(JNIEnv *env, jobject this) argument
2850 Java_sun_awt_motif_MToolkit_getScreenWidth(JNIEnv *env, jobject this) argument
2860 Java_sun_awt_motif_MToolkit_getScreenHeight(JNIEnv *env, jobject this) argument
2871 Java_sun_awt_motif_MToolkit_beep(JNIEnv *env, jobject this) argument
2885 Java_sun_awt_motif_MToolkit_shutdown(JNIEnv *env, jobject this) argument
2896 Java_sun_awt_motif_MToolkit_getLockingKeyStateNative(JNIEnv *env, jobject this, jint awtKey) argument
2929 Java_sun_awt_motif_MToolkit_loadSystemColors(JNIEnv *env, jobject this, jintArray systemColors) argument
3114 Java_sun_awt_motif_MToolkit_isDynamicLayoutSupportedNative(JNIEnv *env, jobject this) argument
3144 Java_sun_awt_motif_MToolkit_isFrameStateSupported(JNIEnv *env, jobject this, jint state) argument
3159 Java_sun_awt_motif_MToolkit_getMulticlickTime(JNIEnv *env, jobject this) argument
3171 Java_sun_awt_motif_MToolkit_loadXSettings(JNIEnv *env, jobject this) argument
3397 Java_sun_awt_motif_MToolkit_getWMName(JNIEnv *env, jclass this) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DUnixNativeDispatcher.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
154 * Call this to throw an internal UnixException when a system/library
169 Java_sun_nio_fs_UnixNativeDispatcher_init(JNIEnv* env, jclass this) argument
241 Java_sun_nio_fs_UnixNativeDispatcher_getcwd(JNIEnv* env, jclass this) { argument
260 Java_sun_nio_fs_UnixNativeDispatcher_strerror(JNIEnv* env, jclass this, jint error) argument
276 Java_sun_nio_fs_UnixNativeDispatcher_dup(JNIEnv* env, jclass this, jint fd) { argument
288 Java_sun_nio_fs_UnixNativeDispatcher_fopen0(JNIEnv* env, jclass this, argument
307 Java_sun_nio_fs_UnixNativeDispatcher_fclose(JNIEnv* env, jclass this, jlong stream) argument
321 Java_sun_nio_fs_UnixNativeDispatcher_open0(JNIEnv* env, jclass this, jlong pathAddress, jint oflags, jint mode) argument
335 Java_sun_nio_fs_UnixNativeDispatcher_openat0(JNIEnv* env, jclass this, jint dfd, jlong pathAddress, jint oflags, jint mode) argument
354 Java_sun_nio_fs_UnixNativeDispatcher_close(JNIEnv* env, jclass this, jint fd) argument
361 Java_sun_nio_fs_UnixNativeDispatcher_read(JNIEnv* env, jclass this, jint fd, jlong address, jint nbytes) argument
374 Java_sun_nio_fs_UnixNativeDispatcher_write(JNIEnv* env, jclass this, jint fd, jlong address, jint nbytes) argument
404 Java_sun_nio_fs_UnixNativeDispatcher_stat0(JNIEnv* env, jclass this, jlong pathAddress, jobject attrs) argument
420 Java_sun_nio_fs_UnixNativeDispatcher_lstat0(JNIEnv* env, jclass this, jlong pathAddress, jobject attrs) argument
436 Java_sun_nio_fs_UnixNativeDispatcher_fstat(JNIEnv* env, jclass this, jint fd, jobject attrs) argument
451 Java_sun_nio_fs_UnixNativeDispatcher_fstatat0(JNIEnv* env, jclass this, jint dfd, jlong pathAddress, jint flag, jobject attrs) argument
471 Java_sun_nio_fs_UnixNativeDispatcher_chmod0(JNIEnv* env, jclass this, jlong pathAddress, jint mode) argument
484 Java_sun_nio_fs_UnixNativeDispatcher_fchmod(JNIEnv* env, jclass this, jint filedes, jint mode) argument
497 Java_sun_nio_fs_UnixNativeDispatcher_chown0(JNIEnv* env, jclass this, jlong pathAddress, jint uid, jint gid) argument
510 Java_sun_nio_fs_UnixNativeDispatcher_lchown0(JNIEnv* env, jclass this, jlong pathAddress, jint uid, jint gid) argument
522 Java_sun_nio_fs_UnixNativeDispatcher_fchown(JNIEnv* env, jclass this, jint filedes, jint uid, jint gid) argument
533 Java_sun_nio_fs_UnixNativeDispatcher_utimes0(JNIEnv* env, jclass this, jlong pathAddress, jlong accessTime, jlong modificationTime) argument
553 Java_sun_nio_fs_UnixNativeDispatcher_futimes(JNIEnv* env, jclass this, jint filedes, jlong accessTime, jlong modificationTime) argument
580 Java_sun_nio_fs_UnixNativeDispatcher_opendir0(JNIEnv* env, jclass this, jlong pathAddress) argument
595 Java_sun_nio_fs_UnixNativeDispatcher_fdopendir(JNIEnv* env, jclass this, int dfd) argument
612 Java_sun_nio_fs_UnixNativeDispatcher_closedir(JNIEnv* env, jclass this, jlong dir) argument
623 Java_sun_nio_fs_UnixNativeDispatcher_readdir(JNIEnv* env, jclass this, jlong value) argument
654 Java_sun_nio_fs_UnixNativeDispatcher_mkdir0(JNIEnv* env, jclass this, jlong pathAddress, jint mode) argument
666 Java_sun_nio_fs_UnixNativeDispatcher_rmdir0(JNIEnv* env, jclass this, jlong pathAddress) argument
678 Java_sun_nio_fs_UnixNativeDispatcher_link0(JNIEnv* env, jclass this, jlong existingAddress, jlong newAddress) argument
693 Java_sun_nio_fs_UnixNativeDispatcher_unlink0(JNIEnv* env, jclass this, jlong pathAddress) argument
705 Java_sun_nio_fs_UnixNativeDispatcher_unlinkat0(JNIEnv* env, jclass this, jint dfd, jlong pathAddress, jint flags) argument
722 Java_sun_nio_fs_UnixNativeDispatcher_rename0(JNIEnv* env, jclass this, jlong fromAddress, jlong toAddress) argument
735 Java_sun_nio_fs_UnixNativeDispatcher_renameat0(JNIEnv* env, jclass this, jint fromfd, jlong fromAddress, jint tofd, jlong toAddress) argument
753 Java_sun_nio_fs_UnixNativeDispatcher_symlink0(JNIEnv* env, jclass this, jlong targetAddress, jlong linkAddress) argument
766 Java_sun_nio_fs_UnixNativeDispatcher_readlink0(JNIEnv* env, jclass this, jlong pathAddress) argument
793 Java_sun_nio_fs_UnixNativeDispatcher_realpath0(JNIEnv* env, jclass this, jlong pathAddress) argument
814 Java_sun_nio_fs_UnixNativeDispatcher_access0(JNIEnv* env, jclass this, jlong pathAddress, jint amode) argument
827 Java_sun_nio_fs_UnixNativeDispatcher_statvfs0(JNIEnv* env, jclass this, jlong pathAddress, jobject attrs) argument
847 Java_sun_nio_fs_UnixNativeDispatcher_pathconf0(JNIEnv* env, jclass this, jlong pathAddress, jint name) argument
861 Java_sun_nio_fs_UnixNativeDispatcher_fpathconf(JNIEnv* env, jclass this, jint fd, jint name) argument
874 Java_sun_nio_fs_UnixNativeDispatcher_mknod0(JNIEnv* env, jclass this, jlong pathAddress, jint mode, jlong dev) argument
887 Java_sun_nio_fs_UnixNativeDispatcher_getpwuid(JNIEnv* env, jclass this, jint uid) argument
932 Java_sun_nio_fs_UnixNativeDispatcher_getgrgid(JNIEnv* env, jclass this, jint gid) argument
989 Java_sun_nio_fs_UnixNativeDispatcher_getpwnam0(JNIEnv* env, jclass this, jlong nameAddress) argument
1030 Java_sun_nio_fs_UnixNativeDispatcher_getgrnam0(JNIEnv* env, jclass this, jlong nameAddress) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXToolkit.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
81 extern Display* awt_init_Display(JNIEnv *env, jobject this);
164 (JNIEnv *env, jobject this, jintArray systemColors)
404 // considered by schedulers as zero, so this might cause unnecessary
418 * select() by writing to this pipe.
650 * The fdAWTPipe will be empty when this returns.
841 * firts mapped, because DT code calls this ol
163 Java_sun_awt_X11_XToolkit_nativeLoadSystemColors(JNIEnv *env, jobject this, jintArray systemColors) argument
852 Java_sun_awt_motif_XsessionWMcommand(JNIEnv *env, jobject this, jobject frame, jstring jcommand) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11SurfaceData.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
72 getGraphicsConfigFromComponentPeer(JNIEnv *env, jobject this);
205 Java_sun_java2d_x11_XSurfaceData_isDrawableValid(JNIEnv *env, jobject this) argument
210 X11SDOps *xsdo = X11SurfaceData_GetOps(env, this);
228 Java_sun_java2d_x11_X11SurfaceData_isShmPMAvailable(JNIEnv *env, jobject this) argument
243 Java_sun_java2d_x11_X11SurfaceData_isDgaAvailable(JNIEnv *env, jobject this) argument
599 * can get rid of the id so that this segmen
[all...]
H A DXRBackendNative.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
41 * Xrender.h and do this based solely on O/S being any 5.10 version, but this
293 (JNIEnv *env, jobject this, jlong gc) {
299 (JNIEnv *env, jobject this, jint drawable) {
305 Java_sun_java2d_xr_XRBackendNative_createPixmap(JNIEnv *env, jobject this, argument
323 (JNIEnv *env, jobject this, jin
292 Java_sun_java2d_xr_XRBackendNative_freeGC(JNIEnv *env, jobject this, jlong gc) argument
298 Java_sun_java2d_xr_XRBackendNative_createGC(JNIEnv *env, jobject this, jint drawable) argument
322 Java_sun_java2d_xr_XRBackendNative_freePicture(JNIEnv *env, jobject this, jint picture) argument
328 Java_sun_java2d_xr_XRBackendNative_freePixmap(JNIEnv *env, jobject this, jint pixmap) argument
334 Java_sun_java2d_xr_XRBackendNative_setPictureRepeat(JNIEnv *env, jobject this, jint picture, jint repeat) argument
343 Java_sun_java2d_xr_XRBackendNative_setGCExposures(JNIEnv *env, jobject this, jlong gc, jboolean exposure) argument
350 Java_sun_java2d_xr_XRBackendNative_setGCForeground(JNIEnv *env, jobject this, jlong gc, jint pixel) argument
357 Java_sun_java2d_xr_XRBackendNative_copyArea(JNIEnv *env, jobject this, jint src, jint dst, jlong gc, jint srcx, jint srcy, jint width, jint height, jint dstx, jint dsty) argument
365 Java_sun_java2d_xr_XRBackendNative_renderComposite(JNIEnv *env, jobject this, jbyte op, jint src, jint mask, jint dst, jint srcX, jint srcY, jint maskX, jint maskY, jint dstX, jint dstY, jint width, jint height) argument
375 Java_sun_java2d_xr_XRBackendNative_renderRectangle(JNIEnv *env, jobject this, jint dst, jbyte op, jshort red, jshort green, jshort blue, jshort alpha, jint x, jint y, jint width, jint height) argument
585 Java_sun_java2d_xr_XRBackendNative_setFilter(JNIEnv *env, jobject this, jint picture, jint filter) argument
918 Java_sun_java2d_xr_XRBackendNative_setGCMode(JNIEnv *env, jobject this, jlong gc, jboolean copy) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/nio/fs/
H A DWindowsNativeDispatcher.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
108 Java_sun_nio_fs_WindowsNativeDispatcher_initIDs(JNIEnv* env, jclass this) argument
194 Java_sun_nio_fs_WindowsNativeDispatcher_FormatMessage(JNIEnv* env, jclass this, jint errorCode) { argument
214 Java_sun_nio_fs_WindowsNativeDispatcher_LocalFree(JNIEnv* env, jclass this, jlong address) argument
221 Java_sun_nio_fs_WindowsNativeDispatcher_CreateFile0(JNIEnv* env, jclass this, argument
257 Java_sun_nio_fs_WindowsNativeDispatcher_DeviceIoControlSetSparse(JNIEnv* env, jclass this, argument
268 Java_sun_nio_fs_WindowsNativeDispatcher_DeviceIoControlGetReparsePoint(JNIEnv* env, jclass this, argument
283 Java_sun_nio_fs_WindowsNativeDispatcher_DeleteFile0(JNIEnv* env, jclass this, jlong address) argument
292 Java_sun_nio_fs_WindowsNativeDispatcher_CreateDirectory0(JNIEnv* env, jclass this, jlong address, jlong sdAddress) argument
317 Java_sun_nio_fs_WindowsNativeDispatcher_RemoveDirectory0(JNIEnv* env, jclass this, jlong address) argument
326 Java_sun_nio_fs_WindowsNativeDispatcher_CloseHandle(JNIEnv* env, jclass this, jlong handle) argument
334 Java_sun_nio_fs_WindowsNativeDispatcher_FindFirstFile0(JNIEnv* env, jclass this, jlong address, jobject obj) argument
354 Java_sun_nio_fs_WindowsNativeDispatcher_FindFirstFile1(JNIEnv* env, jclass this, jlong pathAddress, jlong dataAddress) argument
368 Java_sun_nio_fs_WindowsNativeDispatcher_FindNextFile(JNIEnv* env, jclass this, jlong handle, jlong dataAddress) argument
384 Java_sun_nio_fs_WindowsNativeDispatcher_FindFirstStream0(JNIEnv* env, jclass this, jlong address, jobject obj) argument
414 Java_sun_nio_fs_WindowsNativeDispatcher_FindNextStream(JNIEnv* env, jclass this, jlong handle) argument
436 Java_sun_nio_fs_WindowsNativeDispatcher_FindClose(JNIEnv* env, jclass this, jlong handle) argument
447 Java_sun_nio_fs_WindowsNativeDispatcher_GetFileInformationByHandle(JNIEnv* env, jclass this, jlong handle, jlong address) argument
460 Java_sun_nio_fs_WindowsNativeDispatcher_CopyFileEx0(JNIEnv* env, jclass this, jlong existingAddress, jlong newAddress, jint flags, jlong cancelAddress) argument
474 Java_sun_nio_fs_WindowsNativeDispatcher_MoveFileEx0(JNIEnv* env, jclass this, jlong existingAddress, jlong newAddress, jint flags) argument
485 Java_sun_nio_fs_WindowsNativeDispatcher_GetLogicalDrives(JNIEnv* env, jclass this) argument
495 Java_sun_nio_fs_WindowsNativeDispatcher_GetFileAttributes0(JNIEnv* env, jclass this, jlong address) argument
508 Java_sun_nio_fs_WindowsNativeDispatcher_SetFileAttributes0(JNIEnv* env, jclass this, jlong address, jint value) argument
518 Java_sun_nio_fs_WindowsNativeDispatcher_GetFileAttributesEx0(JNIEnv* env, jclass this, jlong pathAddress, jlong dataAddress) argument
531 Java_sun_nio_fs_WindowsNativeDispatcher_SetFileTime(JNIEnv* env, jclass this, jlong handle, jlong createTime, jlong lastAccessTime, jlong lastWriteTime) argument
546 Java_sun_nio_fs_WindowsNativeDispatcher_SetEndOfFile(JNIEnv* env, jclass this, jlong handle) argument
557 Java_sun_nio_fs_WindowsNativeDispatcher_GetVolumeInformation0(JNIEnv* env, jclass this, jlong address, jobject obj) argument
595 Java_sun_nio_fs_WindowsNativeDispatcher_GetDriveType0(JNIEnv* env, jclass this, jlong address) argument
602 Java_sun_nio_fs_WindowsNativeDispatcher_GetDiskFreeSpaceEx0(JNIEnv* env, jclass this, jlong address, jobject obj) argument
630 Java_sun_nio_fs_WindowsNativeDispatcher_GetVolumePathName0(JNIEnv* env, jclass this, jlong address) argument
649 Java_sun_nio_fs_WindowsNativeDispatcher_InitializeSecurityDescriptor(JNIEnv* env, jclass this, jlong address) argument
661 Java_sun_nio_fs_WindowsNativeDispatcher_InitializeAcl(JNIEnv* env, jclass this, jlong address, jint size) argument
673 Java_sun_nio_fs_WindowsNativeDispatcher_SetFileSecurity0(JNIEnv* env, jclass this, jlong pathAddress, jint requestedInformation, jlong descAddress) argument
690 Java_sun_nio_fs_WindowsNativeDispatcher_GetFileSecurity0(JNIEnv* env, jclass this, jlong pathAddress, jint requestedInformation, jlong descAddress, jint nLength) argument
716 Java_sun_nio_fs_WindowsNativeDispatcher_GetSecurityDescriptorOwner(JNIEnv* env, jclass this, jlong address) argument
731 Java_sun_nio_fs_WindowsNativeDispatcher_SetSecurityDescriptorOwner(JNIEnv* env, jclass this, jlong descAddress, jlong ownerAddress) argument
744 Java_sun_nio_fs_WindowsNativeDispatcher_GetSecurityDescriptorDacl(JNIEnv* env, jclass this, jlong address) argument
761 Java_sun_nio_fs_WindowsNativeDispatcher_SetSecurityDescriptorDacl(JNIEnv* env, jclass this, jlong descAddress, jlong aclAddress) argument
774 Java_sun_nio_fs_WindowsNativeDispatcher_GetAclInformation0(JNIEnv* env, jclass this, jlong address, jobject obj) argument
788 Java_sun_nio_fs_WindowsNativeDispatcher_GetAce(JNIEnv* env, jclass this, jlong address, jint aceIndex) argument
803 Java_sun_nio_fs_WindowsNativeDispatcher_AddAccessAllowedAceEx(JNIEnv* env, jclass this, jlong aclAddress, jint flags, jint mask, jlong sidAddress) argument
815 Java_sun_nio_fs_WindowsNativeDispatcher_AddAccessDeniedAceEx(JNIEnv* env, jclass this, jlong aclAddress, jint flags, jint mask, jlong sidAddress) argument
828 Java_sun_nio_fs_WindowsNativeDispatcher_LookupAccountSid0(JNIEnv* env, jclass this, jlong address, jobject obj) argument
857 Java_sun_nio_fs_WindowsNativeDispatcher_LookupAccountName0(JNIEnv* env, jclass this, jlong nameAddress, jlong sidAddress, jint cbSid) argument
879 Java_sun_nio_fs_WindowsNativeDispatcher_GetLengthSid(JNIEnv* env, jclass this, jlong address) argument
888 Java_sun_nio_fs_WindowsNativeDispatcher_ConvertSidToStringSid(JNIEnv* env, jclass this, jlong address) argument
905 Java_sun_nio_fs_WindowsNativeDispatcher_ConvertStringSidToSid0(JNIEnv* env, jclass this, jlong address) argument
916 Java_sun_nio_fs_WindowsNativeDispatcher_GetCurrentProcess(JNIEnv* env, jclass this) argument
922 Java_sun_nio_fs_WindowsNativeDispatcher_GetCurrentThread(JNIEnv* env, jclass this) argument
928 Java_sun_nio_fs_WindowsNativeDispatcher_OpenProcessToken(JNIEnv* env, jclass this, jlong process, jint desiredAccess) argument
940 Java_sun_nio_fs_WindowsNativeDispatcher_OpenThreadToken(JNIEnv* env, jclass this, jlong thread, jint desiredAccess, jboolean openAsSelf) argument
956 Java_sun_nio_fs_WindowsNativeDispatcher_DuplicateTokenEx(JNIEnv* env, jclass this, jlong token, jint desiredAccess) argument
975 Java_sun_nio_fs_WindowsNativeDispatcher_SetThreadToken(JNIEnv* env, jclass this, jlong thread, jlong token) argument
986 Java_sun_nio_fs_WindowsNativeDispatcher_GetTokenInformation(JNIEnv* env, jclass this, jlong token, jint tokenInfoClass, jlong tokenInfo, jint tokenInfoLength) argument
1009 Java_sun_nio_fs_WindowsNativeDispatcher_AdjustTokenPrivileges(JNIEnv* env, jclass this, jlong token, jlong luid, jint attributes) argument
1025 Java_sun_nio_fs_WindowsNativeDispatcher_AccessCheck(JNIEnv* env, jclass this, jlong token, jlong securityInfo, jint accessMask, jint genericRead, jint genericWrite, jint genericExecute, jint genericAll) argument
1052 Java_sun_nio_fs_WindowsNativeDispatcher_LookupPrivilegeValue0(JNIEnv* env, jclass this, jlong name) argument
1068 Java_sun_nio_fs_WindowsNativeDispatcher_CreateSymbolicLink0(JNIEnv* env, jclass this, jlong linkAddress, jlong targetAddress, jint flags) argument
1085 Java_sun_nio_fs_WindowsNativeDispatcher_CreateHardLink0(JNIEnv* env, jclass this, jlong newFileAddress, jlong existingFileAddress) argument
1131 Java_sun_nio_fs_WindowsNativeDispatcher_GetFinalPathNameByHandle(JNIEnv* env, jclass this, jlong handle) argument
1171 Java_sun_nio_fs_WindowsNativeDispatcher_CreateIoCompletionPort(JNIEnv* env, jclass this, jlong fileHandle, jlong existingPort, jint completionKey) argument
1186 Java_sun_nio_fs_WindowsNativeDispatcher_GetQueuedCompletionStatus0(JNIEnv* env, jclass this, jlong completionPort, jobject obj) argument
1213 Java_sun_nio_fs_WindowsNativeDispatcher_PostQueuedCompletionStatus(JNIEnv* env, jclass this, jlong completionPort, jint completionKey) argument
1228 Java_sun_nio_fs_WindowsNativeDispatcher_ReadDirectoryChangesW(JNIEnv* env, jclass this, jlong hDirectory, jlong bufferAddress, jint bufferLength, jboolean watchSubTree, jint filter, jlong bytesReturnedAddress, jlong pOverlapped) argument
1250 Java_sun_nio_fs_WindowsNativeDispatcher_BackupRead0(JNIEnv* env, jclass this, jlong hFile, jlong bufferAddress, jint bufferSize, jboolean abort, jlong context, jobject obj) argument
1277 Java_sun_nio_fs_WindowsNativeDispatcher_BackupSeek(JNIEnv* env, jclass this, jlong hFile, jlong bytesToSeek, jlong context) argument
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A DimageioJPEG.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
172 * Free all resources associated with this streamBuffer. This must
205 * Pins the data buffer associated with this stream. Returns OK on
228 * Unpins the data buffer associated with this stream.
299 * releases the global reference, and resets fields to NULL. Use this
370 * to the imageIOData object. Maintenance of this pointer is performed
433 * Releases all resources held by this objec
659 imageio_abort(JNIEnv *env, jobject this, imageIODataPtr data) argument
1439 Java_com_sun_imageio_plugins_jpeg_JPEGImageReader_initJPEGImageReader(JNIEnv *env, jobject this) argument
1531 Java_com_sun_imageio_plugins_jpeg_JPEGImageReader_setSource(JNIEnv *env, jobject this, jlong ptr) argument
1564 Java_com_sun_imageio_plugins_jpeg_JPEGImageReader_readImageHeader(JNIEnv *env, jobject this, jlong ptr, jboolean clearFirst, jboolean reset) argument
1767 Java_com_sun_imageio_plugins_jpeg_JPEGImageReader_setOutColorSpace(JNIEnv *env, jobject this, jlong ptr, jint code) argument
1790 Java_com_sun_imageio_plugins_jpeg_JPEGImageReader_readImage(JNIEnv *env, jobject this, jlong ptr, jbyteArray buffer, jint numBands, jintArray srcBands, jintArray bandSizes, jint sourceXStart, jint sourceYStart, jint sourceWidth, jint sourceHeight, jint stepX, jint stepY, jobjectArray qtables, jobjectArray DCHuffmanTables, jobjectArray ACHuffmanTables, jint minProgressivePass, jint maxProgressivePass, jboolean wantUpdates) argument
2120 Java_com_sun_imageio_plugins_jpeg_JPEGImageReader_abortRead(JNIEnv *env, jobject this, jlong ptr) argument
2139 Java_com_sun_imageio_plugins_jpeg_JPEGImageReader_resetLibraryState(JNIEnv *env, jobject this, jlong ptr) argument
2160 Java_com_sun_imageio_plugins_jpeg_JPEGImageReader_resetReader(JNIEnv *env, jobject this, jlong ptr) argument
2412 Java_com_sun_imageio_plugins_jpeg_JPEGImageWriter_initJPEGImageWriter(JNIEnv *env, jobject this) argument
2494 Java_com_sun_imageio_plugins_jpeg_JPEGImageWriter_setDest(JNIEnv *env, jobject this, jlong ptr) argument
2520 Java_com_sun_imageio_plugins_jpeg_JPEGImageWriter_writeTables(JNIEnv *env, jobject this, jlong ptr, jobjectArray qtables, jobjectArray DCHuffmanTables, jobjectArray ACHuffmanTables) argument
2587 Java_com_sun_imageio_plugins_jpeg_JPEGImageWriter_writeImage(JNIEnv *env, jobject this, jlong ptr, jbyteArray buffer, jint inCs, jint outCs, jint numBands, jintArray bandSizes, jint srcWidth, jint destWidth, jint destHeight, jint stepX, jint stepY, jobjectArray qtables, jboolean writeDQT, jobjectArray DCHuffmanTables, jobjectArray ACHuffmanTables, jboolean writeDHT, jboolean optimize, jboolean progressive, jint numScans, jintArray scanInfo, jintArray componentIds, jintArray HsamplingFactors, jintArray VsamplingFactors, jintArray QtableSelectors, jboolean haveMetadata, jint restartInterval) argument
2963 Java_com_sun_imageio_plugins_jpeg_JPEGImageWriter_abortWrite(JNIEnv *env, jobject this, jlong ptr) argument
2981 Java_com_sun_imageio_plugins_jpeg_JPEGImageWriter_resetWriter(JNIEnv *env, jobject this, jlong ptr) argument
[all...]
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dawt_ImagingLib.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
235 Java_sun_awt_image_ImagingLib_convolveBI(JNIEnv *env, jobject this, argument
476 Java_sun_awt_image_ImagingLib_convolveRaster(JNIEnv *env, jobject this, argument
736 Java_sun_awt_image_ImagingLib_transformBI(JNIEnv *env, jobject this, argument
785 * Very unlikely, however we should check for this:
944 Java_sun_awt_image_ImagingLib_transformRaster(JNIEnv *env, jobject this, argument
1001 * Very unlikely, however we should check for this
1498 Java_sun_awt_image_ImagingLib_lookupByteRaster(JNIEnv *env, jobject this, jobject jsrc, jobject jdst, jobjectArray jtableArrays) argument
[all...]
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
15 * accompanied this code).
18 * 2 along with this work; if not, write to the Free Software Foundation,
118 ITEM_InitObject, /* "this" is init method, before call
305 unsigned protected:1; /* must accessor be a subclass of "this" */
315 #define FLAG_NEED_CONSTRUCTOR 0x02 /* must call this.<init> or super.<init> */
317 flag_type or_flags; /* true for at least one path to this inst */
318 #define FLAG_CONSTRUCTED 0x01 /* this.<init> or super.<init> called */
319 flag_type and_flags; /* true for all paths to this instructio
3485 struct CCpool *this = context->CCroot; local
[all...]

Completed in 106 milliseconds

12345