Writing BLOBS to the filesystem

Here's my problem.
I know how to read any filetype into the database using a OLE
container mapped to a BLOB column in the Oracle 8i database.
How do I then, write the BLOB to the filesystem.
null

Hello AlaaShaw,
Best practice for this type of application is to have two loops--one that handles deterministic operations and one that performs non-deterministic operations (such as writing to file or communicating to the host PC). You can transfer data between these loops using RT FIFO variables without affecting the determinism of your main loop, or with single-process shared variables. Here is a help document explaining data communication:
 http://zone.ni.com/reference/en-XX/help/371361L-01​/lvconcepts/data_comm/
An example for how to implement this architecture can be seen here:
http://www.ni.com/tutorial/11198/en/
 http://www.ni.com/tutorial/52028/en/
In the future, please post to the LabVIEW RT discussion forum.  This will increase the visibly of your issue and increase the response time.
http://forums.ni.com/t5/forums/searchpage/tab/mess​age?submitted=true&type=message&q=rt&page_size=50&​...
Regards,
Thomas C.
Applications Engineer
National Instruments

Similar Messages

  • Iphone 4 battery draining fast and yellowish blobs on the screen

    So I got my iphone 4 today. 32GB. Came home charged it full powered down for battery memory and left off for a few minutes like instructed.
    I have not done much with the phone and I am already at 85% within an hour of using it for texting. maybe 30 texts so far. Wifi off, no tethering connection made, Brightness turned to max push every 15 minutes 3G on. For a battery that is 40%n bigger it is really draining fast.
    Now I am noticing yellowish blobs on the right side vertically and a few on the top horizontally. I read in a post that it was because of not cured residue and should go away in a few days. DOES this make sense to you folks. Where does it say that on apples site.
    I am about to call a tech about this and have them send me something in writing.
    This is just frustrating as I was hoping for a great experience this year. From the let down from the white iphone to my battery being drained to now yellow blobs..man can anything else go wrong.
    What say you??????? any of you have battery issues yet

    If my past experience with iPhones and iPods is any indication, you'll find that over the next couple days as you use your iPhone the battery indicator will become more accurate. My habit (as I've done with my new iPhone 4) is to use it until the indicator shows red and then charge it fully and then do that twice more. At that point the indicator should be 'calibrated' with the battery and be more accurate. Yesterday I used my phone for about 5 hours before the battery indicator gave me 20% warning. Today I've used it as I normally would in a day and, as I always did with my G3S, I'm currently home from work with a 40% charge showing. Guess I'll have to play a little Angry Birds tonight
    I've seen nothing official from Apple about the yellow splotches but I read either at Engadget or Gizmodo this morning that a worker experienced with this process claims it is the bonding adhesive which hasn't finished curing. It has been widely reported second hand. Don't know if contacting AppleCare this early in the game will get you anywhere. Since iPhones are in short supply at this time and you have a year's warranty, I'd wait a couple days and see if the report is correct. If the yellow defect goes away it was true.

  • How to write files to the filesystem with portal/plsql

    Hi,
    is there a way to write files to the filesystem via Portal?
    Or can i call an external programm (perl, php) to do so, while portal writes further information to database?
    thank you for the help
    Ralf Schmitt

    Hi Ralf,
    my primary task is to publish download-links to files stored ... somewhere as a linklist. I tried to store and download files to/from the database but i cant get it to run. Upload works, download doesn't.
    (i'm not talking about a single form-query-download-link! I need a report-like linklist)If you want to do this you'll have to write some code but sure it's possible - i did it myself.
    The links in the link list in your report should call a stored function retrieving the files from Wwdoc_document or whatever is the document table defined in your DAD. Simply select BLOB_CONTENT into a BLOB variable from the table, provided you know what file to read :-) The function would then read the BLOBs and send them to the client's browser via DBMS_LOB - it's poor design but it works just as smooth as it could and it's really performing. This would simply display the file into your browser or prompt for file save location, depending on what browser you are using and its client settings.
    I guess this is not so clear, if you want some more details feel free to e-mail me at [email protected]
    Another way would be to use wpg_docload to both download and upload files to/from the DB.
    Now i try to figure out if it is possible to store the files to the filesystem and write only additional info like description or path into db.Again, yes, it is. I can't recall exactly how I did it ^_^ but the trick is to create a virtual directory in the DB - pointing at a physical directory on the file system you want to write to, and you have to have full read-write permission on the directory itself, and its path must be included in the utl_file_dir database parameter. Then you use both COM Automation or UTL_FILE to write files.
    would it be possible to let a portal-form write info to the db and then pass the file to a php-script?
    regards,
    Ralf Schmitt

  • Accessing the filesystem

    Is it possible to acces the real filesystem (not a vfs) through libc with abode air? Even if this do not work for a release build that would be nice. I am trying to setup a dev environement with Lua, but each time I change my assets I have to compile a vfs and my as3 project. It would be really nice to be able to add assets without compiling each time, since as3 compilation (when linking with a flascc swc) is a bit long.
    Also, at the moment I am loading my lua files with an URLLoader, but then I need to execute the file as a string (doString in lua), but a lua doString is a bit harder to debug than a real file. So I'd prefer to do it with a doFile call (which need to do it through libc).

    We do provide a VFS based on URLLoader; you can see an example in the filesystem sample (samples/07_FileSystem). While I haven't tried it, I believe that Air will alow you to access local files via URLLoader. That said, the current implementation of the URLLoader VFS does some processing on the files that would need to be performed each time they change, so it may not speed up your development cycle much. If that's the case, you could try writing a custom VFS by implementing the IBackingStore interface. Note that the VFS system assumes that once your program is running, all changes to the filesystem are performed either via libc or the VFS ActionScript interface. In other words, if you make any changes to the files on your native filesystem, you'll need to relaunch your SWF or Air program before you'll see the changes.

  • Delete file from the filesystem?

    Hello,
    I have an easy question. But I don´t find the right oracle packages.
    I want to delete a file from the filesystem. How can I do this?
    Thanks for your help!

    Paul,
    If connecting to the Web server on East-Coast USA is not optimal for you, or if you aren't using Oracle 10g Release 2, try this URL instead:
    http://www.oracle.com/technology/documentation/index.html
    You need to look for the PL/SQL Packages and Types Reference document, the section detailing the UTL_FILE package.
    Good Luck,
    Avi.
    Message was edited by:
    Avi Abrami

  • Deleting files from the filesystem

    How can you delete a file from the filesystem in Java? Is it possible?
    Thanks

    File file = new File("c:\\test\\abc.txt");
    file.delete();

  • ChaRM class java.io.IOException:The file does not exist on the filesystem

    Hi All,
    We are implementing ChaRM with Portal. While deploying we are running into following issue.
      Deployable-Id:/usr/sap/trans/data/GPSK90001B/sktp14_20100806_095633.epa
      Returncode:'12'
      class java.io.IOException:The file (/usr/sap/trans/data/GPSK90001B/sktp14_20100806_095633.epa) does not exist on the filesystem.
    Any suggestion.
    Regards,
    Smita

    We resolved this issue by sharing the trans file across SolMan and Portal system.

  • I'm not sure if I am writing this in the correct area (this is my second attempt at posting a question), but I have a comment about a recent store experience in Sandusky, OH.  I am not a current Verizon customer, but I was visiting friends and we had to g

    I'm not sure if I am writing this in the correct area (this is my second attempt at posting a question), but I have a comment about a recent store experience in Sandusky, OH.  I am not a current Verizon customer, but I was visiting friends and we had to go to the store to get something taken care of.  First off, allow me to compliment the nice, new store.  Boy, its changed over the past few years ago when I was in last. My comment is mostly directed to one specific employee.  When we entered the store, we were "welcomed" by a sloppy dressed gentlemen (his clothes were probably two sizes two small), which really struck me as unusual because every other employee in the store was dressed really "casual" with nice sporty clothing and red shoes.  Either way, after being entered into the computer, the gentlemen told me to wander around or have a seat in the back and someone would be with us soon.  As soon as we walked away from the door, the gentlemen handed his "duty" off to another employee who took over welcoming people coming in.  For whatever reason, I felt glued to him as he stood out to me.  After leaving the door, he immediately went to the back of the room, hunched over a cabinet, where he stood for the next 30+ minutes playing on his phone, frowning and not speaking to anyone around him.  Again, I found this unusual because everyone else was overly friendly and smiling.  I finally decided to walk by and see what he was doing.  It appeared that he was texting someone.  He paid no attention to me whatsoever as I walked by, just continued to frown and text on his phone.  I did take not of his name tag for future reference.  His name was Justin.  I am assuming he's the manager of the location as he was just standing around while everyone else worked.  I do understand that managers aren't necessarily doing the "dirty work" of the employees, but he could have at least found some better fitting clothing (I find it hard to believe Verizon doesn't supply it), been a little friendly, pretended to be busy, and not been texting the entire time we were there.  Again, the store was great, the other employees were very helpful, but the manager seemed to be doing is own little thing and it didn't put off a good image for the rest of the store.  Just wanted to share my comments.

    lisab101,
    We appreciate you reaching out to us. We greatly appreciate the feedback that you have provided us. Please know that we will lift this up to management and the issues will be addressed.
    Thank you,
    RobinD_VZW
    Follow us on twitter @VZWSupport

  • Problem upgrading: 700+ files ... "exists in the filesystem" [SOLVED]

    OK.  I've read this stickie:
    https://bbs.archlinux.org/viewtopic.php?id=56373
    I have over 700 files that already "exists in filesystem".
    Yes.  I had a period when my favorite repositories were unknowingly down (they're still not up) and I didn't update my system as regularly as I normally do with this laptop, which I don't use that often.  I was duly flamed for having the temerity to ask why my system hadn't been updated in a while, my one intensely negative experience on these othewise helpful forums.
    I have connected to a new repository and I have successfully run pacman -Syu several times until this week.
    I have run "pacman -Qo filename" on a random 7 or 8 of the files listed below and they all report that no package owns the file.
    I have checked the Arch news page and the announce mailing list archive.
    700 seems like an excessive number of files to have the "exist in the filesystem" problem.
    It appears the problem is with "gnu-utls".  I'm running Xfce.  One solution that presents itself is to remove "gnu-utls" and then try upgrading again.
    Another strategy would be, if I read the stickie correctly, to delete each one of these files and again try an upgrade.
    I'm just seeking confirmation that one or the other of these avenues would be a good idea given warnings to the guy who "only" had 200 files to update.
    Thanks.
    error: failed to commit transaction (conflicting files)
    gnutls: /usr/bin/certtool exists in filesystem
    gnutls: /usr/bin/gnutls-cli exists in filesystem
    gnutls: /usr/bin/gnutls-cli-debug exists in filesystem
    gnutls: /usr/bin/gnutls-serv exists in filesystem
    gnutls: /usr/bin/p11tool exists in filesystem
    gnutls: /usr/bin/psktool exists in filesystem
    gnutls: /usr/bin/srptool exists in filesystem
    gnutls: /usr/include/gnutls/abstract.h exists in filesystem
    gnutls: /usr/include/gnutls/compat.h exists in filesystem
    gnutls: /usr/include/gnutls/crypto.h exists in filesystem
    gnutls: /usr/include/gnutls/extra.h exists in filesystem
    gnutls: /usr/include/gnutls/gnutls.h exists in filesystem
    gnutls: /usr/include/gnutls/gnutlsxx.h exists in filesystem
    gnutls: /usr/include/gnutls/openpgp.h exists in filesystem
    gnutls: /usr/include/gnutls/openssl.h exists in filesystem
    gnutls: /usr/include/gnutls/pkcs11.h exists in filesystem
    gnutls: /usr/include/gnutls/pkcs12.h exists in filesystem
    gnutls: /usr/include/gnutls/x509.h exists in filesystem
    gnutls: /usr/lib/libgnutls-extra.so exists in filesystem
    gnutls: /usr/lib/libgnutls-extra.so.26 exists in filesystem
    gnutls: /usr/lib/libgnutls-extra.so.26.21.1 exists in filesystem
    gnutls: /usr/lib/libgnutls-openssl.so exists in filesystem
    gnutls: /usr/lib/libgnutls-openssl.so.27 exists in filesystem
    gnutls: /usr/lib/libgnutls-openssl.so.27.0.0 exists in filesystem
    gnutls: /usr/lib/libgnutls.so exists in filesystem
    gnutls: /usr/lib/libgnutls.so.26 exists in filesystem
    gnutls: /usr/lib/libgnutls.so.26.21.1 exists in filesystem
    gnutls: /usr/lib/libgnutlsxx.so exists in filesystem
    gnutls: /usr/lib/libgnutlsxx.so.27 exists in filesystem
    gnutls: /usr/lib/libgnutlsxx.so.27.0.0 exists in filesystem
    gnutls: /usr/lib/pkgconfig/gnutls-extra.pc exists in filesystem
    gnutls: /usr/lib/pkgconfig/gnutls.pc exists in filesystem
    gnutls: /usr/share/info/gnutls-certificate-user-use-case.png exists in filesystem
    gnutls: /usr/share/info/gnutls-client-server-use-case.png exists in filesystem
    gnutls: /usr/share/info/gnutls-extensions_st.png exists in filesystem
    gnutls: /usr/share/info/gnutls-handshake-sequence.png exists in filesystem
    gnutls: /usr/share/info/gnutls-handshake-state.png exists in filesystem
    gnutls: /usr/share/info/gnutls-internals.png exists in filesystem
    gnutls: /usr/share/info/gnutls-layers.png exists in filesystem
    gnutls: /usr/share/info/gnutls-logo.png exists in filesystem
    gnutls: /usr/share/info/gnutls-mod_auth_st.png exists in filesystem
    gnutls: /usr/share/info/gnutls-objects.png exists in filesystem
    gnutls: /usr/share/info/gnutls-pgp.png exists in filesystem
    gnutls: /usr/share/info/gnutls-x509.png exists in filesystem
    gnutls: /usr/share/info/gnutls.info-1.gz exists in filesystem
    gnutls: /usr/share/info/gnutls.info-2.gz exists in filesystem
    gnutls: /usr/share/info/gnutls.info-3.gz exists in filesystem
    gnutls: /usr/share/info/gnutls.info.gz exists in filesystem
    gnutls: /usr/share/info/pkcs11-vision.png exists in filesystem
    gnutls: /usr/share/locale/cs/LC_MESSAGES/libgnutls.mo exists in filesystem
    gnutls: /usr/share/locale/de/LC_MESSAGES/libgnutls.mo exists in filesystem
    gnutls: /usr/share/locale/en@boldquot/LC_MESSAGES/libgnutls.mo exists in filesystem
    gnutls: /usr/share/locale/en@quot/LC_MESSAGES/libgnutls.mo exists in filesystem
    gnutls: /usr/share/locale/fr/LC_MESSAGES/libgnutls.mo exists in filesystem
    gnutls: /usr/share/locale/it/LC_MESSAGES/libgnutls.mo exists in filesystem
    gnutls: /usr/share/locale/ms/LC_MESSAGES/libgnutls.mo exists in filesystem
    gnutls: /usr/share/locale/nl/LC_MESSAGES/libgnutls.mo exists in filesystem
    gnutls: /usr/share/locale/pl/LC_MESSAGES/libgnutls.mo exists in filesystem
    gnutls: /usr/share/locale/sv/LC_MESSAGES/libgnutls.mo exists in filesystem
    gnutls: /usr/share/locale/vi/LC_MESSAGES/libgnutls.mo exists in filesystem
    gnutls: /usr/share/locale/zh_CN/LC_MESSAGES/libgnutls.mo exists in filesystem
    gnutls: /usr/share/man/man1/certtool.1.gz exists in filesystem
    gnutls: /usr/share/man/man1/gnutls-cli-debug.1.gz exists in filesystem
    gnutls: /usr/share/man/man1/gnutls-cli.1.gz exists in filesystem
    gnutls: /usr/share/man/man1/gnutls-serv.1.gz exists in filesystem
    gnutls: /usr/share/man/man1/p11tool.1.gz exists in filesystem
    gnutls: /usr/share/man/man1/psktool.1.gz exists in filesystem
    gnutls: /usr/share/man/man1/srptool.1.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_alert_get.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_alert_get_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_alert_send.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_alert_send_appropriate.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_anon_allocate_client_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_anon_allocate_server_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_anon_free_client_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_anon_free_server_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_anon_set_params_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_anon_set_server_dh_params.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_anon_set_server_params_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_auth_client_get_type.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_auth_get_type.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_auth_server_get_type.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_bye.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_activation_time_peers.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_allocate_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_client_get_request_status.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_client_set_retrieve_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_expiration_time_peers.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_free_ca_names.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_free_cas.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_free_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_free_crls.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_free_keys.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_get_issuer.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_get_openpgp_keyring.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_get_ours.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_get_peers.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_get_x509_cas.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_get_x509_crls.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_send_x509_rdn_sequence.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_server_set_request.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_server_set_retrieve_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_dh_params.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_openpgp_key.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_openpgp_key_file.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_openpgp_key_file2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_openpgp_key_mem.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_openpgp_key_mem2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_openpgp_keyring_file.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_openpgp_keyring_mem.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_params_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_retrieve_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_rsa_export_params.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_verify_flags.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_verify_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_verify_limits.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_x509_crl.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_x509_crl_file.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_x509_crl_mem.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_x509_key.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_x509_key_file.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_x509_key_mem.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_file.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_mem.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_x509_trust.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_x509_trust_file.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_set_x509_trust_mem.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_type_get.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_type_get_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_type_get_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_type_list.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_type_set_priority.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_verify_peers.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_certificate_verify_peers2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_check_version.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_cipher_decrypt.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_cipher_decrypt2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_cipher_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_cipher_encrypt.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_cipher_encrypt2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_cipher_get.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_cipher_get_block_size.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_cipher_get_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_cipher_get_key_size.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_cipher_get_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_cipher_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_cipher_list.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_cipher_set_priority.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_cipher_suite_get_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_cipher_suite_info.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_compression_get.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_compression_get_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_compression_get_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_compression_list.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_compression_set_priority.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_credentials_clear.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_credentials_set.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_crypto_bigint_register2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_crypto_cipher_register2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_crypto_digest_register2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_crypto_mac_register2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_crypto_pk_register2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_crypto_rnd_register2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_crypto_single_cipher_register2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_crypto_single_digest_register2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_crypto_single_mac_register2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_db_check_entry.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_db_get_ptr.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_db_remove_session.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_db_set_cache_expiration.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_db_set_ptr.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_db_set_remove_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_db_set_retrieve_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_db_set_store_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_dh_get_group.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_dh_get_peers_public_bits.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_dh_get_prime_bits.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_dh_get_pubkey.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_dh_get_secret_bits.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_dh_params_cpy.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_dh_params_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_dh_params_export_pkcs3.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_dh_params_export_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_dh_params_generate2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_dh_params_import_pkcs3.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_dh_params_import_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_dh_params_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_dh_set_prime_bits.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_error_is_fatal.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_error_to_alert.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ext_register.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_extra_check_version.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_fingerprint.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_free.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_global_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_global_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_global_init_extra.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_global_set_log_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_global_set_log_level.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_global_set_mem_functions.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_global_set_mutex.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_global_set_time_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_handshake.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_handshake_get_last_in.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_handshake_get_last_out.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_handshake_set_max_packet_length.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_handshake_set_post_client_hello_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_handshake_set_private_extensions.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_hash.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_hash_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_hash_fast.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_hash_get_len.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_hash_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_hash_output.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_hex2bin.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_hex_decode.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_hex_encode.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_hmac.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_hmac_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_hmac_fast.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_hmac_get_len.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_hmac_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_hmac_output.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_allocate_client_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_allocate_server_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_enable.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_endphase_send.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_extract_inner_secret.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_free_client_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_free_server_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_generate_challenge.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_get_client_avp_ptr.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_get_server_avp_ptr.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_handshake.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_handshake_p.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_permute_inner_secret.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_recv.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_send.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_set_client_avp_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_set_client_avp_ptr.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_set_server_avp_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_set_server_avp_ptr.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_ia_verify_endphase.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_kx_get.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_kx_get_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_kx_get_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_kx_list.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_kx_set_priority.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_mac_get.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_mac_get_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_mac_get_key_size.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_mac_get_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_mac_list.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_mac_set_priority.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_malloc.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_check_hostname.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_export.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_auth_subkey.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_creation_time.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_expiration_time.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_fingerprint.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_key_usage.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_pk_algorithm.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_pk_dsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_pk_rsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_preferred_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_revoked_status.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_subkey_count.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_subkey_creation_time.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_subkey_expiration_time.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_subkey_fingerprint.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_subkey_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_subkey_idx.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_algorithm.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_dsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_rsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_subkey_revoked_status.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_subkey_usage.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_get_version.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_import.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_print.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_set_preferred_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_verify_ring.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_crt_verify_self.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_keyring_check_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_keyring_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_keyring_get_crt.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_keyring_get_crt_count.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_keyring_import.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_keyring_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_export.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_export_dsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_export_rsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_export_subkey_dsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_export_subkey_rsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_get_fingerprint.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_get_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_get_pk_algorithm.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_get_preferred_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_get_revoked_status.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_get_subkey_count.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_get_subkey_creation_time.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_get_subkey_expiration_time.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_get_subkey_fingerprint.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_get_subkey_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_get_subkey_idx.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_get_subkey_pk_algorithm.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_get_subkey_revoked_status.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_import.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_sec_param.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_set_preferred_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_privkey_sign_hash.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_send_cert.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_openpgp_set_recv_key_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pem_base64_decode.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pem_base64_decode_alloc.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pem_base64_encode.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pem_base64_encode_alloc.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_perror.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pk_algorithm_get_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pk_bits_to_sec_param.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pk_get_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pk_get_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pk_list.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_add_provider.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_copy_secret_key.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_copy_x509_crt.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_copy_x509_privkey.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_delete_url.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_obj_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_obj_export.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_obj_export_url.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_obj_get_info.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_obj_get_type.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_obj_import_url.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_obj_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_obj_list_import_url.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_privkey_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_privkey_export_url.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_privkey_get_info.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_privkey_get_pk_algorithm.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_privkey_import_url.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_privkey_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_set_pin_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_set_token_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_token_get_flags.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_token_get_info.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_token_get_mechanism.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_token_get_url.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_token_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs11_token_set_pin.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_bag_decrypt.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_bag_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_bag_encrypt.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_bag_get_count.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_bag_get_data.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_bag_get_friendly_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_bag_get_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_bag_get_type.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_bag_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_bag_set_crl.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_bag_set_crt.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_bag_set_data.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_bag_set_friendly_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_bag_set_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_export.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_generate_mac.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_get_bag.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_import.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_set_bag.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs12_verify_mac.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs7_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs7_delete_crl.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs7_delete_crt.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs7_export.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs7_get_crl_count.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs7_get_crl_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs7_get_crt_count.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs7_get_crt_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs7_import.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs7_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs7_set_crl.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs7_set_crl_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs7_set_crt.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pkcs7_set_crt_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_prf.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_prf_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_priority_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_priority_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_priority_set.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_priority_set_direct.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_privkey_decrypt_data.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_privkey_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_privkey_get_pk_algorithm.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_privkey_get_type.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_privkey_import_openpgp.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_privkey_import_pkcs11.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_privkey_import_x509.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_privkey_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_privkey_sign_data.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_privkey_sign_hash.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_protocol_get_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_protocol_get_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_protocol_get_version.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_protocol_list.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_protocol_set_priority.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_psk_allocate_client_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_psk_allocate_server_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_psk_client_get_hint.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_psk_free_client_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_psk_free_server_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_psk_netconf_derive_key.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_psk_server_get_username.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_psk_set_client_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_psk_set_client_credentials_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_psk_set_params_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_psk_set_server_credentials_file.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_psk_set_server_credentials_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_psk_set_server_credentials_hint.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_psk_set_server_dh_params.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_psk_set_server_params_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_export.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_get_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_get_key_usage.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_get_pk_algorithm.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_get_pk_dsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_get_pk_rsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_get_preferred_hash_algorithm.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_get_verify_algorithm.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_import.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_import_dsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_import_openpgp.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_import_pkcs11.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_import_pkcs11_url.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_import_privkey.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_import_rsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_import_x509.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_set_key_usage.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_verify_data.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_pubkey_verify_hash.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_record_check_pending.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_record_disable_padding.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_record_get_direction.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_record_get_max_size.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_record_recv.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_record_send.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_record_set_max_size.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_register_md5_handler.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_rehandshake.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_rnd.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_rsa_export_get_modulus_bits.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_rsa_export_get_pubkey.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_rsa_params_cpy.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_rsa_params_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_rsa_params_export_pkcs1.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_rsa_params_export_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_rsa_params_generate2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_rsa_params_import_pkcs1.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_rsa_params_import_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_rsa_params_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_safe_renegotiation_status.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_sec_param_get_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_sec_param_to_pk_bits.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_server_name_get.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_server_name_set.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_session_channel_binding.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_session_enable_compatibility_mode.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_session_get_data.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_session_get_data2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_session_get_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_session_get_ptr.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_session_is_resumed.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_session_set_data.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_session_set_ptr.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_session_ticket_enable_client.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_session_ticket_enable_server.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_session_ticket_key_generate.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_set_default_export_priority.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_set_default_priority.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_sign_algorithm_get_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_sign_algorithm_get_requested.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_sign_callback_get.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_sign_callback_set.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_sign_get_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_sign_get_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_sign_list.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_srp_allocate_client_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_srp_allocate_server_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_srp_base64_decode.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_srp_base64_decode_alloc.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_srp_base64_encode.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_srp_base64_encode_alloc.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_srp_free_client_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_srp_free_server_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_srp_server_get_username.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_srp_set_client_credentials.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_srp_set_client_credentials_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_srp_set_prime_bits.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_srp_set_server_credentials_file.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_srp_set_server_credentials_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_srp_verifier.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_strerror.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_strerror_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_supplemental_get_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_transport_get_ptr.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_transport_get_ptr2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_transport_set_errno.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_transport_set_errno_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_transport_set_global_errno.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_transport_set_lowat.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_transport_set_ptr.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_transport_set_ptr2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_transport_set_pull_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_transport_set_push_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_transport_set_vec_push_function.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_check_issuer.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_export.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_get_authority_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_get_crt_count.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_get_crt_serial.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_get_dn_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_get_extension_data.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_get_extension_info.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_get_extension_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_get_issuer_dn.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_get_issuer_dn_by_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_get_next_update.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_get_number.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_get_raw_issuer_dn.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_get_signature.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_get_signature_algorithm.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_get_this_update.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_get_version.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_import.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_print.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_privkey_sign.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_set_authority_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_set_crt.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_set_crt_serial.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_set_next_update.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_set_number.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_set_this_update.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_set_version.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_sign.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_sign2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crl_verify.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_export.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_attribute_by_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_attribute_data.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_attribute_info.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_basic_constraints.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_challenge_password.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_dn.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_dn_by_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_dn_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_extension_by_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_extension_data.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_extension_info.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_key_purpose_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_key_rsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_key_usage.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_pk_algorithm.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_subject_alt_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_subject_alt_othername_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_get_version.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_import.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_print.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_privkey_sign.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_set_attribute_by_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_set_basic_constraints.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_set_challenge_password.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_set_dn_by_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_set_key.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_set_key_purpose_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_set_key_rsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_set_key_usage.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_set_pubkey.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_set_subject_alt_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_set_version.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_sign.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_sign2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crq_verify.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_check_hostname.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_check_issuer.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_check_revocation.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_cpy_crl_dist_points.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_export.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_activation_time.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_authority_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_basic_constraints.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_ca_status.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_crl_dist_points.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_dn.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_dn_by_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_dn_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_expiration_time.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_extension_by_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_extension_data.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_extension_info.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_extension_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_fingerprint.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_issuer.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_issuer_alt_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_issuer_alt_name2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_issuer_alt_othername_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_issuer_dn.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_issuer_dn_by_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_issuer_dn_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_issuer_unique_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_key_purpose_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_key_usage.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_pk_algorithm.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_pk_dsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_pk_rsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_preferred_hash_algorithm.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_proxy.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_raw_dn.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_raw_issuer_dn.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_serial.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_signature.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_signature_algorithm.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_subject.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_subject_alt_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_subject_alt_name2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_subject_alt_othername_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_subject_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_subject_unique_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_verify_algorithm.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_get_version.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_import.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_import_pkcs11.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_import_pkcs11_url.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_list_import.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_list_import_pkcs11.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_list_verify.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_print.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_privkey_sign.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_activation_time.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_authority_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_basic_constraints.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_ca_status.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_crl_dist_points.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_crl_dist_points2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_crq.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_crq_extensions.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_dn_by_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_expiration_time.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_extension_by_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_issuer_dn_by_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_key.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_key_purpose_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_key_usage.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_proxy.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_proxy_dn.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_pubkey.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_serial.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_subject_alt_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_subject_alternative_name.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_subject_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_set_version.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_sign.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_sign2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_verify.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_verify_data.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_crt_verify_hash.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_dn_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_dn_export.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_dn_get_rdn_ava.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_dn_import.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_dn_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_dn_oid_known.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_cpy.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_deinit.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_export.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_export_dsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_export_pkcs8.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_export_rsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_export_rsa_raw2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_fix.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_generate.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_get_key_id.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_get_pk_algorithm.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_import.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_import_dsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_import_pkcs8.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_import_rsa_raw.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_import_rsa_raw2.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_init.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_sec_param.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_sign_data.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_sign_hash.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_privkey_verify_data.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_rdn_get.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_rdn_get_by_oid.3.gz exists in filesystem
    gnutls: /usr/share/man/man3/gnutls_x509_rdn_get_oid.3.gz exists in filesystem
    Errors occurred, no packages were upgraded.
    Last edited by whatshisname (2011-07-25 12:57:04)

    falconindy wrote:
    I would not recommend messing around with the DB directly. Just reinstall the one package:
    pacman -Sf gnutls
    Done
    Booom!  That did it!
    Thanks, guys.  I appreciate the help.

  • ITunes 10.2.2 - Why have all of my mp3 files have been duplicated in the filesystem?

    Nearly every single "Song.mp3" has a corresponding "Song 1.mp3". It's going to take forever to clean up manually.
    This isn't just an issue with "recently added" music, it looks like every item in the filesystem has been duplicated. I didn't, to my knowledge, hit any "duplicate every mp3" button and folders aren't duped, just individual files. Is this an iTunes auto-sorting bug? Is there an easy fix?
    I should add that the duplicates are *not* present in iTunes, just in the Finder.

    Do you mean 5/6 7/8 for the output channels?
    If so: Is the Firepod still hooked up? If not, you are donw to the default 1/2 outputs of you Mac.

  • Best practise, do you store your files in the Filesystem, too?

    I hope you can answer my question? For three weeks we have all the objects in the Repository | | and on the filesystem. We have mapped the repository to the filesystem.
    Does that makes sense? Or should we delete all the data from the filesystem so that we haven't stored it redundant?
    What would you prefer?
    AND: Is it possible to start a script e.g. for creating a table out of the script which lies in the repository?
    Or for DBA things would it be better to store the scripts outside again?
    Thank you very much
    Henrik

    You should use the local file system only when you need to edit the files. However, the Repository will warn you if the file system and the repository stored files become out of synch.
    Store all the scripts in the Repository.
    You could associate a .sql file with sqlplus. Thus on opening the file from the Repository sqlplus would be started and ask for a username/password.

  • Glibc - /usr/share/info/dir is already in the filesystem

    Hello,
    I just build glibc from abs with debugging support and when trying to install it via pacman I get conflicting files error:  "/usr/share/info/dir is already in the filesystem". Any ideas?

    /usr/share/info/dir makes part of the info documentation system. Packages must add entries to this file and not overwrite it, so your package need to be fixed. You can delete the dir file from the package (do not overwrite the system file or you will destroy the info system); you just won't have a title entry in the info page (the menu displayed when you type info will not have the entry corresponding to your package). You can also fix it properly with the install-info command (but I do not know this package, so I do not know exactly what you have to install).
    I suggest you to report the problem it in a comment in the AUR.
    Last edited by olive (2013-01-29 07:10:50)

  • Loading classes from an area in the filesystem.

    I need to do a scan for classes on a given area of the filesystem, but I'm not sure how to do this. I also need to be able to find the current jre/lib/ext location on the current system (thats going to be the first area I scan).
    The reason for all this is that I want a list of all available JDBC drivers installed (DriverManager.getDrivers() only shows currently LOADED drivers).
    Any idea how I :
    1: Scan a dir and get a list of classesnames contained within.
    2: Get the location of jre/lib/ext
    It's a heavy one, but hopefully someone will be able to help.

    System.getProperty("java.ext.dirs")will get you the location of the extension directories. I think java.class.path will get you your classpath, but doSystem.getProperties().list(System.out);to get a complete list of system properties including that.
    To get a list of files in a directory, use methods from the File class (you could look it up).

  • Linking to mailboxes from elsewhere in the filesystem (or reverse)

    Hi, I'm quite disappointed with how Mail integrates with the rest of the filesystem. Basically if I have a folder somewhere on the Mac I would like to have an alias or a pointer or something in it, which takes me immediately to the mailboxes I deem relevant to that project, without negotiating the mailbox syste within Mail. I can do this with Eudora, for example, but not with mail. Is there a way to do it?
    Or the inverse: if I have a mailbox within Mail, is there a way of inserting a hyperlink which takes me to the relevant folder in the filesystem where I can put documents relevant to that project?
    Mac G5   Mac OS X (10.4.2)  

    Hi Malcolm.
    Probably not what you want, but you may find LinkABoo useful.

  • How to save files in the filesystem and remember their position?

    This is a fairly novice question. I'm writing a Java desktop application which executed from the jar (actually a jnlp) will first run a setup creating some files in a directory of user choice.
    When the application runs, it'll requires access to those files. However, if they were not saved in the user home directory, how could the application know where they are located? I hope the problem is clear enough. I cannot permanently save the user choice of location at setup time other than in the user home directory, but then I'd rather just save the files there. The problem is that in my case the user has no writing permissions to the user directory.

    simpatico_gabriele wrote:
    I'll need to look closer at your demo and the API. However from what you suggest it seems my application could still run in the sandbox (without being signed) and access the database without bothering the user (if he chooses always allow the first time). True?No. The PS can be accessed sand-boxed, so you can get the path to the DB in a sandboxed app., but the DB itself will require all-permissions to access. (Actually there are some pure Java DBs that can be launched from sand-boxed code, from classes on the run-time classpath, and so long as the app. does not need to change the data - that would be OK.)
    It is true that the JNLP API provides sand-boxed access to the local file system, but it does so through a FileContents object, a strictly limited type of File that is not usable in exchange for a method that accepts (for e.g.) a File or URL.
    If so, I still have a concern: the application also needs to store an image in a folder the user can reach. Writes to the image occur frequently. So using just the PersistService (as in ur demo) wouldn't do since it would be cached somewhere not chosen by the user (and hardly reachable anyway).
    I could use the ExtensionInstallerService to store along the db this image in the same path, and then write to it in the same way as I do with the db. However, will I need to offer a JFileChooser twice, once for each file,.. I don't understand why. The EIS determines the path for the DB using a JFileChooser, then stores it in the PS. The app. gets the path to the DB and image folder, from the PS.
    If they are to be stored in the same path, why is there a need to show 2 file choosers?

Maybe you are looking for

  • HT2801 I understand there is a way to use my Super Drive with my PC.  However, it requires a System OS Disk.  Which I never received.  Can you help me with this?

    I understand there is a way to use my Super Drive with my PC.  However, it requires a System OS Disk.  Which I never received.  Can you help me with this?

  • Address Book - Can't add Notes

    Using 10.5.3 I can't add Notes to my address book cards either in Edit mode or not in Edit mode. The word "Note" is grayed out and I can't type in the field. What am I missing? I feel like I am doing something wrong. Thanks for any suggestions.

  • Mac Pro 8 core Nehalem RAM upgrade

    Hi All, I own a 8 core 2.26 mac pro. Its Ram configuration is the most basic, 6G. I am looking to do some upgrade, and would love some pointers to do so. I work mainly with music, and I have been getting out of memory message from Logic Pro so I assu

  • Subscribing to Gallery - RSS feeds

    I have created a number of albums in My Gallery from within iPhoto with the intention of letting the (extensive) family view them without my having to e-mail them etc. This has and is working fine. To save even more time I thought that the option to

  • Delivery job dumping VL10B

    Hello gurus, I am trying to create a delivery for an STPO (Stock transfer PO) using VL10B. When I execute it, it shows up the PO. Then when I select the PO and click back ground, its dumping.  The error is  - The termination occurred in the ABAP prog