JavaNativeMethodImpl_OpenJDK6.st
branchdevelopment
changeset 2959 3e837849ce3e
parent 2958 bbd626006ab0
child 2965 bac7022ca26a
--- a/JavaNativeMethodImpl_OpenJDK6.st	Mon Dec 09 23:52:18 2013 +0000
+++ b/JavaNativeMethodImpl_OpenJDK6.st	Tue Dec 10 10:46:13 2013 +0000
@@ -899,7 +899,7 @@
 
     "/ Apparently, invocation of interface method initializes the class,
     "/ so check whether the method is an interface one and if so, initialize
-    "/ the interface...   
+    "/ the interface...
     (isConstructor not and:[method isStatic not and:[method javaClass interfaces notEmpty]]) ifTrue:[
         | selector ifacesQ ifacesSeen |
 
@@ -915,7 +915,7 @@
                     ifacesSeen add: iface.
                     m := iface compiledMethodAt: selector.
                     m notNil ifTrue:[
-                        "/ OK, it's an interface method, initialize the class    
+                        "/ OK, it's an interface method, initialize the class
                         m javaClass classInit.
                     ].
                 ].
@@ -925,9 +925,9 @@
                 ifaces do:[:iface| newIfaces addAll: iface interfaces ].
                 newIfaces notEmpty ifTrue:[
                     ifacesQ add: newIfaces.
-                ].        
+                ].
             ] ifFalse:[
-                "/ It's an inteface method, so clear the queue to terminate the loop.    
+                "/ It's an inteface method, so clear the queue to terminate the loop.
                 ifacesQ := #()
             ].
         ]
@@ -936,7 +936,7 @@
 
     "Fire the method"
     [
-        retval := method isStatic 
+        retval := method isStatic
             ifTrue:[ method valueWithReceiver: method javaClass arguments: bargs ]
             ifFalse:[ method valueWithReceiver: obj arguments: bargs ].
     ] on: (JavaVM classForName:'java.lang.Throwable' definedBy:nil) do:[:ex |
@@ -6834,7 +6834,7 @@
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_com_sun_imageio_plugins_jpeg_JPEGImageReader_setSource: this _: a1 _: a2 
+_com_sun_imageio_plugins_jpeg_JPEGImageReader_setSource: this _: a1 _: a2
 
     <javanative: 'com/sun/imageio/plugins/jpeg/JPEGImageReader' name: 'setSource(J)V'>
 
@@ -6869,7 +6869,7 @@
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_com_sun_imageio_plugins_jpeg_JPEGImageWriter_initWriterIDs: this _: a1 _: a2 
+_com_sun_imageio_plugins_jpeg_JPEGImageWriter_initWriterIDs: this _: a1 _: a2
 
     <javanative: 'com/sun/imageio/plugins/jpeg/JPEGImageWriter' name: 'initWriterIDs(Ljava/lang/Class;Ljava/lang/Class;)V'>
 
@@ -6890,7 +6890,7 @@
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_com_sun_imageio_plugins_jpeg_JPEGImageWriter_setDest: this _: a1 _: a2 
+_com_sun_imageio_plugins_jpeg_JPEGImageWriter_setDest: this _: a1 _: a2
 
     <javanative: 'com/sun/imageio/plugins/jpeg/JPEGImageWriter' name: 'setDest(J)V'>
 
@@ -9142,7 +9142,7 @@
     path := Java as_ST_String: name.
     [
         file := FileStream basicNew.
-        result := (file openFile: path withMode: #(GENERIC_READ_WRITE FILE_SHARE_READ FILE_SHARE_WRITE  CREATE_NEW) attributes: nil)  notNil ifTrue:[1] ifFalse:[0]. 
+        result := (file openFile: path withMode: #(GENERIC_READ_WRITE FILE_SHARE_READ FILE_SHARE_WRITE  CREATE_NEW) attributes: nil)  notNil ifTrue:[1] ifFalse:[0].
         file close.
     ] on: OpenError do:[
         result := 0.
@@ -9503,7 +9503,7 @@
                 JavaVM throwClassNotFoundException:nm.
                 ^ nil
             ].
-            nm := nm copyFrom: dim + 2 to: nm size - 1.  
+            nm := nm copyFrom: dim + 2 to: nm size - 1.
             nmAsJavaString := Java as_String: nm.
         ] ifFalse:[
             "/ Primitive type array
@@ -9516,7 +9516,7 @@
                 ^ nil
             ].
             dim timesRepeat: [ class := class javaArrayClass ].
-            ^ JavaVM javaClassObjectForClass:class. 
+            ^ JavaVM javaClassObjectForClass:class.
         ].
     ].
 
@@ -9526,24 +9526,24 @@
         class :=  JavaVM classForName: nm definedBy: nil.
         class isNil ifTrue:[ ^ JavaVM throwClassNotFoundException:nm ].
         ((initialize ~~ 0)
-            and:[class isJavaArrayClass not 
+            and:[class isJavaArrayClass not
             and:[class isJavaPrimitiveType not]])
             ifTrue:[
                 "/JV: Should be removed/rewieved once bug #47 is closed.
                 [ class classInit ] on: Error do:[ self throwExceptionInInitializerError:nm ]
             ].
         dim timesRepeat: [ class := class javaArrayClass ].
-        classObject := JavaVM javaClassObjectForClass:class.        
-    ] ifFalse:[ 
+        classObject := JavaVM javaClassObjectForClass:class.
+    ] ifFalse:[
         "/ Custom class loader, call loadClass(String, boolean)...
-        classObject :=  loader 
+        classObject :=  loader
                             perform:#'loadClass(Ljava/lang/String;Z)Ljava/lang/Class;'
-                            with: nmAsJavaString 
+                            with: nmAsJavaString
                             with: initialize.
         dim > 0 ifTrue:[
-            class := JavaVM classForJavaClassObject:classObject.        
+            class := JavaVM classForJavaClassObject:classObject.
             dim timesRepeat: [ class := class javaArrayClass ].
-            classObject := JavaVM javaClassObjectForClass:class.        
+            classObject := JavaVM javaClassObjectForClass:class.
         ].
     ].
     ^ classObject
