Lines Matching defs:machp
2957 struct psm_mach *machp;
2972 machp = kmem_alloc((sizeof (struct psm_mach) +
2974 machp->m_next = pmach_head;
2975 machp->m_machname = (char *)(machp + 1);
2976 (void) strcpy(machp->m_machname, tokbuf);
2977 pmach_head = machp;
2993 struct psm_mach *machp;
2995 machp = (struct psm_mach *)handle;
2996 if (machp)
2997 machp = machp->m_next;
2999 machp = pmach_head;
3000 if (machp)
3001 (void) strcpy(buf, machp->m_machname);
3002 return (machp);
3008 struct psm_mach *machp;
3011 machp = pmach_head;
3012 pmach_head = machp->m_next;
3013 kmem_free(machp, sizeof (struct psm_mach) +
3014 strlen(machp->m_machname) + 1);