search for: get_typ

Displaying 20 results from an estimated 34 matches for "get_typ".

Did you mean: get_type
2014 Nov 22
1
Get rid of printf format warning format ‘%llx’ expects type ‘long long unsigned int’, but argument 2 has type ‘uint64_t’
...c index c05b7cd..7d0342c 100644 --- a/com32/hdt/hdt-cli-memory.c +++ b/com32/hdt/hdt-cli-memory.c @@ -47,7 +47,7 @@ static void show_memory_e820(int argc __unused, char **argv __unused, more_printf("BIOS-provided physical RAM e820 map:\n"); for (int i = 0; i < count; i++) { get_type(map[i].type, type, 14); - more_printf("%016llx - %016llx %016llx (%s)\n", + more_printf("%016" PRIx64 " - %016" PRIx64 " %016" PRIx64 " (%s)\n", map[i].addr, map[i].size, map[i].addr + map[i].size, remove_spaces(type)); } @@ -60,...
2007 Feb 02
0
[PATCH] [Xm-TEST] Fix XAPI test case 02
...ated to SR, VDI, VBD +# Based on the ''C'' code. # # Used methods: # SR: get_by_name_label, get_VDIs # # VDI: create, get_name_label, destroy # -# VBD: create, get_driver, get_mode, get_VM, get_VDI, get_device +# VBD: create, get_driver, get_mode, get_VM, get_VDI, get_device, get_type # # VM: get_VBDs @@ -43,15 +44,17 @@ vdi_rec = { ''name_label'' : "My disk", ''sector_size'' : 512, ''type'' : 0, ''shareable'' : 0, - ''read-only'&...
2009 Oct 12
1
First draft: node storage admin
This patch provides the ability to create a "dir" type storage pool, and to add and remove volumes for existing pools.
2007 Dec 03
0
libswfdec/Makefile.am
...WFDEC_AS_NATIVE(x,y,func) SWFDEC_AS_CONSTRUCTOR(x,y,func,NULL)" \ && echo "#define SWFDEC_AS_CONSTRUCTOR(x,y,func,type) { x, y, func, G_STRINGIFY (func), type }," \ && echo "static const struct { guint x, y; SwfdecAsNative func; const char *name; GType (* get_type) (void); } native_funcs[] = {" \ - && grep -he "^SWFDEC_AS_CONSTRUCTOR" $(libswfdec_ at SWFDEC_MAJORMINOR@_la_SOURCES) \ - && grep -he "^SWFDEC_AS_NATIVE" $(libswfdec_ at SWFDEC_MAJORMINOR@_la_SOURCES) \ + && grep -he "^SWFDEC_AS_CONSTRUC...
2009 Jan 22
1
maintaining variable types in data frames
...that: Y was not changed, and more specifically, Y$V2 was not changed, so no change was made to the variable types. It all makes sense, but I want an easy way to maintain the structure of a data frame when I do this kind of operation. I ought to be able to do something like this: Ytypes <- get_types(Y) Y[is.na(Y)] <- X[is.na(Y)] use_types(Y, Ytypes) That kind of system would ensure that the basic structure of the data frame can be maintained. I don't want to have to check by hand, and sometimes it would be impossible to do so. So what's the trick? Is there a trick? Mike
2006 May 20
2
xapian-tcpsrv need to reopen database?
Hi, I'm adapting the omega (in a Python way ;) to do search across multiple remotes database, for now, I have only one xapian-tcpsrc running, but I have documents being inserted at the same time, so (like I have readed in others e-mails) the xapian-tcpsrc throw the following message: Connection from 192.168.0.101, port 64161 Got exception DatabaseModifiedError: The revision being read has
2017 Dec 08
0
Wine release 3.0-rc1
...ontainer type as a string. mshtml: Pass listener type as a string to get_listener_container. mshtml: Pass listener type as a string to remove_event_listener. mshtml: Silence some noisy FIXMEs. mshtml: Store event type string in DOMEvent object. mshtml: Added IDOMEvent::get_type implementation. mshtml: Use IDOMEvent for IHTMLEventObj::get_type implementation. mshtml: Added IDOMEvent::get_bubbles implementation. mshtml: Added IDOMEvent::get_cancelable implementation. mshtml: Ignore preventDefault calls for non-cancelable events. mshtml: Fixed...
2010 Aug 27
3
[PATCH 0/2] [RFC] xl: add cpuid config file option
Hi, xl is currently ignoring the cpuid= variable in the config file. As I don''t like the current interface xm exposes (basically because it is complicated, unintuitive and very error prone), I implemented a new scheme for specifying CPUID flags policy, combining QEMU''s and Xen''s approach: cpuid = "<base>,<feature_name>=[01xks]*,... The patch includes a
2008 Jun 15
1
14 commits - configure.ac swfdec/.gitignore swfdec-gtk/swfdec_gtk_loader.c swfdec-gtk/swfdec_playback_alsa.c swfdec/Makefile.am swfdec/swfdec_asnative.h swfdec/swfdec_as_string.c swfdec/swfdec_audio.c swfdec/swfdec_audio_load.c swfdec/swfdec_audio_load.h
...D_H_ + +#include <swfdec/swfdec_audio_stream.h> +#include <swfdec/swfdec_load_sound.h> + +G_BEGIN_DECLS + +typedef struct _SwfdecAudioLoad SwfdecAudioLoad; +typedef struct _SwfdecAudioLoadClass SwfdecAudioLoadClass; + +#define SWFDEC_TYPE_AUDIO_LOAD (swfdec_audio_load_get_type()) +#define SWFDEC_IS_AUDIO_LOAD(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SWFDEC_TYPE_AUDIO_LOAD)) +#define SWFDEC_IS_AUDIO_LOAD_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SWFDEC_TYPE_AUDIO_LOAD)) +#define SWFDEC_AUDIO_LOAD(obj) (G_TYPE_CHECK_INSTANC...
2012 Jan 17
3
GObject bindings
This is the first iteration of the GObject bindings. I have 'kicked the tyres' on these, meaning I have ensured that a bunch of basic manual tests work as expected. I'm in the process of adding more comprehensive tests. Here's an example simple javascript program which uses these bindings: === const Guestfs = imports.gi.Guestfs; print('Starting'); var g = new
2009 Oct 27
1
Storage admin patches
This set of patches supercedes the previous set, and has been rebased with changes from upstream.
2009 Nov 09
1
Rebased again...
This patch again rebases on upstream and should apply on next as of right now.
2016 Jun 24
0
Wine release 1.9.13
...entSelector::querySelectorAll implementation. jscript: Allow Function.apply() to be called on non-jscript objects. mshtml: Added IElementSelector interface stub implementation. mshtml: Added IElementSelector::querySelectorAll implementation. mshtml: Added IHTMLButtonElement::get_type implementation. mshtml: Added IHTMLButtonElement::value property implementation. mshtml: Added IHTMLButtonElement::form property implementation. mshtml: Pass correct name length to set_http_header in nsUploadChannel_SetUploadStream. jscript: Properly handle arguments in Obj...
2009 Oct 14
0
[PATCH node] Provides a new storage administration system to the managed node.
....get_name()) + pooltypes = [] + for pooltype in Storage.StoragePool.get_pool_types(): + pooltypes.append(["%s: %s" % (pooltype, Storage.StoragePool.get_pool_type_desc(pooltype)), + pooltype, + self.__config.get_type() is pooltype]) + self.__type = RadioBar(screen, pooltypes) + grid = Grid(2, 2) + grid.setField(Label("Name:"), 0, 0, anchorRight = 1) + grid.setField(self.__name, 1, 0, anchorLeft = 1) + grid.setField(Label("Type:"), 0, 1, anchorRight = 1, an...
2009 Oct 21
1
Storage administration and refactoring of domain admin
This pair of patches provide a new storage admin interface. Then, on top of that, it refactors the domain administration pieces to now properly use storage pools and volumes when defining a new VM.
2012 May 23
2
Bug#674088: xcp-xapi: vbd-plug to dom0 does not creates /dev/xvd* devices in dom0
...per] task dispatch:SR.get_by_uuid D:32428397e8f0 created by task D:af7c46114409 [20120523T00:23:29.144Z|debug|lab-xh3|1059 UNIX /var/lib/xcp/xapi||http_critical] Premature termination of connection! [20120523T00:23:29.145Z|debug|lab-xh3|1060 UNIX /var/lib/xcp/xapi||dummytaskhelper] task dispatch:SR.get_type D:e7b7d4aa6c41 created by task D:af7c46114409 [20120523T00:23:29.146Z|debug|lab-xh3|1060 UNIX /var/lib/xcp/xapi||http_critical] Premature termination of connection! [20120523T00:23:29.147Z|debug|lab-xh3|1061 UNIX /var/lib/xcp/xapi||dummytaskhelper] task dispatch:SM.get_all_records_where D:02ae982a...
2007 Aug 24
0
Wine release 0.9.44
...2: Quote the printer name prior to passing it to the shell. Jacek Caban (20): urlmon: Wrap IBindCtx in CreateAsyncBindCtxEx. mshtml: Don't mess with gecko specific protocols. mshtml: Added IDM_SELECTALL implementation. mshtml: Use GetIsCollapsed in IHTMLSelectionObject::get_type. mshtml: Make get_typeinfo thread safe. mshtml: Added IHTMLTxtRange::duplicate implementation. mshtml: Added IHTMLTxtRange::collapse implementation. mshtml: Added ICustomDoc stub implementation. mshtml: Reduce debug traces. mshtml: Check use_wine_url in nsIURI::...
2008 Mar 21
0
Wine release 0.9.58
...d WM_CTLCOLORSTATIC during WM_ERASEBKGND. gdi32: Factor out FreeType initialization into a separate function. gdi32: Ignore fonts with names that begin with a '.'. Jacek Caban (34): mshtml: Added IHTMLDocument2::write implementation. mshtml: Added IHTMLScriptElement:get_type implementation. mshtml: Use load group to find NSContainer in AsyncOpen if URI has no associated container. urlmon: Fixed MapUrlToZone test on IE7. jscript: Added stub DLL. activscp.idl: Added CATID_* declarations. include: Added activaut.idl. mshtml: Improve he...
2012 Jan 20
11
[PATCH 01/10] Revert "Revert "generator: Add CamelName flag""
This reverts commit 3f6ca541c7b24d4c86688a509582cb41a7e0078c. The original commit was reverted prematurely. --- generator/generator_actions.ml | 10 +++++----- generator/generator_checks.ml | 5 +++++ generator/generator_types.ml | 3 +++ 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/generator/generator_actions.ml b/generator/generator_actions.ml index
2012 May 23
4
Bug#674161: xcp-xapi: 'the device disappeared from xenstore' message during vbd-plug (vm-start)
...khelper] task dispatch:SR.get_by_uuid D:4d9c1be2ddba created by task D:da62a5425fb6 [20120523T14:00:23.624Z|debug|lab-xh3|90 UNIX /var/lib/xcp/xapi||http_critical] Premature termination of connection! [20120523T14:00:23.624Z|debug|lab-xh3|91 UNIX /var/lib/xcp/xapi||dummytaskhelper] task dispatch:SR.get_type D:259559b7ae22 created by task D:da62a5425fb6 [20120523T14:00:23.626Z|debug|lab-xh3|91 UNIX /var/lib/xcp/xapi||http_critical] Premature termination of connection! [20120523T14:00:23.627Z|debug|lab-xh3|92 UNIX /var/lib/xcp/xapi||dummytaskhelper] task dispatch:SM.get_all_records_where D:e8b7d1fd933a...