search for: need_handle

Displaying 5 results from an estimated 5 matches for "need_handle".

Did you mean: nbd_handle
2012 Aug 29
5
[PATCH 0/4] Add hivex APIs into the libguestfs API (RHBZ#852394)
This adds most of the hivex APIs directly to the libguestfs API, so that you can read and write Windows Registry hive files from libguestfs without needing to download and upload hive files from the guest. This is analogous to how Augeas APIs are exposed already (guestfs_aug_*) Also, inspection is now done using the new APIs, which fixes the following bug:
2022 Nov 04
3
[libnbd PATCH v2 0/3] Improve nbdsh -u handling
v1 was here: https://listman.redhat.com/archives/libguestfs/2022-October/030216.html Since then, I've incorporated changes based on Rich's feedback: swap order of patches 2 and 3 less change in patch 1 (including no unsafe eval(%s) for --uri) in patch 2, include -c in list of snippets to store, and use dict of lambdas to map back to the desired action Eric Blake (3): nbdsh:
2017 Aug 09
0
[PATCH v12 04/11] New API: Deprecate hivex_value_utf8 and replace with hivex_value_string.
...149 deletions(-) diff --git a/daemon/hivex.c b/daemon/hivex.c index 1cbfb3458..2d0913f43 100644 --- a/daemon/hivex.c +++ b/daemon/hivex.c @@ -335,6 +335,29 @@ do_hivex_value_value (int64_t valueh, size_t *size_r) return r; } +char * +do_hivex_value_string (int64_t valueh) +{ + char *r; + + NEED_HANDLE (NULL); + + r = hivex_value_string (h, valueh); + if (r == NULL) { + reply_with_perror ("failed"); + return NULL; + } + + return r; +} + +/* Deprecated alias for hivex_value_string. */ +char * +do_hivex_value_utf8 (int64_t valueh) +{ + return do_hivex_value_string (valueh); +}...
2017 Jul 07
0
Wine release 2.12
...queued asyncs. server: Allow async_handoff users to set result themselves. ntdll: Set iosb status in server_ioctl_file. server: Use create_request_async in ioctl request handler. server: Use create_request_async in flush request handler. server: Remove no longer needed need_handle from queue_irp. rsaenh: Use bcrypt for SHA512 hashes. rsaenh: Use bcrypt for SHA384 hashes. rsaenh: Use bcrypt for SHA265 hashes. winhttp/tests: Get rid of unneeded Sleep() call. server: Use default poll only for default read and write queue asyncs. server: Assoc...
2017 Aug 09
16
[PATCH v12 00/11] Reimplement inspection in the daemon.
This fixes almost everything. Note that it adds an extra commit which fixes the whole utf8/iconv business. It's probably better to list what isn't fixed: (1) I didn't leave the osinfo code around because I'm still haven't looked too closely at virt-builder-repository. Can't we just fetch this code from the git history when we need it? (2) I didn't change the way