| 63 | } |
| 64 | |
| 65 | extern "C" JNIEXPORT void JNICALL |
| 66 | Java_java_net_Socket_closeInput(JNIEnv* e, jclass, jlong sock) |
| 67 | { |
| 68 | close_input(e, static_cast<SOCKET>(sock)); |
| 69 | } |
| 70 | |
| 71 | extern "C" JNIEXPORT void JNICALL |
| 72 | Avian_java_net_Socket_send(vm::Thread* t, vm::object, uintptr_t* arguments) |
nothing calls this directly
no test coverage detected