Lines Matching refs:port
29 mutable port: Xeneventchn.t option; RecordField
46 let get_port d = d.port
67 let notify dom = match dom.port with
69 warn "domain %d: attempt to notify on unknown port" dom.id
70 | Some port ->
71 Event.notify dom.eventchn port
74 dom.port <- Some (Event.bind_interdomain dom.eventchn dom.id dom.remote_port);
75 …debug "bound domain %d remote port %d to local port %s" dom.id dom.remote_port (string_of_port dom…
79 debug "domain %d unbound port %s" dom.id (string_of_port dom.port);
80 begin match dom.port with
82 | Some port -> Event.unbind dom.eventchn port
93 port = None;