Searched refs:errnum (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/share/demo/jvmti/agent_util/
H A Dagent_util.h63 void check_jvmti_error(jvmtiEnv *jvmti, jvmtiError errnum, const char *str);
H A Dagent_util.c200 check_jvmti_error(jvmtiEnv *jvmti, jvmtiError errnum, const char *str) argument
202 if ( errnum != JVMTI_ERROR_NONE ) {
206 (void)(*jvmti)->GetErrorName(jvmti, errnum, &errnum_str);
208 fatal_error("ERROR: JVMTI: %d(%s): %s\n", errnum,
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DUnixCopyFile.c41 static void throwUnixException(JNIEnv* env, int errnum) { argument
43 "(I)V", errnum);
H A DSolarisWatchService.c38 static void throwUnixException(JNIEnv* env, int errnum) { argument
40 "(I)V", errnum);
H A DLinuxWatchService.c40 static void throwUnixException(JNIEnv* env, int errnum) { argument
42 "(I)V", errnum);
H A DSolarisNativeDispatcher.c47 static void throwUnixException(JNIEnv* env, int errnum) { argument
49 "(I)V", errnum);
H A DBsdNativeDispatcher.c58 static void throwUnixException(JNIEnv* env, int errnum) { argument
60 "(I)V", errnum);
H A DLinuxNativeDispatcher.c54 static void throwUnixException(JNIEnv* env, int errnum) { argument
56 "(I)V", errnum);
H A DUnixNativeDispatcher.c157 static void throwUnixException(JNIEnv* env, int errnum) { argument
159 "(I)V", errnum);
/openjdk7/jdk/src/solaris/native/java/lang/
H A DUNIXProcess_md.c479 throwIOException(JNIEnv *env, int errnum, const char *defaultDetail) argument
486 if (errnum != 0) {
487 const char *s = strerror(errnum);
492 errmsg = NEW(char, strlen(format) + strlen(detail) + 3 * sizeof(errnum));
493 sprintf(errmsg, format, errnum, detail);
770 int errnum = errno; local
771 restartableWrite(FAIL_FILENO, &errnum, sizeof(errnum));
837 int errnum; local
910 switch (readFully(fail[0], &errnum, sizeo
[all...]
/openjdk7/jdk/src/windows/native/java/lang/
H A DProcessImpl_md.c116 const int errnum = GetLastError(); local
119 sprintf(errmsg, format, functionName, errnum, buf);
121 sprintf(errmsg, fallbackFormat, functionName, errnum);
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dgzio.c999 # define zstrerror(errnum) strerror(errnum)
1001 # define zstrerror(errnum) ""
1006 given compressed file. errnum is set to zlib error number. If an
1008 errnum is set to Z_ERRNO and the application may consult errno
1011 const char * ZEXPORT gzerror (file, errnum)
1013 int *errnum;
1019 *errnum = Z_STREAM_ERROR;
1022 *errnum = s->z_err;
1023 if (*errnum
[all...]
H A Dzlib.h1260 ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum));
1263 given compressed file. errnum is set to zlib error number. If an
1265 errnum is set to Z_ERRNO and the application may consult errno
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixNativeDispatcher.java536 * char* strerror(int errnum)
538 static native byte[] strerror(int errnum); argument
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_check.c139 system_error(const char *system_call, int rc, int errnum) argument
145 if ( errnum != 0 ) {
H A Dhprof_io.c259 system_error(const char *system_call, int rc, int errnum) argument
265 if ( errnum != 0 ) {

Completed in 327 milliseconds