HomeSort by: relevance | last modified time | path
    Searched defs:phdl (Results 1 - 3 of 3) sorted by relevancy

  /src/external/bsd/libproc/dist/
proc_rtld.c 47 struct proc_handle *phdl = arg; local
49 if (phdl->nobjs >= phdl->rdobjsz) {
50 phdl->rdobjsz *= 2;
51 if (reallocarr(&phdl->rdobjs, sizeof(*phdl->rdobjs),
52 phdl->rdobjsz))
55 if (strcmp(lop->rdl_path, phdl->execname) == 0 &&
57 phdl->rdexec = &phdl->rdobjs[phdl->nobjs]
    [all...]
proc_create.c 48 proc_init(pid_t pid, int flags, int status, struct proc_handle *phdl)
54 memset(phdl, 0, sizeof(*phdl));
55 phdl->pid = pid;
56 phdl->flags = flags;
57 phdl->status = status;
63 len = sizeof(phdl->execname);
64 if (sysctl(mib, 4, phdl->execname, &len, NULL, 0) != 0) {
70 phdl->execname[0] = '\0';
85 phdl->model = (kp.p_flag & P_32) ? PR_MODEL_ILP32 : PR_MODEL_LP64
96 struct proc_handle *phdl; local
147 struct proc_handle *phdl; local
    [all...]
  /src/external/bsd/libproc/dist/tests/
proc_test.c 77 struct proc_handle *phdl; local
91 error = proc_create(argv[0], argv, NULL, NULL, &phdl);
93 ATF_REQUIRE(phdl != NULL);
98 return (phdl);
102 set_bkpt(struct proc_handle *phdl, uintptr_t addr, proc_breakpoint_t *saved)
106 error = proc_bkptset(phdl, addr, saved);
112 remove_bkpt(struct proc_handle *phdl, uintptr_t addr, proc_breakpoint_t *val)
116 error = proc_bkptdel(phdl, addr, val);
120 error = proc_regset(phdl, REG_PC, addr);
128 verify_bkpt(struct proc_handle *phdl, GElf_Sym *sym, const char *symname
189 struct proc_handle *phdl; local
221 struct proc_handle *phdl; local
255 struct proc_handle *phdl; local
294 struct proc_handle *phdl; local
333 struct proc_handle *phdl; local
369 struct proc_handle *phdl; local
    [all...]

Completed in 36 milliseconds