Displaying 3 results from an estimated 3 matches for "ocontext".
Did you mean:
context
2011 Nov 21
0
[PATCH] xsm/flask: fix resource list range checks
...ned long end);
+int security_iterate_iomem_sids(unsigned long start, unsigned long end,
+ security_iterate_fn fn, void *data);
+
+int security_iterate_ioport_sids(u32 start, u32 end,
+ security_iterate_fn fn, void *data);
+
int security_ocontext_add(char *ocontext, unsigned long low,
unsigned long high, u32 sid);
diff --git a/xen/xsm/flask/ss/services.c b/xen/xsm/flask/ss/services.c
index 6e72800..b880762 100644
--- a/xen/xsm/flask/ss/services.c
+++ b/xen/xsm/flask/ss/services.c
@@ -1594,6 +1594,53 @@ out:...
2012 Jan 31
26
[PATCH 00/10] FLASK updates: MSI interrupts, cleanups
...Add security label to IRQ debug output
MSI interrupt fixes:
[PATCH 03/10] xsm/flask: Use PCI device label for PCI-MSI IRQs
[PATCH 04/10] xsm: Add xsm_map_domain_pirq hook
[PATCH 05/10] xsm: Use mapped IRQ not PIRQ in unmap_domain_pirq
Cleanup:
[PATCH 06/10] xsm/flask: Improve error reporting for ocontexts
[PATCH 07/10] xsm/flask: Remove useless back pointers
[PATCH 08/10] flask/policy: Policy build updates
[PATCH 09/10] flask/policy: Add user and constraint examples
[PATCH 10/10] flask/policy: use declare_domain for dom0_t
2009 Jun 01
0
[mapstraction commit] r12 - Implemented most Cloudmade functions. Still requires image, tile and KML/GeoRSS overlays
...outhWest();
var ne = bounds.getNorthEast();
- // TODO: Add provider code
-
+ map.zoomToBounds(new CM.LatLngBounds(sw.toProprietary(this.api),
ne.toProprietary(this.api)));
},
addImageOverlay: function(id, src, opacity, west, south, east,
north, oContext) {
@@ -237,11 +248,12 @@
LatLonPoint: {
toProprietary: function() {
- return new CM.LatLng(this.lat,this.lon);
+ var cll = new CM.LatLng(this.lat,this.lon);
+ return cll;
},
- fromProprietary: function(googlePoint) {
- // TODO: Add provider...