HomeSort by: relevance | last modified time | path
    Searched refs:proc_handle (Results 1 - 20 of 20) sorted by relevancy

  /src/external/bsd/libproc/dist/
libproc.h 42 struct proc_handle;
134 prmap_t *proc_addr2map(struct proc_handle *, uintptr_t);
135 prmap_t *proc_name2map(struct proc_handle *, const char *);
136 char *proc_objname(struct proc_handle *, uintptr_t, char *, size_t);
137 prmap_t *proc_obj2map(struct proc_handle *, const char *);
138 int proc_iter_objs(struct proc_handle *, proc_map_f *, void *);
139 int proc_iter_symbyaddr(struct proc_handle *, const char *, int,
141 int proc_addr2sym(struct proc_handle *, uintptr_t, char *, size_t, GElf_Sym *);
142 int proc_attach(pid_t pid, int flags, struct proc_handle **pphdl);
143 int proc_continue(struct proc_handle *);
    [all...]
proc_create.c 45 static int proc_init(pid_t, int, int, struct proc_handle *);
48 proc_init(pid_t pid, int flags, int status, struct proc_handle *phdl)
94 proc_attach(pid_t pid, int flags, struct proc_handle **pphdl)
96 struct proc_handle *phdl;
107 if ((phdl = malloc(sizeof(struct proc_handle))) == NULL)
145 void *child_arg, struct proc_handle **pphdl)
147 struct proc_handle *phdl;
156 if ((phdl = malloc(sizeof(struct proc_handle))) == NULL)
207 proc_free(struct proc_handle *phdl)
proc_rtld.c 47 struct proc_handle *phdl = arg;
64 proc_rdagent(struct proc_handle *phdl)
81 proc_updatesyms(struct proc_handle *phdl)
proc_util.c 45 proc_clearflags(struct proc_handle *phdl, int mask)
60 proc_continue(struct proc_handle *phdl)
78 proc_detach(struct proc_handle *phdl, int reason)
116 proc_getflags(struct proc_handle *phdl)
126 proc_setflags(struct proc_handle *phdl, int mask)
138 proc_state(struct proc_handle *phdl)
148 proc_getmodel(struct proc_handle *phdl)
158 proc_getpid(struct proc_handle *phdl)
168 proc_wstatus(struct proc_handle *phdl)
189 proc_getwstat(struct proc_handle *phdl
    [all...]
_libproc.h 38 struct proc_handle { struct
proc_regs.c 48 proc_regget(struct proc_handle *phdl, proc_reg_t reg, unsigned long *regvalue)
84 proc_regset(struct proc_handle *phdl, proc_reg_t reg, unsigned long regvalue)
proc_bkpt.c 55 proc_stop(struct proc_handle *phdl)
74 proc_bkptset(struct proc_handle *phdl, uintptr_t address,
136 proc_bkptdel(struct proc_handle *phdl, uintptr_t address,
201 proc_bkptexec(struct proc_handle *phdl, proc_breakpoint_t *saved)
proc_sym.c 138 proc_objname(struct proc_handle *p, uintptr_t addr, char *objname,
159 proc_obj2map(struct proc_handle *p, const char *objname)
188 proc_iter_objs(struct proc_handle *p, proc_map_f *func, void *cd)
222 proc_addr2map(struct proc_handle *p, uintptr_t addr)
321 proc_addr2sym(struct proc_handle *p, uintptr_t addr, char *name,
396 proc_name2map(struct proc_handle *p, const char *name)
469 proc_name2sym(struct proc_handle *p, const char *object, const char *symbol,
545 proc_name2ctf(struct proc_handle *p, const char *name)
566 proc_iter_symbyaddr(struct proc_handle *p, const char *object, int which,
  /src/external/cddl/osnet/include/
dtrace.h 35 #define ps_prochandle proc_handle
libproc.h 37 #define ps_prochandle proc_handle
  /src/external/bsd/librtld_db/dist/
rtld_db.h 53 struct proc_handle *rda_php;
133 struct proc_handle;
143 rd_agent_t *rd_new(struct proc_handle *);
rtld_db.c 198 rd_new(struct proc_handle *php)
  /src/external/bsd/libproc/dist/tests/
proc_test.c 73 static struct proc_handle *
77 struct proc_handle *phdl;
102 set_bkpt(struct proc_handle *phdl, uintptr_t addr, proc_breakpoint_t *saved)
112 remove_bkpt(struct proc_handle *phdl, uintptr_t addr, proc_breakpoint_t *val)
128 verify_bkpt(struct proc_handle *phdl, GElf_Sym *sym, const char *symname,
189 struct proc_handle *phdl;
221 struct proc_handle *phdl;
255 struct proc_handle *phdl;
294 struct proc_handle *phdl;
333 struct proc_handle *phdl
    [all...]
  /src/external/gpl3/gdb/dist/gdbserver/
thread-db.cc 41 struct ps_prochandle proc_handle; member in struct:thread_db
490 err = tdb->td_ta_new_p (&tdb->proc_handle, &tdb->thread_agent);
552 err = tdb->td_ta_new_p (&tdb->proc_handle, &tdb->thread_agent);
  /src/external/gpl3/gdb.old/dist/gdbserver/
thread-db.cc 41 struct ps_prochandle proc_handle; member in struct:thread_db
492 err = tdb->td_ta_new_p (&tdb->proc_handle, &tdb->thread_agent);
554 err = tdb->td_ta_new_p (&tdb->proc_handle, &tdb->thread_agent);
  /src/external/gpl3/gdb/dist/gdb/
linux-thread-db.c 182 struct ps_prochandle proc_handle; member in struct:thread_db_info
413 info->proc_handle.thread = stopped;
858 info->proc_handle.thread = inferior_thread ();
861 err = info->td_ta_new_p (&info->proc_handle, &info->thread_agent);
1586 info->proc_handle.thread = stopped;
  /src/external/gpl3/gdb.old/dist/gdb/
linux-thread-db.c 181 struct ps_prochandle proc_handle; member in struct:thread_db_info
412 info->proc_handle.thread = stopped;
858 info->proc_handle.thread = inferior_thread ();
861 err = info->td_ta_new_p (&info->proc_handle, &info->thread_agent);
1586 info->proc_handle.thread = stopped;
  /src/crypto/external/bsd/openssl/dist/util/perl/TLSProxy/
Proxy.pm 279 $self->{proc_handle} = $h; # hold handle till next round [or exit]
  /src/crypto/external/bsd/openssl.old/dist/util/perl/TLSProxy/
Proxy.pm 278 $self->{proc_handle} = $h; # hold handle till next round [or exit]
  /src/crypto/external/apache2/openssl/dist/util/perl/TLSProxy/
Proxy.pm 385 $self->{proc_handle} = $h; # hold handle till next round [or exit]

Completed in 42 milliseconds