Searched refs:mlist (Results 26 - 50 of 52) sorted by relevance

123

/illumos-gate/usr/src/uts/sun4u/opl/io/
H A Dmc-opl.c642 if (mcp->mlist == NULL)
645 if (mcp->mlist && address_in_memlist(mcp->mlist, addr, 0)) {
2438 mc_memlist_delete(struct memlist *mlist) argument
2442 for (ml = mlist; ml; ml = mlist) {
2443 mlist = ml->ml_next;
2449 mc_memlist_dup(struct memlist *mlist) argument
2453 if (mlist == NULL)
2458 for (; mlist; mlis
2473 mc_memlist_del_span(struct memlist *mlist, uint64_t base, uint64_t len) argument
2543 struct memlist *mlist; local
[all...]
H A Ddrmach.c2393 struct memlist *mlist; local
2399 mlist = memlist_dup(mem->memlist);
2407 rv = memlist_intersect(phys_install, mlist);
2411 memlist_dump(mlist);
2416 memlist_delete(mlist);
2421 memlist_dump(mlist);
2423 *ml = mlist;
2960 struct memlist *mlist, uint64_t base, uint64_t len)
2967 if (mlist == NULL) {
2968 mlist
2959 drmach_memlist_add_span(drmach_copy_rename_program_t *p, struct memlist *mlist, uint64_t base, uint64_t len) argument
[all...]
/illumos-gate/usr/src/cmd/luxadm/
H A Dg_adm.c4102 struct dlist *mlist; local
4177 mlist = l_disk_state.g_disk_state.multipath_list;
4178 if (mlist == NULL) {
4221 while ((mlist != NULL) && (!(path_a_found && path_b_found))) {
4222 (void) strcpy(phys_path, mlist->dev_path);
4233 if ((err = g_get_wwn(mlist->dev_path, port_wwn, node_wwn,
4235 (void) print_errString(err, mlist->dev_path);
4271 if ((strstr(mlist->dev_path, SCSI_VHCI) != NULL) &&
4275 (void) strcpy(temppath, mlist->dev_path);
4319 mlist
4364 struct dlist *mlist; local
5860 struct dlist *mlist; local
6093 struct dlist *mlist; local
[all...]
/illumos-gate/usr/src/cmd/troff/
H A Dext.h114 extern int mlist[NTRAP];
H A Dn7.c543 trap = control(mlist[j], 0);
550 trap = control(mlist[j], 0);
564 if (mlist[i]) {
606 if (mlist[i]) {
/illumos-gate/usr/src/uts/sun4u/sys/
H A Dsbd.h94 int sbdp_del_memlist(sbdp_handle_t *hp, struct memlist *mlist);
H A Dsbdpriv.h722 extern void memlist_delete(struct memlist *mlist);
723 extern struct memlist *memlist_dup(struct memlist *mlist);
724 extern void memlist_dump(struct memlist *mlist);
/illumos-gate/usr/src/common/smbsrv/
H A Dsmb_msgbuf.c147 mb->mlist.next = 0;
154 * Destruct a smb_msgbuf_t. Free any memory hanging off the mlist.
159 smb_msgbuf_mlist_t *item = mb->mlist.next;
689 item->next = mb->mlist.next;
691 mb->mlist.next = item;
/illumos-gate/usr/src/tools/ctf/cvt/
H A Dctftools.h160 typedef struct mlist { struct
165 struct mlist *ml_next; /* Next member */
/illumos-gate/usr/src/uts/i86pc/os/
H A Dmemnode.c259 mem_node_memlist_pages(int mnode, struct memlist *mlist) argument
272 for (pmem = mlist; pmem; pmem = pmem->ml_next) {
H A Dlgrpplat.c2134 struct memlist *mlist; local
2144 for (mlist = phys_avail; mlist; mlist = mlist->ml_next)
2145 npgs += btop(mlist->ml_size);
2150 for (mlist = phys_install; mlist; mlist = mlist
[all...]
/illumos-gate/usr/src/cmd/devfsadm/
H A Ddevfsadm_impl.h265 struct mlist { struct
392 struct mlist *dep);
402 static void cache_deferred_minor(struct mlist *dep, di_node_t node,
H A Ddevfsadm.c985 struct mlist mlist = {0}; local
1023 dcip->dci_arg = &mlist;
1056 struct mlist *dep;
1817 struct mlist *dep;
1849 struct mlist *cdep, clone_del = {0};
1884 minor_process(di_node_t node, di_minor_t minor, struct mlist *dep)
1974 struct mlist *dep,
/illumos-gate/usr/src/tools/stabs/
H A Dstabs.c51 static char *offsize(char *cp, struct mlist *mlp);
560 struct mlist **next_pp, *prev_p = NULL;
586 struct mlist *mlp = malloc(sizeof (*mlp));
625 offsize(char *cp, struct mlist *mlp)
H A Dmain.c239 struct mlist *mlp;
/illumos-gate/usr/src/cmd/cmd-crypto/cryptoadm/
H A Dadm_kef.c527 mechlist_t *mlist)
586 if ((rc = enable_mechs(&pent, allflag, mlist)) != SUCCESS) {
697 install_kef(char *provname, mechlist_t *mlist) argument
715 if ((provname == NULL) || (mlist == NULL)) {
727 /* Create an entry with provname and mlist. */
732 pent->sup_count = get_mech_count(mlist);
733 pent->suplist = mlist;
526 enable_kef(char *provname, boolean_t rndflag, boolean_t allflag, mechlist_t *mlist) argument
H A Dadm_uef.c145 * "mlist" argument. The list of converted mechanism IDs is returned
153 mechlist_t *mlist)
156 mechlist_t *p = mlist;
168 p = mlist;
184 list_mechlist_for_lib(char *libname, mechlist_t *mlist, argument
402 if (mlist == NULL) {
439 rc = convert_mechlist(&pmech_list, &mech_count, mlist);
152 convert_mechlist(CK_MECHANISM_TYPE **pmech_list, CK_ULONG *mech_count, mechlist_t *mlist) argument
H A Dadm_kef_util.c575 * argument "mlist". The result will be stored in ppent also.
578 enable_mechs(entry_t **ppent, boolean_t allflag, mechlist_t *mlist) argument
604 ptr = mlist;
/illumos-gate/usr/src/uts/common/io/
H A Dbridge.c257 link_sdu_fail(bridge_link_t *blp, boolean_t failed, mblk_t **mlist) argument
329 mp->b_next = *mlist;
330 *mlist = mp;
451 mblk_t *mlist; local
467 mlist = NULL;
473 link_sdu_fail(blp, B_FALSE, &mlist);
475 link_sdu_fail(blp, B_TRUE, &mlist);
480 send_up_messages(bip, mlist);
2186 mblk_t *mlist = NULL; local
2197 link_sdu_fail(blp, B_TRUE, &mlist);
2785 mblk_t *mlist; local
2965 mblk_t *mlist; local
[all...]
/illumos-gate/usr/src/uts/sun4u/starfire/io/
H A Ddrmach.c3183 struct memlist *mlist; local
3202 mlist = NULL;
3212 mlist = memlist_add_span(mlist, addr, size);
3222 rv = memlist_intersect(phys_install, mlist);
3228 memlist_dump(mlist);
3234 memlist_delete(mlist);
3240 memlist_dump(mlist);
3243 *ml = mlist;
/illumos-gate/usr/src/cmd/fs.d/ufs/df/
H A Ddf.c747 * Find the entry in mlist that corresponds to the file named by path
755 * unexamined mlist entries, gather the information and cache it with the
768 findmntent(char *path, struct stat64 *pstat, struct mntlist *mlist) argument
811 for (mlp = mlist; mlp; mlp = mlp->mntl_next) {
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dparseaddr.c1025 register struct match *mlp; /* cur ptr into mlist */
1030 struct match mlist[MAXMATCH]; /* stores match on LHS */ local
1036 ** mlp will not exceed mlist[] because readcf enforces
1103 mlp = mlist;
1248 while (--mlp >= mlist)
1287 if (mlp < mlist)
1298 if (mlp < mlist || *rvp != NULL)
1342 m = &mlist[rp[1] - '1'];
1343 if (m < mlist || m >= mlp)
/illumos-gate/usr/src/uts/i86pc/io/acpi/drmach_acpi/
H A Ddrmach_acpi.c2730 struct memlist *mlist; local
2736 mlist = memlist_dup(mem->memlist);
2737 *ml = mlist;
2745 rv = memlist_intersect(phys_install, mlist);
2749 memlist_dump(mlist);
2754 memlist_delete(mlist);
2759 memlist_dump(mlist);
/illumos-gate/usr/src/uts/sun4u/opl/sys/
H A Dmc-opl.h138 struct memlist *mlist; member in struct:mc_opl_state
/illumos-gate/usr/src/uts/sun4u/starcat/io/
H A Ddrmach.c6622 struct memlist *mlist; local
6638 mlist = NULL;
6643 mlist = memlist_add_span(mlist, chunk->mc_base_pa,
6654 memlist_dump(mlist);
6657 *ml = mlist;

Completed in 2530 milliseconds

123