Lines Matching +full:library +full:- +full:sel
42 * ps_lrolltoaddr() in this library. The very existence of these functions
55 *modelp = P->status.pr_dmodel; in ps_pdmodel()
62 if (P->ops.pop_pread(P, buf, size, addr, P->data) != size) in ps_pread()
70 if (P->ops.pop_pwrite(P, buf, size, addr, P->data) != size) in ps_pwrite()
89 if (P->state != PS_STOP && P->state != PS_DEAD) in ps_pstop()
97 if (P->state != PS_STOP && P->state != PS_DEAD) in ps_pcontinue()
110 if (P->state != PS_STOP && P->state != PS_DEAD) in ps_lstop()
119 if (P->state != PS_STOP && P->state != PS_DEAD) in ps_lcontinue()
127 if (P->state != PS_STOP && P->state != PS_DEAD) in ps_lgetregs()
139 if (P->state != PS_STOP) in ps_lsetregs()
151 if (P->state != PS_STOP && P->state != PS_DEAD) in ps_lgetfpregs()
163 if (P->state != PS_STOP) in ps_lsetfpregs()
178 if (P->state == PS_DEAD) { in ps_lgetxregsize()
179 core_info_t *core = P->data; in ps_lgetxregsize()
182 for (lwp = list_head(&core->core_lwp_head); lwp != NULL; in ps_lgetxregsize()
183 lwp = list_next(&core->core_lwp_head, lwp)) { in ps_lgetxregsize()
184 if (lwp->lwp_id == lwpid) { in ps_lgetxregsize()
185 if (lwp->lwp_xregs != NULL && in ps_lgetxregsize()
186 lwp->lwp_xregsize > 0) { in ps_lgetxregsize()
187 if (lwp->lwp_xregsize >= INT_MAX) { in ps_lgetxregsize()
191 *xrsize = (int)lwp->lwp_xregsize; in ps_lgetxregsize()
203 procfs_path, (int)P->status.pr_pid, (int)lwpid); in ps_lgetxregsize()
221 if (P->state != PS_STOP && P->state != PS_DEAD) in ps_lgetxregs()
242 if (P->state != PS_STOP) in ps_lsetxregs()
250 * platform-specific way about what this should be. Sorry, this is a bit in ps_lsetxregs()
251 * unfortunate. This really shouldn't be a platform-specific #ifdef. in ps_lsetxregs()
258 xregsize = hdr->pr_size; in ps_lsetxregs()
273 if (P->state != PS_STOP) in ps_lsetxregs()
276 /* LINTED - alignment */ in ps_lsetxregs()
291 if (P->status.pr_dmodel != PR_MODEL_NATIVE) { in ps_lgetLDT()
300 if (P->state != PS_STOP && P->state != PS_DEAD) in ps_lgetLDT()
321 if (gs == ldtarray[i].sel) { in ps_lgetLDT()
353 if (fmt[strlen(fmt) - 1] != '\n') in ps_plog()
365 if (P->auxv == NULL) in ps_pauxv()
368 if (P->auxv == NULL) in ps_pauxv()
371 *aux = (const auxv_t *)P->auxv; in ps_pauxv()
391 Pdprintf("pglobal_lookup <%s> -> %p\n", in ps_pglobal_lookup()
415 symp->st_name = (Elf32_Word)sym.st_name; in ps_pglobal_sym()
416 symp->st_value = (Elf32_Addr)sym.st_value; in ps_pglobal_sym()
417 symp->st_size = (Elf32_Word)sym.st_size; in ps_pglobal_sym()
418 symp->st_info = ELF32_ST_INFO( in ps_pglobal_sym()
420 symp->st_other = sym.st_other; in ps_pglobal_sym()
421 symp->st_shndx = sym.st_shndx; in ps_pglobal_sym()