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

12345

/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DSocketChannelImpl.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,
49 Java_sun_nio_ch_SocketChannelImpl_checkConnect(JNIEnv *env, jobject this, argument
89 Java_sun_nio_ch_SocketChannelImpl_sendOutOfBandData(JNIEnv* env, jclass this, argument
H A DEPoll.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,
40 Java_sun_nio_ch_EPoll_eventSize(JNIEnv* env, jclass this) argument
46 Java_sun_nio_ch_EPoll_eventsOffset(JNIEnv* env, jclass this) argument
52 Java_sun_nio_ch_EPoll_dataOffset(JNIEnv* env, jclass this) argument
H A DKQueue.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,
40 Java_sun_nio_ch_KQueue_keventSize(JNIEnv* env, jclass this) argument
46 Java_sun_nio_ch_KQueue_identOffset(JNIEnv* env, jclass this) argument
52 Java_sun_nio_ch_KQueue_filterOffset(JNIEnv* env, jclass this) argument
58 Java_sun_nio_ch_KQueue_flagsOffset(JNIEnv* env, jclass this) argument
H A DEPollArrayWrapper.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,
75 Java_sun_nio_ch_EPollArrayWrapper_init(JNIEnv *env, jclass this) argument
80 Java_sun_nio_ch_EPollArrayWrapper_epollCreate(JNIEnv *env, jobject this) argument
94 Java_sun_nio_ch_EPollArrayWrapper_sizeofEPollEvent(JNIEnv* env, jclass this) argument
100 Java_sun_nio_ch_EPollArrayWrapper_offsetofData(JNIEnv* env, jclass this) argument
106 Java_sun_nio_ch_EPollArrayWrapper_epollCtl(JNIEnv *env, jobject this, jint epfd, argument
133 Java_sun_nio_ch_EPollArrayWrapper_epollWait(JNIEnv *env, jobject this, argument
153 Java_sun_nio_ch_EPollArrayWrapper_interrupt(JNIEnv *env, jobject this, jint fd) argument
[all...]
H A DPollArrayWrapper.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 Java_sun_nio_ch_PollArrayWrapper_poll0(JNIEnv *env, jobject this, argument
94 Java_sun_nio_ch_PollArrayWrapper_interrupt(JNIEnv *env, jobject this, jint fd) argument
H A DServerSocketChannelImpl.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,
36 typedef size_t socklen_t; /* New in SunOS 5.7, so need this for 5.6 */
69 Java_sun_nio_ch_ServerSocketChannelImpl_accept0(JNIEnv *env, jobject this, argument
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DMacOSXNativeDispatcher.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,
37 Java_sun_nio_fs_MacOSXNativeDispatcher_normalizepath(JNIEnv* env, jclass this, argument
H A DUnixCopyFile.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,
54 (JNIEnv* env, jclass this, jint dst, jint src, jlong cancelAddress)
53 Java_sun_nio_fs_UnixCopyFile_transfer(JNIEnv* env, jclass this, jint dst, jint src, jlong cancelAddress) argument
/openjdk7/jdk/src/windows/native/java/io/
H A DFileOutputStream_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,
57 Java_java_io_FileOutputStream_open(JNIEnv *env, jobject this, argument
59 fileOpen(env, this, path, fos_fd,
64 Java_java_io_FileOutputStream_write(JNIEnv *env, jobject this, jint byte, jboolean append) { argument
65 writeSingle(env, this, byte, append, fos_fd);
70 jobject this, jbyteArray bytes, jint off, jint len, jboolean append)
72 writeBytes(env, this, byte
69 Java_java_io_FileOutputStream_writeBytes(JNIEnv *env, jobject this, jbyteArray bytes, jint off, jint len, jboolean append) argument
76 Java_java_io_FileOutputStream_close0(JNIEnv *env, jobject this) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DFileKey.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,
48 Java_sun_nio_ch_FileKey_init(JNIEnv *env, jobject this, jobject fdo) argument
56 (*env)->SetLongField(env, this, key_volumeSN, fileInfo.dwVolumeSerialNumber);
57 (*env)->SetLongField(env, this, key_indexHigh, fileInfo.nFileIndexHigh);
58 (*env)->SetLongField(env, this, key_indexLow, fileInfo.nFileIndexLow);
H A DServerSocketChannelImpl.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,
77 Java_sun_nio_ch_ServerSocketChannelImpl_accept0(JNIEnv *env, jobject this, argument
H A DSocketChannelImpl.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,
57 Java_sun_nio_ch_SocketChannelImpl_checkConnect(JNIEnv *env, jobject this, argument
111 * winsock to be scheduled and this is done via by yielding.
144 Java_sun_nio_ch_SocketChannelImpl_sendOutOfBandData(JNIEnv* env, jclass this, argument
H A DWindowsAsynchronousFileChannelImpl.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,
38 Java_sun_nio_ch_WindowsAsynchronousFileChannelImpl_readFile(JNIEnv* env, jclass this, argument
68 Java_sun_nio_ch_WindowsAsynchronousFileChannelImpl_writeFile(JNIEnv* env, jclass this, argument
96 Java_sun_nio_ch_WindowsAsynchronousFileChannelImpl_lockFile(JNIEnv *env, jobject this, jlong handle, argument
125 Java_sun_nio_ch_WindowsAsynchronousFileChannelImpl_close0(JNIEnv* env, jclass this, argument
H A DWindowsAsynchronousServerSocketChannelImpl.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,
65 Java_sun_nio_ch_WindowsAsynchronousServerSocketChannelImpl_initIDs(JNIEnv* env, jclass this) { argument
91 Java_sun_nio_ch_WindowsAsynchronousServerSocketChannelImpl_accept0(JNIEnv* env, jclass this, argument
124 Java_sun_nio_ch_WindowsAsynchronousServerSocketChannelImpl_updateAcceptContext(JNIEnv* env, jclass this, argument
135 Java_sun_nio_ch_WindowsAsynchronousServerSocketChannelImpl_closesocket0(JNIEnv* env, jclass this, argument
/openjdk7/jdk/src/windows/native/sun/nio/fs/
H A DRegistryFileTypeDetector.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,
36 Java_sun_nio_fs_RegistryFileTypeDetector_queryStringValue(JNIEnv* env, jclass this, argument
/openjdk7/jdk/src/share/native/java/io/
H A DObjectStreamClass.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 Java_java_io_ObjectStreamClass_initNative(JNIEnv *env, jclass this) argument
59 Java_java_io_ObjectStreamClass_hasStaticInitializer(JNIEnv *env, jclass this, argument
78 * Empirically, this step appears to be unnecessary in 1.4; however, the
H A DFileInputStream.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,
60 Java_java_io_FileInputStream_open(JNIEnv *env, jobject this, jstring path) { argument
61 fileOpen(env, this, path, fis_fd, O_RDONLY);
65 Java_java_io_FileInputStream_read0(JNIEnv *env, jobject this) { argument
66 return readSingle(env, this, fis_fd);
70 Java_java_io_FileInputStream_readBytes(JNIEnv *env, jobject this, argument
72 return readBytes(env, this, byte
76 Java_java_io_FileInputStream_skip(JNIEnv *env, jobject this, jlong toSkip) argument
93 Java_java_io_FileInputStream_available(JNIEnv *env, jobject this) argument
[all...]
/openjdk7/jdk/src/share/native/java/lang/
H A DRuntime.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,
27 * Link foreign methods. This first half of this file contains the
30 * the implementation of this shared dynamic linking
33 * NOTE - source in this file is POSIX.1 compliant, host
45 Java_java_lang_Runtime_freeMemory(JNIEnv *env, jobject this) argument
51 Java_java_lang_Runtime_totalMemory(JNIEnv *env, jobject this) argument
57 Java_java_lang_Runtime_maxMemory(JNIEnv *env, jobject this) argument
63 Java_java_lang_Runtime_gc(JNIEnv *env, jobject this) argument
69 Java_java_lang_Runtime_traceInstructions(JNIEnv *env, jobject this, jboolean on) argument
75 Java_java_lang_Runtime_traceMethodCalls(JNIEnv *env, jobject this, jboolean on) argument
81 Java_java_lang_Runtime_runFinalization0(JNIEnv *env, jobject this) argument
94 Java_java_lang_Runtime_availableProcessors(JNIEnv *env, jobject this) argument
[all...]
H A DSecurityManager.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,
38 check(JNIEnv *env, jobject this) argument
55 initialized = (*env)->GetBooleanField(env, this, initField);
71 Java_java_lang_SecurityManager_getClassContext(JNIEnv *env, jobject this) argument
73 if (!check(env, this)) {
81 Java_java_lang_SecurityManager_currentLoadedClass0(JNIEnv *env, jobject this) argument
84 if (!check(env, this)) {
92 Java_java_lang_SecurityManager_currentClassLoader0(JNIEnv *env, jobject this) argument
103 Java_java_lang_SecurityManager_classDepth(JNIEnv *env, jobject this, jstring name) argument
120 Java_java_lang_SecurityManager_classLoaderDepth0(JNIEnv *env, jobject this) argument
[all...]
/openjdk7/jdk/src/share/native/java/security/
H A DAccessController.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,
84 jobject this)
86 return JVM_GetStackAccessControlContext(env, this);
93 jobject this)
95 return JVM_GetInheritedAccessControlContext(env, this);
82 Java_java_security_AccessController_getStackAccessControlContext( JNIEnv *env, jobject this) argument
91 Java_java_security_AccessController_getInheritedAccessControlContext( JNIEnv *env, jobject this) argument
/openjdk7/jdk/src/solaris/native/java/io/
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,
66 fileOpen(JNIEnv *env, jobject this, jstring path, jfieldID fid, int flags) argument
79 SET_FD(this, fd, fid);
88 fileClose(JNIEnv *env, jobject this, jfieldID fid) argument
90 FD fd = GET_FD(this, fid);
101 SET_FD(this, -1, fid);
111 SET_FD(this, f
[all...]
/openjdk7/jdk/src/solaris/native/java/net/
H A DSocketOutputStream.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,
62 Java_java_net_SocketOutputStream_socketWrite0(JNIEnv *env, jobject this, argument
76 /* Bug 4086704 - If the Socket associated with this file descriptor
/openjdk7/jdk/src/windows/native/java/net/
H A DSocketInputStream.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,
61 Java_java_net_SocketInputStream_socketRead0(JNIEnv *env, jobject this, argument
H A DSocketOutputStream.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,
60 Java_java_net_SocketOutputStream_socketWrite0(JNIEnv *env, jobject this, argument
122 * for 1 second and retry again. We repeat this up to a reasonable
125 * attempts but this depends on network buffers associated with
/openjdk7/jdk/src/macosx/native/sun/nio/ch/
H A DKQueueArrayWrapper.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 Java_sun_nio_ch_KQueueArrayWrapper_init(JNIEnv *env, jobject this) argument
109 Java_sun_nio_ch_KQueueArrayWrapper_register0(JNIEnv *env, jobject this, argument
128 Java_sun_nio_ch_KQueueArrayWrapper_kevent0(JNIEnv *env, jobject this, jint kq, argument

Completed in 76 milliseconds

12345