Searched refs:proc (Results 1 - 25 of 77) sorted by relevance

1234

/haiku-fatelf/src/bin/gdb/gdb/
H A Dgnu-nat.h31 /* Converts a GDB pid to a struct proc. */
32 struct proc *inf_tid_to_thread (struct inf *inf, int tid);
37 /* A proc is either a thread, or the task (there can only be one task proc
39 struct proc struct
70 struct proc *next;
76 #define proc_is_task(proc) ((proc)->tid == PROC_TID_TASK)
77 #define proc_is_thread(proc) ((proc)
[all...]
H A Devent-loop.h90 extern void add_file_handler (int fd, handler_func * proc, gdb_client_data client_data);
93 create_async_signal_handler (sig_handler_func * proc, gdb_client_data client_data);
95 extern int create_timer (int milliseconds, timer_handler_func * proc, gdb_client_data client_data);
H A Dgnu-nat.c78 /* If we've sent a proc_wait_request to the proc server, the pid of the
100 struct proc *inf_tid_to_proc (struct inf *inf, int tid);
102 struct proc *run_thread,
107 void inf_set_step_thread (struct inf *inf, struct proc *proc);
117 void proc_abort (struct proc *proc, int force);
118 struct proc *make_proc (struct inf *inf, mach_port_t port, int tid);
119 struct proc *_proc_free (struct proc *pro
246 __proc_pid(struct proc *proc) argument
255 proc_update_sc(struct proc *proc) argument
321 proc_abort(struct proc *proc, int force) argument
358 proc_get_state(struct proc *proc, int will_modify) argument
394 proc_get_exception_port(struct proc * proc, mach_port_t * port) argument
404 proc_set_exception_port(struct proc * proc, mach_port_t port) argument
415 _proc_get_exc_port(struct proc *proc) argument
437 proc_steal_exc_port(struct proc *proc, mach_port_t exc_port) argument
480 proc_restore_exc_port(struct proc *proc) argument
510 proc_trace(struct proc *proc, int set) argument
544 struct proc *proc = xmalloc (sizeof (struct proc)); local
604 _proc_free(struct proc *proc) argument
1381 process_t proc; local
2552 proc_string(struct proc *proc) argument
2819 steal_exc_port(struct proc *proc, mach_port_t name) argument
[all...]
H A Dalpha-mdebug-tdep.c80 #define PROC_LOW_ADDR(proc) ((proc)->pdr.adr)
81 #define PROC_FRAME_OFFSET(proc) ((proc)->pdr.frameoffset)
82 #define PROC_FRAME_REG(proc) ((proc)->pdr.framereg)
83 #define PROC_REG_MASK(proc) ((proc)->pdr.regmask)
84 #define PROC_FREG_MASK(proc) ((proc)
[all...]
H A Devent-loop.c55 event_handler_func *proc; /* Procedure to call to service this event. */ member in struct:gdb_event
69 handler_func *proc; /* Procedure to call when fd is ready. */ member in struct:file_handler
70 gdb_client_data client_data; /* Argument to pass to proc. */
89 sig_handler_func *proc; /* Function to call to do the work */ member in struct:async_signal_handler
174 timer_handler_func *proc; /* Function to call to do the work */ member in struct:gdb_timer
209 static void create_file_handler (int fd, int mask, handler_func * proc, gdb_client_data client_data);
267 file_event_ptr->proc = handle_file_event;
285 event_handler_func *proc;
306 proc = event_ptr->proc;
284 event_handler_func *proc; local
434 add_file_handler(int fd, handler_func * proc, gdb_client_data client_data) argument
481 create_file_handler(int fd, int mask, handler_func * proc, gdb_client_data client_data) argument
870 create_async_signal_handler(sig_handler_func * proc, gdb_client_data client_data) argument
967 create_timer(int milliseconds, timer_handler_func * proc, gdb_client_data client_data) argument
[all...]
H A Dsolib-osf.c138 ldr_process_t proc; member in struct:read_map_ctxt
363 the value for ctxt->proc. This is incorrect, however, since
369 ctxt->proc = ptid_get_pid (inferior_ptid);
370 if (ldr_xattach (ctxt->proc) != 0)
451 if (ldr_next_module (ctxt->proc, &ctxt->next) != 0)
455 if (ldr_inq_module (ctxt->proc, ctxt->next, &minf, sizeof minf, &size) != 0)
464 if (ldr_inq_region (ctxt->proc, ctxt->next, i, &rinf,
514 ldr_xdetach (ctxt->proc);
H A Di386gnu-nat.c69 fetch_fpregs (struct proc *thread)
118 struct proc *thread;
174 store_fpregs (struct proc *thread, int regno)
208 struct proc *thread;
H A Dbsd-kvm.c39 #include <sys/proc.h>
184 lives in `struct proc' but in `struct thread'. The `struct
230 error_no_arg ("proc address");
239 addr += offsetof (struct proc, p_addr);
303 add_cmd ("proc", class_obscure, bsd_kvm_proc_cmd,
304 "Set current context from proc address", &bsd_kvm_cmdlist);
/haiku-fatelf/src/system/kernel/arch/mips/
H A Darch_thread.cpp8 int arch_proc_init_proc_struct(struct proc *p, bool kernel)
38 if(t_from->proc->arch_info.pgdir != t_to->proc->arch_info.pgdir)
39 sh4_set_user_pgdir((addr)t_to->proc->arch_info.pgdir);
/haiku-fatelf/src/bin/network/tcpdump/
H A Dmachdep.c45 #include <sys/proc.h>
H A Dprint-nfs.c290 u_int32_t proc, vers; local
311 if (xid_map_find(rp, bp2, &proc, &vers) >= 0)
312 interp_reply(rp, proc, vers, length);
426 u_int32_t proc; local
444 xid_map_enter(rp, bp2); /* record proc number for later on */
447 proc = EXTRACT_32BITS(&rp->rm_call.cb_proc);
449 if (!v3 && proc < NFS_NPROCS)
450 proc = nfsv3_procid[proc];
452 switch (proc) {
798 u_int32_t proc; /* call proc number (host order) */ member in struct:xid_map_entry
864 xid_map_find(const struct sunrpc_msg *rp, const u_char *bp, u_int32_t *proc, u_int32_t *vers) argument
1414 interp_reply(const struct sunrpc_msg *rp, u_int32_t proc, u_int32_t vers, int length) argument
[all...]
/haiku-fatelf/src/libs/compat/freebsd_network/compat/sys/
H A Deventhandler.h163 struct proc;
165 typedef void (*exitlist_fn)(void *, struct proc *);
166 typedef void (*forklist_fn)(void *, struct proc *, struct proc *, int);
167 typedef void (*execlist_fn)(void *, struct proc *);
H A Dhaiku-module.h110 status_t __haiku_handle_fbsd_drivers_list(status_t (*proc)(driver_t *[])) {\
115 return (*proc)(drivers); \
143 status_t __haiku_handle_fbsd_drivers_list(status_t (*proc)(driver_t *[])) {\
148 return (*proc)(drivers); \
/haiku-fatelf/src/bin/diffutils/config/
H A Ddepcomp276 proc=$!
279 wait "$proc"
320 proc=$!
323 wait "$proc"
361 proc=$!
364 wait "$proc"
413 proc=$!
416 wait "$proc"
/haiku-fatelf/src/bin/gdb/gdb/config/
H A Dnm-lynx.h40 #include <sys/proc.h>
/haiku-fatelf/src/bin/gdb/gdb/gdbserver/
H A Dlinux-low.h66 #define get_process_thread(proc) ((struct thread_info *) \
68 get_process (proc)->tid))
/haiku-fatelf/headers/private/userlandfs/fuse/
H A Dfuse_opt.h193 * A NULL 'proc' is equivalent to a processing function always
199 * @param proc is the processing function
203 const struct fuse_opt opts[], fuse_opt_proc_t proc);
/haiku-fatelf/src/add-ons/media/plugins/ape_reader/MAClib/
H A DTools.inc51 %imacro proc 1
52 %push proc
63 %ifnctx proc
64 %error expected 'proc' before 'endproc'.
/haiku-fatelf/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A Dfuse_opt.c20 fuse_opt_proc_t proc; member in struct:fuse_opt_context
143 if (key != FUSE_OPT_KEY_KEEP && ctx->proc) {
144 int res = ctx->proc(ctx->data, arg, key, &ctx->outargs);
359 const struct fuse_opt opts[], fuse_opt_proc_t proc)
365 .proc = proc,
358 fuse_opt_parse(struct fuse_args *args, void *data, const struct fuse_opt opts[], fuse_opt_proc_t proc) argument
/haiku-fatelf/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_monitor.c47 #include <sys/proc.h>
H A Dieee80211_alq.c48 #include <sys/proc.h>
/haiku-fatelf/src/add-ons/kernel/file_systems/nfs/
H A Dnfs_add_on.h94 extern uint8 *send_rpc_call(fs_nspace *ns, const struct sockaddr_in *addr, int32 prog, int32 vers, int32 proc, const struct XDROutPacket *packet);
/haiku-fatelf/src/kits/network/libbind/isc/
H A Dtree.c58 # define ENTER(proc) { \
59 debugFuncs[debugDepth] = proc; \
81 # define ENTER(proc) ;
/haiku-fatelf/src/bin/gdb/bfd/
H A Dlynx-core.c40 #include <sys/proc.h>
/haiku-fatelf/headers/private/firewire/
H A Dfirewirereg.h49 typedef struct proc fw_proc;
226 struct proc *probe_thread;

Completed in 283 milliseconds

1234