Displaying 5 results from an estimated 5 matches for "read_handler".
Did you mean:
read_handle
2007 Apr 05
0
Patch: Add io.c functions, and vfat library
...disk_info argument. This
way I can maintain multiple instances of read handlers, for example if
I'm reading and comparing stuff from two different partitions, etc.
There was some discussion on whether the FAT library, should be in
com32/lib, but its quite helpful for me since I can hook my own
read_handler for any partition on any disk, and use libfat to read
files off it. Here is an example:
typedef struct filedesc {
diskinfo* disk_info;
part_entry* partition;
} filedesc;
static filedesc rFd;
static int fat_disk_read_handle(intptr_t fdp, void* buf, size_t nbyte,
libfat_sector_t sector)
{...
2018 Dec 28
19
[Bug 2948] New: implement "copy-data" sftp extension
https://bugzilla.mindrot.org/show_bug.cgi?id=2948
Bug ID: 2948
Summary: implement "copy-data" sftp extension
Product: Portable OpenSSH
Version: -current
Hardware: All
URL: https://tools.ietf.org/html/draft-ietf-secsh-filexfer-
extensions-00#section-7
OS: All
Status: NEW
2009 Mar 02
0
[PATCH 5 of 13] exploiting the new interface in vnc.c
...VncSendHextileTile *send_hextile_tile;
- int pix_bpp, pix_big_endian;
- int red_shift, red_max, red_shift1, red_max1;
- int green_shift, green_max, green_shift1, green_max1;
- int blue_shift, blue_max, blue_shift1, blue_max1;
+ DisplaySurface clientds, serverds;
VncReadEvent *read_handler;
size_t read_handler_expect;
@@ -351,10 +351,10 @@
{
VncState *vs = ds->opaque;
- x = MIN(x, vs->width);
- y = MIN(y, vs->height);
- w = MIN(w, vs->width - x);
- h = MIN(h, vs->height - y);
+ x = MIN(x, vs->serverds.width);
+ y = MIN(y, vs->server...
2012 Jan 09
39
[PATCH v4 00/25] xen: ARMv7 with virtualization extensions
Hello everyone,
this is the fourth version of the patch series that introduces ARMv7
with virtualization extensions support in Xen.
The series allows Xen and Dom0 to boot on a Cortex-A15 based Versatile
Express simulator.
See the following announce email for more informations about what we
are trying to achieve, as well as the original git history:
See
2011 Dec 06
57
[PATCH RFC 00/25] xen: ARMv7 with virtualization extensions
Hello everyone,
this is the very first version of the patch series that introduces ARMv7
with virtualization extensions support in Xen.
The series allows Xen and Dom0 to boot on a Cortex-A15 based Versatile
Express simulator.
See the following announce email for more informations about what we
are trying to achieve, as well as the original git history:
See