Searched defs:mpp (Results 1 - 25 of 83) sorted by relevance

1234

/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A D_inline_gen.h35 mmapobj_result_t *mpp = MMAPS(lmp); local
44 for (mpp += (mnum - 1); mnum; mnum--, mpp--) {
45 if ((roffset >= (mpp->mr_addr + mpp->mr_offset)) &&
46 (roffset < (mpp->mr_addr + mpp->mr_msize)))
47 return (mpp);
H A D_inline_reloc.h41 mmapobj_result_t *mpp; local
52 if ((mpp = find_segment((caddr_t)roffset, lmp)) == NULL)
59 if (((mpp->mr_prot & PROT_WRITE) == 0) && textrel &&
60 ((set_prot(lmp, mpp, 1) == 0) ||
61 (aplist_append(textrel, mpp, AL_CNT_TEXTREL) == NULL)))
H A Dmove.c98 mmapobj_result_t *mpp; local
117 if ((mpp = find_segment((caddr_t)taddr, lmp)) == NULL) {
121 if (((mpp->mr_prot & PROT_WRITE) == 0) &&
122 ((set_prot(lmp, mpp, 1) == 0) ||
123 (aplist_append(textrel, mpp, AL_CNT_TEXTREL) == NULL)))
H A Dobject.c159 mmapobj_result_t *hmpp, mmapobj_result_t *mpp, uint_t mnum)
177 md.md_mpp = mpp;
239 mmapobj_result_t *mpp, *hmpp; local
313 if ((mpp = hmpp = calloc(ehdr->e_phnum,
320 mpp[mnum].mr_addr = (caddr_t)((uintptr_t)phdr[phnum].p_vaddr +
322 mpp[mnum].mr_msize = phdr[phnum].p_memsz;
323 mpp[mnum].mr_fsize = phdr[phnum].p_filesz;
324 mpp[mnum].mr_prot = (PROT_READ | PROT_WRITE | PROT_EXEC);
339 PADIMLEN(nlmp) = mpp->mr_addr + mpp
158 elf_obj_file(Lm_list *lml, Aliste lmco, Rt_map *clmp, const char *name, mmapobj_result_t *hmpp, mmapobj_result_t *mpp, uint_t mnum) argument
[all...]
H A Dremove.c112 mmapobj_result_t *mpp = MMAPS(lmp); local
115 for (ndx = 0; ndx < MMAPCNT(lmp); ndx++, mpp++) {
116 _addr->lb = (void *)(uintptr_t)(mpp->mr_addr +
117 mpp->mr_offset);
118 _addr->ub = (void *)(uintptr_t)(mpp->mr_addr +
119 mpp->mr_msize);
H A Dsetup.c207 mmapobj_result_t *mpp; local
419 if ((mpp = calloc(2, sizeof (mmapobj_result_t))) == NULL)
421 mpp[0].mr_addr = (caddr_t)M_PTRUNC(ld_base);
422 mpp[0].mr_msize = (caddr_t)&_etext - mpp[0].mr_addr;
423 mpp[0].mr_fsize = mpp[0].mr_msize;
424 mpp[0].mr_prot = (PROT_READ | PROT_EXEC);
426 mpp[1].mr_addr = (caddr_t)M_PTRUNC((uintptr_t)&r_debug);
427 mpp[
502 mmapobj_result_t *mpp = MMAPS(mlmp); local
537 mmapobj_result_t *mpp; local
594 mmapobj_result_t *mpp, *fmpp, *hmpp = NULL; local
[all...]
/illumos-gate/usr/src/cmd/sgs/rtld/amd64/
H A Ddlamd64getunwind.c75 mmapobj_result_t *mpp; local
80 if ((mpp = find_segment(pc, lmp)) == NULL)
84 unwindinfo->dlui_segstart = mpp->mr_addr;
85 unwindinfo->dlui_segend = mpp->mr_addr + mpp->mr_msize;
87 if (PTUNWIND(lmp) && (mpp->mr_addr)) {
101 } else if (mpp->mr_addr)
/illumos-gate/usr/src/uts/common/ipp/dlcosmk/
H A Ddlcosmk.c53 dlcosmk_process(mblk_t **mpp, dlcosmk_data_t *dlcosmk_data, uint32_t ill_index, argument
59 ASSERT((mpp != NULL) && (*mpp != NULL));
60 mp = *mpp;
/illumos-gate/usr/src/uts/common/ipp/dscpmk/
H A Ddscpmk.c48 dscpmk_process(mblk_t **mpp, dscpmk_data_t *dscpmk_data, ip_proc_t proc) argument
56 ASSERT((mpp != NULL) && (*mpp != NULL));
57 mp = *mpp;
/illumos-gate/usr/src/uts/common/ipp/meters/
H A Dtokenmt.c71 tokenmt_process(mblk_t **mpp, tokenmt_data_t *tokenmt_data, argument
78 mblk_t *mp = *mpp;
H A Dtswtcl.c60 tswtcl_process(mblk_t **mpp, tswtcl_data_t *tswtcl_data, argument
67 mblk_t *mp = *mpp;
/illumos-gate/usr/src/uts/common/fs/objfs/
H A Dobjfs_root.c111 struct modctl **mpp = data; local
112 struct modctl *mp = *mpp;
/illumos-gate/usr/src/uts/common/io/softmac/
H A Dsoftmac_pkt.c101 t_uscalar_t ack, mblk_t **mpp)
153 if (mpp != NULL)
154 *mpp = mp;
163 softmac_ioctl_tx(softmac_lower_t *slp, mblk_t *mp, mblk_t **mpp) argument
185 ASSERT(mpp != NULL && mp != NULL);
186 *mpp = mp;
192 softmac_mexchange_error_ack(mblk_t **mpp, t_uscalar_t error_primitive, argument
197 if ((*mpp = mexchange(NULL, *mpp, sizeof (dl_error_ack_t), M_PCPROTO,
201 dlp = (union DL_primitives *)(*mpp)
100 softmac_output(softmac_lower_t *slp, mblk_t *mp, t_uscalar_t dl_prim, t_uscalar_t ack, mblk_t **mpp) argument
210 softmac_proto_tx(softmac_lower_t *slp, mblk_t *mp, mblk_t **mpp) argument
[all...]
H A Dsoftmac_capab.c108 dl_capab(ldi_handle_t lh, mblk_t **mpp) argument
136 *mpp = mp;
151 *mpp = mp;
/illumos-gate/usr/src/cmd/sgs/rtld/sparc/
H A Dsparc_a.out.c244 mmapobj_result_t *mpp; local
252 if (((mpp = find_segment((caddr_t)ra, lmp)) != NULL) &&
253 ((mpp->mr_prot & PROT_WRITE) == 0)) {
254 if ((set_prot(lmp, mpp, 1) == 0) ||
255 (aplist_append(textrel, mpp,
/illumos-gate/usr/src/lib/pam_modules/dhkeys/
H A Ddhkeys.c211 mechanism_t **mpp; local
265 for (mpp = mechs; *mpp; mpp++) {
266 mechanism_t *mp = *mpp;
/illumos-gate/usr/src/lib/libfstyp/common/
H A Dlibfstyp.c96 char *mdir, char *fsname, fstyp_module_t **mpp);
360 fstyp_module_t **mpp)
368 if (mpp != NULL) {
369 *mpp = mp;
402 if (mpp != NULL) {
403 *mpp = mp;
359 fstyp_init_module(struct fstyp_handle *h, char *mdir, char *fsname, fstyp_module_t **mpp) argument
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_module.c100 mdb_module_t **mpp)
313 if (mpp != NULL)
314 *mpp = mod;
99 mdb_module_create(const char *name, const char *fname, int mode, mdb_module_t **mpp) argument
/illumos-gate/usr/src/cmd/ndmpd/ndmp/
H A Dndmpd_mark.c257 mark_param_t *mpp; local
262 mpp = (mark_param_t *)arg;
263 tacl = mpp->mp_tacl;
264 nlp = ndmp_get_nlp(mpp->mp_session);
265 if (!mpp) {
268 } else if (mpp->mp_session->ns_eof) {
271 } else if (mpp->mp_session->ns_data.dd_abort ||
280 ddate = mpp->mp_ddate;
281 bmd = mpp->mp_bmd;
741 mark_param_t *mpp; local
[all...]
/illumos-gate/usr/src/uts/common/fs/smbclnt/netsmb/
H A Dsmb_iod.c314 smb_iod_recv1(struct smb_vc *vcp, mblk_t **mpp) argument
343 *mpp = m;
H A Dsmb_trantcp.c87 * Get mblks into *mpp until the data length is at least mlen.
88 * Note that *mpp may already contain a fragment.
94 nb_getmsg_mlen(struct nbpcb *nbp, mblk_t **mpp, size_t mlen) argument
110 dlen = msgdsize(*mpp); /* *mpp==null is OK */
212 if (*mpp == NULL) {
213 *mpp = tm;
216 for (im = *mpp; im->b_cont; im = im->b_cont)
350 nbssn_recv(struct nbpcb *nbp, mblk_t **mpp, int *lenp, argument
363 if (mpp) {
791 smb_nbst_recv(struct smb_vc *vcp, mblk_t **mpp) argument
[all...]
/illumos-gate/usr/src/uts/common/syscall/
H A Dlwpsys.c63 idtot_and_lock(proc_t *p, id_t lwpid, kmutex_t **mpp) argument
68 if ((ldp = lwp_hash_lookup_and_lock(p, lwpid, mpp)) != NULL) {
70 mutex_exit(*mpp);
/illumos-gate/usr/src/uts/common/io/
H A Dpfmod.c238 mblk_t *mbp, *mpp; local
250 * start in mpp.
252 for (mpp = mp; mp && (DB_TYPE(mp) == M_PROTO); mp = mp->b_cont)
260 putnext(rq, mpp);
286 freemsg(mpp);
297 freemsg(mpp);
322 putnext(rq, mpp);
324 freemsg(mpp);
H A Dsundlpi.c191 dl_op(ldi_handle_t lh, mblk_t **mpp, t_uscalar_t expprim, size_t minlen, argument
196 mblk_t *mp = *mpp;
237 *mpp = mp;
/illumos-gate/usr/src/lib/libsmbfs/smb/
H A Dmbuf.c68 m_get(int len, struct mbuf **mpp) argument
83 *mpp = m;
119 m_lineup(struct mbuf *m0, struct mbuf **mpp) argument
127 *mpp = m0;
143 *mpp = nm;
183 m_getm(struct mbuf *top, int len, struct mbuf **mpp) argument
203 *mpp = top;

Completed in 83 milliseconds

1234