search for: generate_names

Displaying 10 results from an estimated 10 matches for "generate_names".

2007 Aug 15
3
2 commits - libswfdec/swfdec_as_object.c test/trace
libswfdec/swfdec_as_object.c | 62 +++++++++++++++------- test/trace/Makefile.am | 9 +++ test/trace/addProperty-set-prototypes-5.swf |binary test/trace/addProperty-set-prototypes-5.swf.trace | 4 + test/trace/addProperty-set-prototypes-6.swf |binary test/trace/addProperty-set-prototypes-6.swf.trace | 5 +
2007 Aug 22
0
5 commits - libswfdec/swfdec_as_array.c libswfdec/swfdec_as_boolean.c libswfdec/swfdec_as_function.c libswfdec/swfdec_as_math.c libswfdec/swfdec_as_number.c libswfdec/swfdec_as_script_function.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h
...erties when called with something else than _global diff --git a/test/trace/trace_properties.as b/test/trace/trace_properties.as index bfa256c..901526f 100644 --- a/test/trace/trace_properties.as +++ b/test/trace/trace_properties.as @@ -421,10 +421,13 @@ function trace_properties (o, prefix, id generate_names (_global.Object, "_global", "Object"); generate_names (_global, "", "_global"); - generate_names (o, prefix, identifier); - if (typeof (o) == "object" || typeof (o) == "function") { + if (o["mySecretId"] == undefin...
2007 Aug 22
0
3 commits - libswfdec/swfdec_as_array.c libswfdec/swfdec_as_function.c test/trace
...identifier, prop, level + 1); + } + else + { + trace (indentation + prop + flags + " = " + o[prop]["mySecretId"]); + } + } + else + { + trace (indentation + prop + flags + " = " + typeof (o[prop]) + value); } } } function generate_names (o, prefix, identifier) { - var info = new_info (); - // mark the ones that are not hidden - for (var prop in o) - { - // only get the ones that are not only in the __proto__ - if (is_blaclisted (o, prop) == false) { - if (hasOwnProperty (o, prop) == true) - set_info (info, prop,...
2017 Mar 30
4
[PATCH 0/3] p2v, v2v: Ensure the full version is always available in several places.
After debugging a virt-p2v issue with a customer in the middle of the night on Tuesday, I felt it would have been helpful to know exactly which version(s) of virt-p2v and virt-v2v they were using. That wasn't very clear from the log file I was provided with, so this change makes sure the information is included every time. Rich.
2007 Sep 11
0
8 commits - libswfdec/swfdec_as_function.c libswfdec/swfdec_as_initialize.as libswfdec/swfdec_as_initialize.h libswfdec/swfdec_as_object.c libswfdec/swfdec_as_strings.c test/trace
...ot;mySecretId"] = "_global.Object"; + _global.Function["mySecretId"] = "_global.Function"; + _global.Function.prototype["mySecretId"] = "_global.Function.prototype"; _global.XMLNode["mySecretId"] = "_global.XMLNode"; generate_names (_global.Object, "_global", "Object"); + generate_names (_global.Function, "_global", "Function"); + generate_names (_global.Function.prototype, "_global", "Function.prototype"); generate_names (_global.XMLNode, "_global", &...
2016 Jun 30
4
[PATCH 0/4] p2v: Send ^C to remote end to cancel the conversion.
(I don't have a BZ# for this yet, but I'm expecting it to be filed as an RFE) Currently if the user is in the virt-p2v GUI and cancels the conversion, all that happens is we abruptly close the ssh session to virt-v2v. That is bad .. possibly (or maybe not). But in any case there is an alternative: we can send a ^C key to the virt-v2v process, which it could catch and handle gracefully,
2007 Nov 27
0
12 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_loader.c libswfdec/swfdec_loader_internal.h libswfdec/swfdec_load_object_as.c libswfdec/swfdec_load_object.c libswfdec/swfdec_load_object.h
...VERSION__ == 5 +#if __SWF_VERSION__ <= 5 // create a _global object, since it doesn't have one, these are ver 6 values _global = new_empty_object (); _global.ASSetNative = ASSetNative; @@ -325,7 +325,7 @@ function trace_properties_recurse (o, prefix, identifier, level) } } -function generate_names (o, prefix, identifier) +function generate_names (o, prefix, identifier, output) { // mark the ones that are not hidden var nothidden = new Array (); @@ -368,6 +368,9 @@ function generate_names (o, prefix, identifier) } else { o[prop]["mySecretId"] = prefix + (prefix != &q...
2017 Jan 26
3
[PATCH 0/3] p2v: Allow nbdkit as an alternative NBD server.
qemu-nbd is a fine NBD server. However it's not easy to compile a reliably working version on RHEL 5. This patch series allows nbdkit to be used as an alternative (qemu-nbd is still the default). Rich.
2017 Feb 03
5
[PATCH 0/5] Support socket activation in virt-p2v.
As the subject says, support socket activation in virt-p2v. I have added upstream support for socket activation to nbdkit already: https://github.com/libguestfs/nbdkit/commit/7ff39d028c6359f5c0925ed2cf4a2c4c751af2e4 I posted a patch for qemu-nbd, still waiting on more reviews for that one: https://www.mail-archive.com/qemu-devel@nongnu.org/msg427246.html I tested this against old and new qemu
2019 Sep 10
3
[PATCH 0/2] Remove virt-p2v from libguestfs
Now that virt-p2v has its own repository [1] and releases [2], it is time to remove it from libguestfs. [1] https://github.com/libguestfs/virt-p2v [2] http://download.libguestfs.org/virt-p2v/ Pino Toscano (2): Remove virt-p2v Remove remaining virt-p2v bits .gitignore | 4 - Makefile.am | 7 +- bash/Makefile.am