Searched refs:handle (Results 151 - 175 of 288) sorted by relevance

1234567891011>>

/barrelfish-master/include/
H A Dnsswitch.h215 void *handle; /* handle from dlopen */ member in struct:_ns_mod
/barrelfish-master/include/trace/
H A Dtrace.h229 dispatcher_handle_t handle);
450 dispatcher_handle_t handle = curdispatcher();
452 if (((uintptr_t)handle) == ((uintptr_t)NULL)) {
457 struct dispatcher_generic *disp = get_dispatcher_generic(handle);
/barrelfish-master/lib/spawndomain/arch/x86/
H A Dspawn_arch.c285 dispatcher_handle_t handle,
292 disabled_area->rdi = get_dispatcher_shared_generic(handle)->udisp;
295 disabled_area->rdi = get_dispatcher_shared_generic(handle)->udisp;
300 disabled_area->edi = get_dispatcher_shared_generic(handle)->udisp;
284 spawn_arch_set_registers(void *arch_load_info, dispatcher_handle_t handle, arch_registers_state_t *enabled_area, arch_registers_state_t *disabled_area) argument
/barrelfish-master/usr/monitor/
H A Dtrace_support.c56 dispatcher_handle_t handle = curdispatcher(); local
57 struct dispatcher_generic *disp = get_dispatcher_generic(handle);
166 dispatcher_handle_t handle = curdispatcher(); local
167 struct dispatcher_generic *disp = get_dispatcher_generic(handle);
/barrelfish-master/kernel/arch/x86_64/
H A Dirq.c760 dispatcher_handle_t handle = dcb_current->disp; local
762 get_dispatcher_shared_generic(handle);
771 bool disabled = dispatcher_is_disabled_ip(handle, rip);
794 assert((disabled && disp_save_area == dispatcher_get_trap_save_area(handle))
795 || (!disabled && disp_save_area == dispatcher_get_enabled_save_area(handle)));
823 assert(disp_save_area == dispatcher_get_trap_save_area(handle));
826 resume(dispatcher_get_trap_save_area(handle));
828 // can't handle a trap while disabled: nowhere safe to deliver it
884 // APIC timer interrupt: handle in kernel and reschedule
972 // only handle PI
1019 dispatcher_handle_t handle = dcb_current->disp; local
[all...]
/barrelfish-master/include/vm/
H A Dvnode_pager.c205 vnode_pager_alloc(void *handle, vm_ooffset_t size, vm_prot_t prot, argument
214 if (handle == NULL)
217 vp = (struct vnode *) handle;
243 object->handle = handle;
281 vp = object->handle;
289 object->handle = NULL;
314 struct vnode *vp = object->handle;
533 vp = object->handle;
634 vp = object->handle;
[all...]
H A Dswap_pager.c345 #define NOBJLIST(handle) \
346 (&swap_pager_object_list[((int)(intptr_t)handle >> 4) & (NOBJLISTS-1)])
357 swap_pager_alloc(void *handle, vm_ooffset_t size,
585 swap_pager_alloc_init(void *handle, struct ucred *cred, vm_ooffset_t size, argument
597 object->handle = handle;
615 * holding the sw_alloc_sx lock in case handle != NULL.
618 swap_pager_alloc(void *handle, vm_ooffset_t size, vm_prot_t prot, argument
623 if (handle != NULL) {
628 * of the handle
[all...]
H A Dvm_object.c261 object->handle = NULL;
455 vp = object->handle;
466 struct vnode *vp = (struct vnode *) object->handle;
485 * object->handle.
569 object->handle == NULL &&
575 (object->handle == NULL) &&
609 (robject->handle == NULL) &&
734 struct vnode *vp = (struct vnode *)object->handle;
788 vdrop(object->handle);
1034 vp = object->handle;
[all...]
/barrelfish-master/kernel/arch/armv8/
H A Dexn.c268 dispatcher_handle_t handle = dcb_current->disp; local
269 if (save_area == dispatcher_get_disabled_save_area(handle)) {
270 assert(dispatcher_is_disabled_ip(handle, fault_pc));
273 assert(save_area == dispatcher_get_enabled_save_area(handle));
274 assert(!dispatcher_is_disabled_ip(handle, fault_pc));
/barrelfish-master/lib/spawndomain/
H A Dspawn.c110 err = trace_setup_child(si->taskcn, si->handle);
342 dispatcher_handle_t handle; local
343 err = vspace_map_one_frame((void**)&handle, DISPATCHER_FRAME_SIZE,
362 get_dispatcher_shared_generic(handle);
363 struct dispatcher_generic *disp_gen = get_dispatcher_generic(handle);
365 dispatcher_get_enabled_save_area(handle);
367 dispatcher_get_disabled_save_area(handle);
394 spawn_arch_set_registers(arch_info, handle, enabled_area, disabled_area);
397 si->handle = handle;
[all...]
/barrelfish-master/lib/devif/backends/net/mlx4/include/infiniband/
H A Dverbs.h301 uint32_t handle; member in struct:ibv_pd
316 uint32_t handle; member in struct:ibv_mr
387 uint32_t handle; member in struct:ibv_xrc_domain
563 uint32_t handle; member in struct:ibv_srq
583 uint32_t handle; member in struct:ibv_qp
606 uint32_t handle; member in struct:ibv_cq
619 uint32_t handle; member in struct:ibv_ah
1070 * ibv_create_ah - Create an address handle.
1075 * ibv_init_ah_from_wc - Initializes address handle attributes from a
1083 * handle fo
[all...]
/barrelfish-master/usr/eclipseclp/Kernel/src/
H A Dos_support.c290 fstat(int handle, struct_stat *buf) argument
292 return _fstat(handle, buf);
319 lseek(int handle, long offset, int whence) argument
321 return _lseek(handle, offset, whence);
345 isatty(int handle) argument
347 return _isatty(handle);
369 dup(int handle) argument
371 return _dup(handle);
381 close(int handle) argument
383 return _close(handle);
387 read(int handle, void *buf, unsigned int count) argument
393 write(int handle, const void *buf, unsigned int count) argument
[all...]
H A Dbip_load.c154 HINSTANCE handle; member in struct:dload_info
181 dli->handle = dloaded;
194 (void) FreeLibrary(dli->handle);
219 void *handle; member in struct:dload_info
246 dli->handle = dloaded;
259 (void) dlclose(dli->handle);
593 word addr = (word) GetProcAddress(dli->handle, s);
623 addr = (word) dlsym(dli->handle, s);
/barrelfish-master/lib/posixcompat/
H A Dsockets.c31 struct _unix_socket *us = e->handle;
176 struct _unix_socket *us = e->handle;
393 e.handle = us;
437 struct _unix_socket *us = e->handle;
539 struct _unix_socket *us = e->handle;
587 struct _unix_socket *us = e->handle;
618 struct _unix_socket *newus = fdtab_get(newfd)->handle;
679 /* struct _unix_socket *us = e->handle; */
774 struct _unix_socket *us = e->handle;
847 struct _unix_socket *us = e->handle;
[all...]
/barrelfish-master/kernel/
H A Ddispatch.c84 dispatcher_handle_t handle = dcb->disp; local
86 get_dispatcher_shared_generic(handle);
88 dispatcher_get_disabled_save_area(handle);
/barrelfish-master/usr/tests/mt_waitset/
H A Dmain.c101 dispatcher_handle_t handle = disp_disable(); local
108 disp_enable(handle);
114 disp_enable(handle);
/barrelfish-master/tools/arm_molly/
H A Dbuild_molly_image.sh158 echo Error: linker script cannot handle $IDX modules
/barrelfish-master/include/barrelfish/
H A Dump_chan.h87 void ump_channels_retry_send_disabled(dispatcher_handle_t handle);
H A Ddomain.h60 coreid_t disp_handle_get_core_id(dispatcher_handle_t handle);
H A Dthreads.h57 struct thread *thread_mutex_unlock_disabled(dispatcher_handle_t handle,
/barrelfish-master/usr/pci/
H A Dpci.h54 void pci_add_root(struct pci_address addr, uint8_t maxchild, char* handle);
/barrelfish-master/lib/libc/rpc/
H A Drpcb_clnt.c270 * This routine will return a client handle that is connected to the
419 * This routine will return a client handle that is connected to the local
688 * returns the client handle that it uses to contact the remote rpcbind.
700 * handle for COTS cases and hence in these cases we do not return the
701 * client handle. This code will change if t_connect() ever
841 void *handle; local
847 if ((handle = __rpc_setconf("datagram_v")) != NULL) {
848 while ((nconf_clts = __rpc_getconf(handle))
858 __rpc_endconf(handle);
863 /* This is a UDP PORTMAP handle
1181 void *handle; local
[all...]
/barrelfish-master/usr/eclipseclp/Oci/
H A Ddbi.c65 #define CURSOR_HANDLE 1 /* argument index for cursor handle in
66 the cursor handle structure. Must
208 will be used for the printed handle in addition to the address
388 pword handle; local
389 handle.val.all = v_session.all;
390 handle.tag.all = t_session.all;
396 return ec_free_handle(handle, &session_handle_tid);
643 if (session == NULL) return; /* stale handle */
832 pword handle; local
834 handle
[all...]
/barrelfish-master/usr/bfscope/
H A Dbfscope.c429 dispatcher_handle_t handle = curdispatcher(); local
430 struct dispatcher_generic *disp = get_dispatcher_generic(handle);
/barrelfish-master/lib/rcce/
H A Drcce.c205 dispatcher_handle_t handle = curdispatcher(); local
207 get_dispatcher_shared_generic(handle);

Completed in 304 milliseconds

1234567891011>>