search for: new_info

Displaying 7 results from an estimated 7 matches for "new_info".

2013 Mar 21
27
[PATCH 0/4] xen/arm: guest SMP support
Hi all, this small patch series implement guest SMP support for ARM, using the ARM PSCI interface for secondary cpu bringup. Stefano Stabellini (4): xen/arm: basic PSCI support, implement cpu_on xen/arm: support for guest SGI xen/arm: support vcpu_op hypercalls xen: move VCPUOP_register_vcpu_info to common code xen/arch/arm/domain.c | 66 ++++++++++++++++++++++++
2007 Aug 21
0
2 commits - test/trace
...prop, 0, 4); + o.__proto__[prop] = "to-be-deleted"; + delete o.__proto__[prop]; + if (o.__proto__[prop] != undefined) + trace ("ERROR: Couldn't delete temporary __proto__[\"" + prop + "\"]"); + return result; + } +} +#endif function new_info () { return new_empty_object (); @@ -95,11 +122,13 @@ function is_blaclisted (o, prop) if (prop == "mySecretId" || prop == "globalSecretId") return true; +#if __SWF_VERSION__ >= 6 if (o == _global.Camera && prop == "names") return true;...
2013 Jul 18
15
[PATCH v5 0/5] xen: public interface and foreign struct check changes for arm
I last posted this back in April to critical acclaim (AKA near total silence). I''m not sure who looks after tools/include/xen-foreign. I had thought it was Jan but I think I was confused and was thinking of the semi-related xen/include/compat stuff. IOW I think nobody felt "responsible". Unless there''s any objection lets just treat this as coming under tools. The
2007 Aug 20
0
3 commits - libswfdec/swfdec_as_context.c test/trace
...ea1 --- /dev/null +++ b/test/trace/trace_properties.as @@ -0,0 +1,147 @@ +// doesn't work right in Flash 5 + +function new_empty_object () { + var hash = new Object (); + ASSetPropFlags (hash, null, 0, 7); + for (var prop in hash) { + delete hash[prop]; + } + return hash; +} + +function new_info () { + return new_empty_object (); +} + +function set_info (info, prop, id, value) { + info[prop + "_-_" + id] = value; +} + +function get_info (info, prop, id) { + return info[prop + "_-_" + id]; +} + +// print all properties of a given object, flags are: +// h = hidden +//...
2007 Aug 22
0
3 commits - libswfdec/swfdec_as_array.c libswfdec/swfdec_as_function.c test/trace
...{ + 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, "hidden", false); - } + var nothidde...
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 20
0
Branch 'vivi' - 60 commits - libswfdec-gtk/swfdec_gtk_loader.c libswfdec/Makefile.am libswfdec/swfdec_as_array.c libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame_internal.h libswfdec/swfdec_as_interpret.c
...ea1 --- /dev/null +++ b/test/trace/trace_properties.as @@ -0,0 +1,147 @@ +// doesn't work right in Flash 5 + +function new_empty_object () { + var hash = new Object (); + ASSetPropFlags (hash, null, 0, 7); + for (var prop in hash) { + delete hash[prop]; + } + return hash; +} + +function new_info () { + return new_empty_object (); +} + +function set_info (info, prop, id, value) { + info[prop + "_-_" + id] = value; +} + +function get_info (info, prop, id) { + return info[prop + "_-_" + id]; +} + +// print all properties of a given object, flags are: +// h = hidden +//...