Searched defs:pldt (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libproc/common/
H A Dproc_get_info.c128 * If pldt == NULL or nldt == 0, we return the number of existing LDT entries.
132 proc_get_ldt(pid_t pid, struct ssd *pldt, int nldt) argument
145 if (pldt == NULL || nldt == 0) {
154 if ((ssize = read(fd, pldt, size)) < 0)
H A DPcore.c301 Pldt_core(struct ps_prochandle *P, struct ssd *pldt, int nldt, void *data) argument
305 if (pldt == NULL || nldt == 0)
311 (void) memcpy(pldt, core->core_ldt,
892 struct ssd *pldt; local
901 if ((pldt = malloc(nbytes)) == NULL)
904 if (read(P->asfd, pldt, nbytes) != nbytes) {
906 free(pldt);
910 core->core_ldt = pldt;
H A DPcontrol.c317 Pldt_live(struct ps_prochandle *P, struct ssd *pldt, int nldt, void *data) argument
319 return (proc_get_ldt(P->pid, pldt, nldt));
1344 * If pldt == NULL or nldt == 0, we return the number of existing LDT entries.
1348 Pldt(struct ps_prochandle *P, struct ssd *pldt, int nldt) argument
1350 return (P->ops.pop_ldt(P, pldt, nldt, P->data));
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dgcore.c1932 Pldt_gcore(struct ps_prochandle *P, struct ssd *pldt, int nldt, void *data) argument
1947 if (pldt == NULL || nldt == 0) {
1967 gcore_usd_to_ssd(udp, pldt++, SEL_LDT(i));

Completed in 79 milliseconds