@@ -9668,7 +9668,7 @@
     "Modified: / 01-08-2012 / 11:15:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_getDeclaringClass0: this 
+_java_lang_Class_getDeclaringClass0: this
 
     <javanative: 'java/lang/Class' name: 'getDeclaringClass0()Ljava/lang/Class;'>
 
@@ -10204,7 +10204,7 @@
     union {
         double d;
         __int64__ l;
-    } u;   
+    } u;
     __signedLong64IntVal(i, &(u.l));
     __floatVal(f) = u.d;
 %}.
@@ -10261,7 +10261,7 @@
     } u;
     u.f = __shortFloatVal(f);
     RETURN ( __MKINT( u.i ) );
-%}. 
+%}.
     self primitiveFailed.
 
     "Created: / 09-11-2010 / 20:59:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
@@ -10279,9 +10279,9 @@
     union {
         float f;
         INT i;
-    } u;      
+    } u;
     u.i = __signedLongIntVal(ii);
-    __shortFloatVal(ff) = u.f;            
+    __shortFloatVal(ff) = u.f;
 %}.
     ^ff
 
@@ -12227,8 +12227,8 @@
     ].
 
     sockaddr := IPSocketAddress new.
-    sockaddr hostAddress: (jaddr perform: #'getAddress()[B').    
-    sockaddr port: port.      
+    sockaddr hostAddress: (jaddr perform: #'getAddress()[B').
+    sockaddr port: port.
 
     sock := self validateFile:this.
 
@@ -12305,7 +12305,7 @@
 
     | sock sockaddr |
 
-    sock := self validateFile: this. 
+    sock := self validateFile: this.
     sockaddr := IPSocketAddress new.
     sock connectTo: sockaddr port: (this instVarNamed: #localPort)
 
@@ -12384,7 +12384,7 @@
 
     | sock sockaddr dbuffer offset len address tout |
 
-    sock := self validateFile: this. 
+    sock := self validateFile: this.
     sockaddr := IPSocketAddress new.
     dbuffer := packet instVarAt: _java_net_DatagramPacket_buf_ID.
     offset  := packet instVarAt: _java_net_DatagramPacket_offset_ID.
@@ -12420,10 +12420,10 @@
     sock := self validateFile:this.
     address := packet instVarAt: _java_net_DatagramPacket_address_ID.
     address isNil ifTrue:[
-        JavaVM throwNullPointerException: 'null address in datagram packet'. 
+        JavaVM throwNullPointerException: 'null address in datagram packet'.
     ].
     sockaddr := IPSocketAddress new.
-    sockaddr hostAddress: (address perform: #'getAddress()[B').    
+    sockaddr hostAddress: (address perform: #'getAddress()[B').
     sockaddr port: (packet instVarAt: _java_net_DatagramPacket_port_ID).
     sockaddr port == 0 ifTrue:[
         JavaVM throwIOExceptionWithMessage: 'port 0 is reserved'.
@@ -12464,20 +12464,20 @@
 
     | sock ret |
 
-    sock := self validateFile: this.         
+    sock := self validateFile: this.
 
 "/    case IP_TOS:
     optid == 16r1002 ifTrue:[
         self breakPoint: #jv.
-        ^Java as_Integer:-1 "/Unsupported           
+        ^Java as_Integer:-1 "/Unsupported
     ].
 
 "/    case SO_BINDADDR:
     optid == 16rF ifTrue:[
         | addr |
-"/        ^ Java as_Integer: (sock getSocketAddress doubleWordAt:1) 
+"/        ^ Java as_Integer: (sock getSocketAddress doubleWordAt:1)
         addr := sock getFullSocketAddress.
-        ^ (JavaVM classForName:'java.net.Inet4Address') basicNew 
+        ^ (JavaVM classForName:'java.net.Inet4Address') basicNew
                 perform: #'<init>(Ljava/lang/String;[B)V'
                 with: (Java as_String: addr hostName)
                 with: (addr hostAddress);
@@ -12689,8 +12689,8 @@
     |sock sockaddr ok err|
 
     sockaddr := IPSocketAddress new.
-    sockaddr hostAddress: (addr perform: #'getAddress()[B').    
-    sockaddr port: port.    
+    sockaddr hostAddress: (addr perform: #'getAddress()[B').
+    sockaddr port: port.
 
     sock := self validateFile:this.
     sock notNil ifTrue:[
@@ -12737,8 +12737,8 @@
     ].
 
     sockaddr := IPSocketAddress new.
-    sockaddr hostAddress: (jaddr perform: #'getAddress()[B').    
-    sockaddr port: port.           
+    sockaddr hostAddress: (jaddr perform: #'getAddress()[B').
+    sockaddr port: port.
 
     sock := self validateFile:this.
 
@@ -13784,14 +13784,18 @@
 
     <javanative: 'java/util/zip/ZipFile' name: 'freeEntry(JJ)V'>
 
-    jzentry = 0 ifFalse: [ 
+    jzentry = 0 ifFalse: [
         ZipEntryCacheLock critical:[
+            "/Logger
+            "/    log: 'java.util.zip.ZipFile.freeEntry() called for ', jzentry printString
+            "/    severity: #debug
+            "/    facility: 'JVM'.
             ZipEntryCache at: jzentry put: ZipEntryCacheFirstFree.
             ZipEntryCacheFirstFree := jzentry.
         ].
     ].
 
-    "Modified: / 09-12-2013 / 23:23:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 10-12-2013 / 00:55:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 _java_util_zip_ZipFile_getCSize: this _:a1 _: a2
@@ -13820,7 +13824,7 @@
     member isNil ifTrue: [
         ^ 0
     ] ifFalse: [
-        ^ ZipEntryCache indexOf: member ifAbsent:[
+        "/^ ZipEntryCache indexOf: member ifAbsent:[
             | index |
 
             ZipEntryCacheLock critical:[
@@ -13833,14 +13837,18 @@
                     ZipEntryCache at: index put: member.
                 ].
             ].
-            index.
-        ].
+            "/Logger
+            "/    log: 'java.util.zip.ZipFile.getEntry()  called for ', index printString
+            "/    severity: #debug
+            "/    facility: 'JVM'.
+            ^ index.
+        "/"].
     ].
 
     "Created: / 27-03-2011 / 16:59:03 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
     "Modified: / 01-04-2011 / 16:03:01 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
     "Modified: / 18-08-2011 / 19:44:56 / jv"
-    "Modified: / 09-12-2013 / 23:26:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 10-12-2013 / 00:57:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 _java_util_zip_ZipFile_getMethod: this _:a1 _: a2
@@ -13867,7 +13875,7 @@
     i := 0.
     zipArchive zipMembersDo:[:member |
         index == i ifTrue:[
-            ^ ZipEntryCache indexOf: member ifAbsent:[
+            "/^ ZipEntryCache indexOf: member ifAbsent:[
                 | index |
 
                 ZipEntryCacheLock critical:[
@@ -13880,14 +13888,18 @@
                         ZipEntryCache at: index put: member.
                     ].
                 ].
-                index.
-            ].
+                "/Logger
+                "/    log: 'java.util.zip.ZipFile.getNextEntry() called for ', index printString
+                "/    severity: #debug
+                "/    facility: 'JVM'.
+                ^ index.
+            "/].
         ].
         i := i + 1.
     ].
     ^0
 
-    "Modified: / 09-12-2013 / 23:29:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 10-12-2013 / 00:56:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 _java_util_zip_ZipFile_getSize: this _:a1 _: a2
@@ -14001,7 +14013,7 @@
     "Modified: / 01-05-2011 / 16:22:03 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_ZipFile_startsWithLOC: this _: a1 _: a2 
+_java_util_zip_ZipFile_startsWithLOC: this _: a1 _: a2
 
     <javanative: 'java/util/zip/ZipFile' name: 'startsWithLOC(J)Z'>
 
@@ -14013,112 +14025,112 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - org.GNOME.Accessibility'!
 
-_org_GNOME_Accessibility_AtkWrapper_componentAdded: this _: a1 
+_org_GNOME_Accessibility_AtkWrapper_componentAdded: this _: a1
 
     <javanative: 'org/GNOME/Accessibility/AtkWrapper' name: 'componentAdded(Ljavax/accessibility/AccessibleContext;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_GNOME_Accessibility_AtkWrapper_componentRemoved: this _: a1 
+_org_GNOME_Accessibility_AtkWrapper_componentRemoved: this _: a1
 
     <javanative: 'org/GNOME/Accessibility/AtkWrapper' name: 'componentRemoved(Ljavax/accessibility/AccessibleContext;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_GNOME_Accessibility_AtkWrapper_dispatchKeyEvent: this _: a1 
+_org_GNOME_Accessibility_AtkWrapper_dispatchKeyEvent: this _: a1
 
     <javanative: 'org/GNOME/Accessibility/AtkWrapper' name: 'dispatchKeyEvent(Lorg/GNOME/Accessibility/AtkKeyEvent;)Z'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_GNOME_Accessibility_AtkWrapper_emitSignal: this _: a1 _: a2 _: a3 
+_org_GNOME_Accessibility_AtkWrapper_emitSignal: this _: a1 _: a2 _: a3
 
     <javanative: 'org/GNOME/Accessibility/AtkWrapper' name: 'emitSignal(Ljavax/accessibility/AccessibleContext;I[Ljava/lang/Object;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_GNOME_Accessibility_AtkWrapper_focusNotify: this _: a1 
+_org_GNOME_Accessibility_AtkWrapper_focusNotify: this _: a1
 
     <javanative: 'org/GNOME/Accessibility/AtkWrapper' name: 'focusNotify(Ljavax/accessibility/AccessibleContext;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_GNOME_Accessibility_AtkWrapper_initNativeLibrary: this 
+_org_GNOME_Accessibility_AtkWrapper_initNativeLibrary: this
 
     <javanative: 'org/GNOME/Accessibility/AtkWrapper' name: 'initNativeLibrary()Z'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_GNOME_Accessibility_AtkWrapper_loadAtkBridge: this 
+_org_GNOME_Accessibility_AtkWrapper_loadAtkBridge: this
 
     <javanative: 'org/GNOME/Accessibility/AtkWrapper' name: 'loadAtkBridge()V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_GNOME_Accessibility_AtkWrapper_objectStateChange: this _: a1 _: a2 _: a3 
+_org_GNOME_Accessibility_AtkWrapper_objectStateChange: this _: a1 _: a2 _: a3
 
     <javanative: 'org/GNOME/Accessibility/AtkWrapper' name: 'objectStateChange(Ljavax/accessibility/AccessibleContext;Ljava/lang/Object;Z)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_GNOME_Accessibility_AtkWrapper_windowActivate: this _: a1 
+_org_GNOME_Accessibility_AtkWrapper_windowActivate: this _: a1
 
     <javanative: 'org/GNOME/Accessibility/AtkWrapper' name: 'windowActivate(Ljavax/accessibility/AccessibleContext;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_GNOME_Accessibility_AtkWrapper_windowClose: this _: a1 _: a2 
+_org_GNOME_Accessibility_AtkWrapper_windowClose: this _: a1 _: a2
 
     <javanative: 'org/GNOME/Accessibility/AtkWrapper' name: 'windowClose(Ljavax/accessibility/AccessibleContext;Z)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_GNOME_Accessibility_AtkWrapper_windowDeactivate: this _: a1 
+_org_GNOME_Accessibility_AtkWrapper_windowDeactivate: this _: a1
 
     <javanative: 'org/GNOME/Accessibility/AtkWrapper' name: 'windowDeactivate(Ljavax/accessibility/AccessibleContext;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_GNOME_Accessibility_AtkWrapper_windowMaximize: this _: a1 
+_org_GNOME_Accessibility_AtkWrapper_windowMaximize: this _: a1
 
     <javanative: 'org/GNOME/Accessibility/AtkWrapper' name: 'windowMaximize(Ljavax/accessibility/AccessibleContext;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_GNOME_Accessibility_AtkWrapper_windowMinimize: this _: a1 
+_org_GNOME_Accessibility_AtkWrapper_windowMinimize: this _: a1
 
     <javanative: 'org/GNOME/Accessibility/AtkWrapper' name: 'windowMinimize(Ljavax/accessibility/AccessibleContext;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_GNOME_Accessibility_AtkWrapper_windowOpen: this _: a1 _: a2 
+_org_GNOME_Accessibility_AtkWrapper_windowOpen: this _: a1 _: a2
 
     <javanative: 'org/GNOME/Accessibility/AtkWrapper' name: 'windowOpen(Ljavax/accessibility/AccessibleContext;Z)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_GNOME_Accessibility_AtkWrapper_windowRestore: this _: a1 
+_org_GNOME_Accessibility_AtkWrapper_windowRestore: this _: a1
 
     <javanative: 'org/GNOME/Accessibility/AtkWrapper' name: 'windowRestore(Ljavax/accessibility/AccessibleContext;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_GNOME_Accessibility_AtkWrapper_windowStateChange: this _: a1 
+_org_GNOME_Accessibility_AtkWrapper_windowStateChange: this _: a1
 
     <javanative: 'org/GNOME/Accessibility/AtkWrapper' name: 'windowStateChange(Ljavax/accessibility/AccessibleContext;)V'>
 
@@ -14185,329 +14197,329 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - org.classpath.icedtea.pulseaudio'!
 
-_org_classpath_icedtea_pulseaudio_ContextEvent_init_constants: this 
+_org_classpath_icedtea_pulseaudio_ContextEvent_init_constants: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/ContextEvent' name: 'init_constants()V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_EventLoop_nativeUpdateSourcePortNameList: this 
+_org_classpath_icedtea_pulseaudio_EventLoop_nativeUpdateSourcePortNameList: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/EventLoop' name: 'nativeUpdateSourcePortNameList()[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_EventLoop_nativeUpdateTargetPortNameList: this 
+_org_classpath_icedtea_pulseaudio_EventLoop_nativeUpdateTargetPortNameList: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/EventLoop' name: 'nativeUpdateTargetPortNameList()[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_EventLoop_native_iterate: this _: a1 
+_org_classpath_icedtea_pulseaudio_EventLoop_native_iterate: this _: a1
 
     <javanative: 'org/classpath/icedtea/pulseaudio/EventLoop' name: 'native_iterate(I)I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_EventLoop_native_setup: this _: a1 _: a2 
+_org_classpath_icedtea_pulseaudio_EventLoop_native_setup: this _: a1 _: a2
 
     <javanative: 'org/classpath/icedtea/pulseaudio/EventLoop' name: 'native_setup(Ljava/lang/String;Ljava/lang/String;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_EventLoop_native_shutdown: this 
+_org_classpath_icedtea_pulseaudio_EventLoop_native_shutdown: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/EventLoop' name: 'native_shutdown()V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Operation_init_constants: this 
+_org_classpath_icedtea_pulseaudio_Operation_init_constants: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Operation' name: 'init_constants()V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Operation_native_get_state: this 
+_org_classpath_icedtea_pulseaudio_Operation_native_get_state: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Operation' name: 'native_get_state()J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Operation_native_ref: this 
+_org_classpath_icedtea_pulseaudio_Operation_native_ref: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Operation' name: 'native_ref()V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Operation_native_unref: this 
+_org_classpath_icedtea_pulseaudio_Operation_native_unref: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Operation' name: 'native_unref()V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_PulseAudioSourcePort_native_set_volume: this _: a1 
+_org_classpath_icedtea_pulseaudio_PulseAudioSourcePort_native_set_volume: this _: a1
 
     <javanative: 'org/classpath/icedtea/pulseaudio/PulseAudioSourcePort' name: 'native_set_volume(F)[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_PulseAudioSourcePort_native_update_volume: this 
+_org_classpath_icedtea_pulseaudio_PulseAudioSourcePort_native_update_volume: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/PulseAudioSourcePort' name: 'native_update_volume()[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_PulseAudioTargetPort_native_set_volume: this _: a1 
+_org_classpath_icedtea_pulseaudio_PulseAudioTargetPort_native_set_volume: this _: a1
 
     <javanative: 'org/classpath/icedtea/pulseaudio/PulseAudioTargetPort' name: 'native_set_volume(F)[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_PulseAudioTargetPort_native_update_volume: this 
+_org_classpath_icedtea_pulseaudio_PulseAudioTargetPort_native_update_volume: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/PulseAudioTargetPort' name: 'native_update_volume()[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_bytesInBuffer: this 
+_org_classpath_icedtea_pulseaudio_Stream_bytesInBuffer: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'bytesInBuffer()I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_init_constants: this 
+_org_classpath_icedtea_pulseaudio_Stream_init_constants: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'init_constants()V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_connect_playback: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 _: a9 _: a10 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_connect_playback: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 _: a9 _: a10
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_connect_playback(Ljava/lang/String;IIIIIJ[B[B)I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_connect_record: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 _: a9 _: a10 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_connect_record: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 _: a9 _: a10
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_connect_record(Ljava/lang/String;IIIIIJ[B[B)I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_cork: this _: a1 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_cork: this _: a1
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_cork(I)[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_disconnect: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_disconnect: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_disconnect()I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_drain: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_drain: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_drain()[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_drop: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_drop: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_drop()I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_flush: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_flush: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_flush()[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_buffer_attr: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_buffer_attr: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_get_buffer_attr()Lorg/classpath/icedtea/pulseaudio/StreamBufferAttributes;'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_context: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_context: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_get_context()[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_device_index: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_device_index: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_get_device_index()I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_device_name: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_device_name: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_get_device_name()Ljava/lang/String;'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_index: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_index: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_get_index()I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_latency: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_latency: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_get_latency()J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_sample_spec: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_sample_spec: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_get_sample_spec()Lorg/classpath/icedtea/pulseaudio/StreamSampleSpecification;'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_state: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_state: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_get_state()J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_time: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_get_time: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_get_time()J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_is_corked: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_is_corked: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_is_corked()I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_is_suspended: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_is_suspended: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_is_suspended()I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_new: this _: a1 _: a2 _: a3 _: a4 _: a5 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_new: this _: a1 _: a2 _: a3 _: a4 _: a5
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_new([BLjava/lang/String;Ljava/lang/String;II)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_peek: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_peek: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_peek()[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_readable_size: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_readable_size: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_readable_size()I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_set_buffer_attr: this _: a1 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_set_buffer_attr: this _: a1
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_set_buffer_attr(Lorg/classpath/icedtea/pulseaudio/StreamBufferAttributes;)[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_set_name: this _: a1 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_set_name: this _: a1
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_set_name(Ljava/lang/String;)[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_trigger: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_trigger: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_trigger()[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_unref: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_unref: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_unref()V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_updateTimingInfo: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_updateTimingInfo: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_updateTimingInfo()[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_update_sample_rate: this _: a1 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_update_sample_rate: this _: a1
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_update_sample_rate(I)[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_writable_size: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_writable_size: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_writable_size()I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_write: this _: a1 _: a2 _: a3 
+_org_classpath_icedtea_pulseaudio_Stream_native_pa_stream_write: this _: a1 _: a2 _: a3
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_pa_stream_write([BII)I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_set_volume: this _: a1 
+_org_classpath_icedtea_pulseaudio_Stream_native_set_volume: this _: a1
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_set_volume(F)[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_org_classpath_icedtea_pulseaudio_Stream_native_update_volume: this 
+_org_classpath_icedtea_pulseaudio_Stream_native_update_volume: this
 
     <javanative: 'org/classpath/icedtea/pulseaudio/Stream' name: 'native_update_volume()[B'>
 
@@ -16598,14 +16610,14 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - sun.font'!
 
-_sun_font_FileFontStrike__getGlyphImageFromWindows: this _: a1 _: a2 _: a3 _: a4 _: a5 
+_sun_font_FileFontStrike__getGlyphImageFromWindows: this _: a1 _: a2 _: a3 _: a4 _: a5
 
     <javanative: 'sun/font/FileFontStrike' name: '_getGlyphImageFromWindows(Ljava/lang/String;IIIZ)J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_font_FileFontStrike_initNative: this 
+_sun_font_FileFontStrike_initNative: this
 
     <javanative: 'sun/font/FileFontStrike' name: 'initNative()Z'>
 
@@ -18229,7 +18241,7 @@
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_management_HotSpotDiagnostic_dumpHeap0: this _: a1 _: a2 
+_sun_management_HotSpotDiagnostic_dumpHeap0: this _: a1 _: a2
 
     <javanative: 'sun/management/HotSpotDiagnostic' name: 'dumpHeap0(Ljava/lang/String;Z)V'>
 
@@ -19520,7 +19532,7 @@
                 tout := nil.
             ].
         ] ifFalse:[
-            "/ It's nanos in this case !!!!!!    
+            "/ It's nanos in this case !!!!!!
             tout := (millisOrNanos / 1000000) rounded
         ]
     ] ifFalse:[
@@ -20241,7 +20253,7 @@
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_nio_ch_DatagramChannelImpl_send0: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 
+_sun_nio_ch_DatagramChannelImpl_send0: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6
 
     <javanative: 'sun/nio/ch/DatagramChannelImpl' name: 'send0(Ljava/io/FileDescriptor;JILjava/net/InetAddress;I)I'>
 
@@ -20725,7 +20737,7 @@
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_nio_ch_Net_bind0: this _: a1 _: a2 _: a3 _: a4 
+_sun_nio_ch_Net_bind0: this _: a1 _: a2 _: a3 _: a4
 
     <javanative: 'sun/nio/ch/Net' name: 'bind0(Ljava/io/FileDescriptor;ZLjava/net/InetAddress;I)V'>
 
@@ -20762,7 +20774,7 @@
     "Modified: / 10-05-2012 / 17:00:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_nio_ch_Net_isExclusiveBindAvailable: this 
+_sun_nio_ch_Net_isExclusiveBindAvailable: this
 
     <javanative: 'sun/nio/ch/Net' name: 'isExclusiveBindAvailable()I'>
 
@@ -21140,7 +21152,7 @@
     "Modified: / 30-01-2013 / 14:16:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_reflect_Reflection_getCallerClass0: this _: a1 
+_sun_reflect_Reflection_getCallerClass0: this _: a1
 
     <javanative: 'sun/reflect/Reflection' name: 'getCallerClass0(I)Ljava/lang/Class;'>
 
@@ -21151,7 +21163,7 @@
     "Modified (comment): / 11-11-2013 / 21:18:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_reflect_Reflection_getCallerClass: this 
+_sun_reflect_Reflection_getCallerClass: this
 
     <javanative: 'sun/reflect/Reflection' name: 'getCallerClass()Ljava/lang/Class;'>
 
@@ -21455,35 +21467,35 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - sun.security.pkcs11'!
 
-_sun_security_pkcs11_Secmod_nssGetLibraryHandle: this _: a1 
+_sun_security_pkcs11_Secmod_nssGetLibraryHandle: this _: a1
 
     <javanative: 'sun/security/pkcs11/Secmod' name: 'nssGetLibraryHandle(Ljava/lang/String;)J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_Secmod_nssGetModuleList: this _: a1 _: a2 
+_sun_security_pkcs11_Secmod_nssGetModuleList: this _: a1 _: a2
 
     <javanative: 'sun/security/pkcs11/Secmod' name: 'nssGetModuleList(J)Ljava/lang/Object;'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_Secmod_nssInit: this _: a1 _: a2 _: a3 _: a4 
+_sun_security_pkcs11_Secmod_nssInit: this _: a1 _: a2 _: a3 _: a4
 
     <javanative: 'sun/security/pkcs11/Secmod' name: 'nssInit(Ljava/lang/String;JLjava/lang/String;)Z'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_Secmod_nssLoadLibrary: this _: a1 
+_sun_security_pkcs11_Secmod_nssLoadLibrary: this _: a1
 
     <javanative: 'sun/security/pkcs11/Secmod' name: 'nssLoadLibrary(Ljava/lang/String;)J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_Secmod_nssVersionCheck: this _: a1 _: a2 _: a3 
+_sun_security_pkcs11_Secmod_nssVersionCheck: this _: a1 _: a2 _: a3
 
     <javanative: 'sun/security/pkcs11/Secmod' name: 'nssVersionCheck(JLjava/lang/String;)Z'>
 
@@ -21492,413 +21504,413 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - sun.security.pkcs11.wrapper'!
 
-_sun_security_pkcs11_wrapper_PKCS11_C_CloseSession: this _: a1 _: a2 
+_sun_security_pkcs11_wrapper_PKCS11_C_CloseSession: this _: a1 _: a2
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_CloseSession(J)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_CopyObject: this _: a1 _: a2 _: a3 _: a4 _: a5 
+_sun_security_pkcs11_wrapper_PKCS11_C_CopyObject: this _: a1 _: a2 _: a3 _: a4 _: a5
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_CopyObject(JJ[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_CreateObject: this _: a1 _: a2 _: a3 
+_sun_security_pkcs11_wrapper_PKCS11_C_CreateObject: this _: a1 _: a2 _: a3
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_CreateObject(J[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_Decrypt: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 
+_sun_security_pkcs11_wrapper_PKCS11_C_Decrypt: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_Decrypt(J[BII[BII)I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_DecryptFinal: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 
+_sun_security_pkcs11_wrapper_PKCS11_C_DecryptFinal: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_DecryptFinal(JJ[BII)I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_DecryptInit: this _: a1 _: a2 _: a3 _: a4 _: a5 
+_sun_security_pkcs11_wrapper_PKCS11_C_DecryptInit: this _: a1 _: a2 _: a3 _: a4 _: a5
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_DecryptInit(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_DecryptUpdate: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 _: a9 _: a10 _: a11 _: a12 
+_sun_security_pkcs11_wrapper_PKCS11_C_DecryptUpdate: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 _: a9 _: a10 _: a11 _: a12
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_DecryptUpdate(JJ[BIIJ[BII)I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_DeriveKey: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 
+_sun_security_pkcs11_wrapper_PKCS11_C_DeriveKey: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_DeriveKey(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_DestroyObject: this _: a1 _: a2 _: a3 _: a4 
+_sun_security_pkcs11_wrapper_PKCS11_C_DestroyObject: this _: a1 _: a2 _: a3 _: a4
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_DestroyObject(JJ)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_DigestFinal: this _: a1 _: a2 _: a3 _: a4 _: a5 
+_sun_security_pkcs11_wrapper_PKCS11_C_DigestFinal: this _: a1 _: a2 _: a3 _: a4 _: a5
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_DigestFinal(J[BII)I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_DigestInit: this _: a1 _: a2 _: a3 
+_sun_security_pkcs11_wrapper_PKCS11_C_DigestInit: this _: a1 _: a2 _: a3
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_DigestInit(JLsun/security/pkcs11/wrapper/CK_MECHANISM;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_DigestKey: this _: a1 _: a2 _: a3 _: a4 
+_sun_security_pkcs11_wrapper_PKCS11_C_DigestKey: this _: a1 _: a2 _: a3 _: a4
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_DigestKey(JJ)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_DigestSingle: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 _: a9 
+_sun_security_pkcs11_wrapper_PKCS11_C_DigestSingle: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 _: a9
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_DigestSingle(JLsun/security/pkcs11/wrapper/CK_MECHANISM;[BII[BII)I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_DigestUpdate: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 
+_sun_security_pkcs11_wrapper_PKCS11_C_DigestUpdate: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_DigestUpdate(JJ[BII)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_Encrypt: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 
+_sun_security_pkcs11_wrapper_PKCS11_C_Encrypt: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_Encrypt(J[BII[BII)I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_EncryptFinal: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 
+_sun_security_pkcs11_wrapper_PKCS11_C_EncryptFinal: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_EncryptFinal(JJ[BII)I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_EncryptInit: this _: a1 _: a2 _: a3 _: a4 _: a5 
+_sun_security_pkcs11_wrapper_PKCS11_C_EncryptInit: this _: a1 _: a2 _: a3 _: a4 _: a5
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_EncryptInit(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_EncryptUpdate: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 _: a9 _: a10 _: a11 _: a12 
+_sun_security_pkcs11_wrapper_PKCS11_C_EncryptUpdate: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 _: a9 _: a10 _: a11 _: a12
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_EncryptUpdate(JJ[BIIJ[BII)I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_Finalize: this _: a1 
+_sun_security_pkcs11_wrapper_PKCS11_C_Finalize: this _: a1
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_Finalize(Ljava/lang/Object;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_FindObjects: this _: a1 _: a2 _: a3 _: a4 
+_sun_security_pkcs11_wrapper_PKCS11_C_FindObjects: this _: a1 _: a2 _: a3 _: a4
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_FindObjects(JJ)[J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_FindObjectsFinal: this _: a1 _: a2 
+_sun_security_pkcs11_wrapper_PKCS11_C_FindObjectsFinal: this _: a1 _: a2
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_FindObjectsFinal(J)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_FindObjectsInit: this _: a1 _: a2 _: a3 
+_sun_security_pkcs11_wrapper_PKCS11_C_FindObjectsInit: this _: a1 _: a2 _: a3
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_FindObjectsInit(J[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_GenerateKey: this _: a1 _: a2 _: a3 _: a4 
+_sun_security_pkcs11_wrapper_PKCS11_C_GenerateKey: this _: a1 _: a2 _: a3 _: a4
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_GenerateKey(JLsun/security/pkcs11/wrapper/CK_MECHANISM;[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_GenerateKeyPair: this _: a1 _: a2 _: a3 _: a4 _: a5 
+_sun_security_pkcs11_wrapper_PKCS11_C_GenerateKeyPair: this _: a1 _: a2 _: a3 _: a4 _: a5
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_GenerateKeyPair(JLsun/security/pkcs11/wrapper/CK_MECHANISM;[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)[J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_GenerateRandom: this _: a1 _: a2 _: a3 
+_sun_security_pkcs11_wrapper_PKCS11_C_GenerateRandom: this _: a1 _: a2 _: a3
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_GenerateRandom(J[B)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_GetAttributeValue: this _: a1 _: a2 _: a3 _: a4 _: a5 
+_sun_security_pkcs11_wrapper_PKCS11_C_GetAttributeValue: this _: a1 _: a2 _: a3 _: a4 _: a5
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_GetAttributeValue(JJ[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_GetInfo: this 
+_sun_security_pkcs11_wrapper_PKCS11_C_GetInfo: this
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_GetInfo()Lsun/security/pkcs11/wrapper/CK_INFO;'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_GetMechanismInfo: this _: a1 _: a2 _: a3 _: a4 
+_sun_security_pkcs11_wrapper_PKCS11_C_GetMechanismInfo: this _: a1 _: a2 _: a3 _: a4
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_GetMechanismInfo(JJ)Lsun/security/pkcs11/wrapper/CK_MECHANISM_INFO;'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_GetMechanismList: this _: a1 _: a2 
+_sun_security_pkcs11_wrapper_PKCS11_C_GetMechanismList: this _: a1 _: a2
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_GetMechanismList(J)[J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_GetOperationState: this _: a1 _: a2 
+_sun_security_pkcs11_wrapper_PKCS11_C_GetOperationState: this _: a1 _: a2
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_GetOperationState(J)[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_GetSessionInfo: this _: a1 _: a2 
+_sun_security_pkcs11_wrapper_PKCS11_C_GetSessionInfo: this _: a1 _: a2
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_GetSessionInfo(J)Lsun/security/pkcs11/wrapper/CK_SESSION_INFO;'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_GetSlotInfo: this _: a1 _: a2 
+_sun_security_pkcs11_wrapper_PKCS11_C_GetSlotInfo: this _: a1 _: a2
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_GetSlotInfo(J)Lsun/security/pkcs11/wrapper/CK_SLOT_INFO;'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_GetSlotList: this _: a1 
+_sun_security_pkcs11_wrapper_PKCS11_C_GetSlotList: this _: a1
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_GetSlotList(Z)[J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_GetTokenInfo: this _: a1 _: a2 
+_sun_security_pkcs11_wrapper_PKCS11_C_GetTokenInfo: this _: a1 _: a2
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_GetTokenInfo(J)Lsun/security/pkcs11/wrapper/CK_TOKEN_INFO;'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_Initialize: this _: a1 
+_sun_security_pkcs11_wrapper_PKCS11_C_Initialize: this _: a1
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_Initialize(Ljava/lang/Object;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_Login: this _: a1 _: a2 _: a3 _: a4 _: a5 
+_sun_security_pkcs11_wrapper_PKCS11_C_Login: this _: a1 _: a2 _: a3 _: a4 _: a5
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_Login(JJ[C)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_Logout: this _: a1 _: a2 
+_sun_security_pkcs11_wrapper_PKCS11_C_Logout: this _: a1 _: a2
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_Logout(J)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_OpenSession: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 
+_sun_security_pkcs11_wrapper_PKCS11_C_OpenSession: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_OpenSession(JJLjava/lang/Object;Lsun/security/pkcs11/wrapper/CK_NOTIFY;)J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_SeedRandom: this _: a1 _: a2 _: a3 
+_sun_security_pkcs11_wrapper_PKCS11_C_SeedRandom: this _: a1 _: a2 _: a3
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_SeedRandom(J[B)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_SetAttributeValue: this _: a1 _: a2 _: a3 _: a4 _: a5 
+_sun_security_pkcs11_wrapper_PKCS11_C_SetAttributeValue: this _: a1 _: a2 _: a3 _: a4 _: a5
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_SetAttributeValue(JJ[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_SetOperationState: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 
+_sun_security_pkcs11_wrapper_PKCS11_C_SetOperationState: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_SetOperationState(J[BJJ)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_Sign: this _: a1 _: a2 _: a3 
+_sun_security_pkcs11_wrapper_PKCS11_C_Sign: this _: a1 _: a2 _: a3
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_Sign(J[B)[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_SignFinal: this _: a1 _: a2 _: a3 
+_sun_security_pkcs11_wrapper_PKCS11_C_SignFinal: this _: a1 _: a2 _: a3
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_SignFinal(JI)[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_SignInit: this _: a1 _: a2 _: a3 _: a4 _: a5 
+_sun_security_pkcs11_wrapper_PKCS11_C_SignInit: this _: a1 _: a2 _: a3 _: a4 _: a5
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_SignInit(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_SignRecover: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 
+_sun_security_pkcs11_wrapper_PKCS11_C_SignRecover: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_SignRecover(J[BII[BII)I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_SignRecoverInit: this _: a1 _: a2 _: a3 _: a4 _: a5 
+_sun_security_pkcs11_wrapper_PKCS11_C_SignRecoverInit: this _: a1 _: a2 _: a3 _: a4 _: a5
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_SignRecoverInit(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_SignUpdate: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 
+_sun_security_pkcs11_wrapper_PKCS11_C_SignUpdate: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_SignUpdate(JJ[BII)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_UnwrapKey: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 
+_sun_security_pkcs11_wrapper_PKCS11_C_UnwrapKey: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_UnwrapKey(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J[B[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_Verify: this _: a1 _: a2 _: a3 _: a4 
+_sun_security_pkcs11_wrapper_PKCS11_C_Verify: this _: a1 _: a2 _: a3 _: a4
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_Verify(J[B[B)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_VerifyFinal: this _: a1 _: a2 _: a3 
+_sun_security_pkcs11_wrapper_PKCS11_C_VerifyFinal: this _: a1 _: a2 _: a3
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_VerifyFinal(J[B)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_VerifyInit: this _: a1 _: a2 _: a3 _: a4 _: a5 
+_sun_security_pkcs11_wrapper_PKCS11_C_VerifyInit: this _: a1 _: a2 _: a3 _: a4 _: a5
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_VerifyInit(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_VerifyRecover: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 
+_sun_security_pkcs11_wrapper_PKCS11_C_VerifyRecover: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_VerifyRecover(J[BII[BII)I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_VerifyRecoverInit: this _: a1 _: a2 _: a3 _: a4 _: a5 
+_sun_security_pkcs11_wrapper_PKCS11_C_VerifyRecoverInit: this _: a1 _: a2 _: a3 _: a4 _: a5
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_VerifyRecoverInit(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_VerifyUpdate: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 
+_sun_security_pkcs11_wrapper_PKCS11_C_VerifyUpdate: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_VerifyUpdate(JJ[BII)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_C_WrapKey: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 
+_sun_security_pkcs11_wrapper_PKCS11_C_WrapKey: this _: a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'C_WrapKey(JLsun/security/pkcs11/wrapper/CK_MECHANISM;JJ)[B'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_connect: this _: a1 _: a2 
+_sun_security_pkcs11_wrapper_PKCS11_connect: this _: a1 _: a2
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'connect(Ljava/lang/String;Ljava/lang/String;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_disconnect: this 
+_sun_security_pkcs11_wrapper_PKCS11_disconnect: this
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'disconnect()V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_finalizeLibrary: this 
+_sun_security_pkcs11_wrapper_PKCS11_finalizeLibrary: this
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'finalizeLibrary()V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_security_pkcs11_wrapper_PKCS11_initializeLibrary: this 
+_sun_security_pkcs11_wrapper_PKCS11_initializeLibrary: this
 
     <javanative: 'sun/security/pkcs11/wrapper/PKCS11' name: 'initializeLibrary()V'>